Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorContinuous Integration <ci@zabbix.com>2020-04-14 12:53:57 +0300
committerContinuous Integration <ci@zabbix.com>2020-04-14 12:53:57 +0300
commitd3cf98e98b52f024d53bb965f54902bf679f5f77 (patch)
tree45d18b500cfb5354cba02399591b1adeae725525
parent4a864dfae4013f32290fcc4bbd1d2578066314b3 (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.0.0beta1
-rw-r--r--create/src/data.tmpl439
-rw-r--r--create/src/templates.tmpl17018
2 files changed, 8802 insertions, 8655 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index 606d29d49a0..df458fa9beb 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -18,9 +18,9 @@
--
TABLE |users
-FIELDS|userid|alias|name |surname |passwd |url|autologin|autologout|lang |refresh|type|theme |rows_per_page|
-ROW |1 |Admin|Zabbix|Administrator|$2y$10$92nDno4n0Zm7Ej7Jfsz8WukBfgSS/U0QkIuu8WkJPihXBb2A1UrEK| |1 |0 |en_GB|30s |3 |default|50 |
-ROW |2 |guest| | |$2y$10$89otZrRNmde97rIyzclecuk6LwKAsHN0BcvoOKGjbT.BwMBfm7G06| |0 |15m |en_GB|30s |1 |default|50 |
+FIELDS|userid|alias|name |surname |passwd |url |autologin|autologout|lang |refresh|type|theme |rows_per_page|
+ROW |1 |Admin|Zabbix|Administrator|$2y$10$92nDno4n0Zm7Ej7Jfsz8WukBfgSS/U0QkIuu8WkJPihXBb2A1UrEK| |1 |0 |en_GB|30s |3 |default|50 |
+ROW |2 |guest| | |$2y$10$89otZrRNmde97rIyzclecuk6LwKAsHN0BcvoOKGjbT.BwMBfm7G06| |0 |15m |en_GB|30s |1 |default|50 |
TABLE |hstgrp
FIELDS|groupid|name |internal|flags|
@@ -47,145 +47,261 @@ FIELDS|dcheckid|druleid|type|key_ |snmp_community|ports|snmpv3_securityna
ROW |2 |2 |9 |system.uname| |10050| |0 | | |0 |0 |0 | |1 |0 |
TABLE |media_type
-FIELDS|mediatypeid|type|name |smtp_server |smtp_helo |smtp_email |exec_path|gsm_modem |username|passwd|status|smtp_port|smtp_security|smtp_verify_peer|smtp_verify_host|smtp_authentication|exec_params|maxsessions|maxattempts|attempt_interval|content_type|script |timeout|process_tags|show_event_menu|event_menu_url |event_menu_name |description |
-ROW |1 |0 |Email |mail.example.com|example.com|zabbix@example.com| | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |0 | |30s |0 |0 | | | |
-ROW |3 |2 |SMS | | | | |/dev/ttyS0| | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 | |30s |0 |0 | | | |
-ROW |4 |0 |Email (HTML)|mail.example.com|example.com|zabbix@example.com| | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 | |30s |0 |0 | | | |
-ROW |5 |4 |Mattermost | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |1 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol; ];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SEND_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;var EVENT_STATUS = {&eol; PROBLEM: 'PROBLEM',&eol; UPDATE: 'UPDATE',&eol; RESOLVE: 'OK'&eol;}&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol; return this.replace(/{(\d+)}/g, function(match, number) { &eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(mattermostURL, teamName, postID) {&eol; return '{0}/{1}/pl/{2}'.format(&eol; mattermostURL.replace(/\/+$/, ''),&eol; teamName,&eol; postID&eol; );&eol;}&eol;&eol;function getChannel(sendTo) {&eol; switch (true) {&eol; case /.+\/#.+/.test(sendTo):&eol; return getChannelByName(sendTo);&eol;&eol; case /@.+/.test(sendTo):&eol; return getDirectChannel(sendTo);&eol;&eol; default:&eol; return getChannelByID(sendTo);&eol; }&eol;}&eol;&eol;function getChannelByName(sendTo) {&eol; var teamChan = sendTo.trim().split('/#');&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.channelByName.format(teamChan[0], teamChan[1]),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getDirectChannel(sendTo) {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var teamUser = sendTo.trim().split('/@');&eol; var bot = getBotUser();&eol; var user = getUserByName(teamUser[1])&eol;&eol; var resp = JSON.parse(req.Post(&eol; Mattermost.directChannel,&eol; JSON.stringify([bot.id, user.id])&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; resp.teamName = teamUser[0];&eol; return resp;&eol;}&eol;&eol;function getChannelByID(channelID) {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.getChannel.format(channelID),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getBotUser() {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.botUser,&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getUserByName(userName) {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.userByName.format(userName),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getTeamByID(teamID) {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.getTeam.format(teamID),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function createProblemURL(zabbixURL, triggerId, eventId) {&eol; var problemURL = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbixURL,&eol; triggerId,&eol; eventId&eol; );&eol;&eol; return problemURL&eol;}&eol;&eol;function getTagValue(eventTags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tagValue = eventTags&eol; .split(',')&eol; .filter(function (v) {return v.match(pattern)})&eol; .map(function (v) {return v.split(':')[1]})[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tagValue;&eol;}&eol;&eol;function handlerAlarm(req, params) {&eol; var channel = getChannel(params.send_to);&eol; var fields = {&eol; channel_id: channel.id,&eol; props: {}&eol; }&eol;&eol; if (isEventProblem(params)) {&eol; var teamName = channel.teamName&eol; ? channel.teamName&eol; : getTeamByID(channel.team_id).name&eol;&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(&eol; Mattermost.postMessage,&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; result.tags.__mattermost_post_id = resp.id;&eol; result.tags.__mattermost_channel_id = channel.id;&eol; result.tags.__mattermost_channel_name = channel.name;&eol; result.tags.__mattermost_message_link = getPermalink(&eol; params.mattermost_url,&eol; teamName,&eol; resp.id&eol; );&eol;&eol; } else if (isEventUpdate(params)) {&eol; fields.root_id = getTagValue(params.event_tags, 'mattermost_post_id');&eol; fields.message = params.event_update_message &pipe;&pipe; '';&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id),&eol; true&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(&eol; Mattermost.postMessage, JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; } else if (isEventResolve(params)) {&eol; fields.channel_id = getTagValue(params.event_tags, 'mattermost_channel_id');&eol; fields.id = getTagValue(params.event_tags, 'mattermost_post_id');&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var post_id = getTagValue(params.event_tags, 'mattermost_post_id');&eol;&eol; var resp = JSON.parse(req.Put(&eol; Mattermost.chatUpdate.format(post_id),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(req, params) {&eol; var channel = getChannel(params.send_to);&eol; var fields = {&eol; channel_id: channel.id,&eol; props: {}&eol; }&eol;&eol; if (isEventProblem(params)) {&eol; var teamName = channel.teamName&eol; ? channel.teamName&eol; : getTeamByID(channel.team_id).name&eol;&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Mattermost.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; result.tags.__mattermost_channel_name = channel.name;&eol; result.tags.__mattermost_message_link = getPermalink(&eol; params.mattermost_url,&eol; teamName,&eol; resp.id&eol; );&eol; &eol; } else if (isEventUpdate(params)) {&eol; fields.message = params.event_update_message &pipe;&pipe; '';&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id),&eol; false&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Mattermost.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; } else if (isEventResolve(params)) {&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Mattermost.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol; }&eol;} &eol;&eol;function createMessage(&eol; status,&eol; eventSeverityColor,&eol; eventDate,&eol; eventTime,&eol; problemURL,&eol; isShort&eol; ) {&eol; var message = {&eol; fallbac: '{0} #{1}: {2}'.format(status, params.event_id, params.event_name),&eol; title: '{0} #{1}: {2}'.format(status, params.event_id, params.event_name),&eol; color: eventSeverityColor,&eol; title_link: problemURL,&eol; footer: problemURL,&eol; &eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_ip),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(eventDate, eventTime),&eol; short: true&eol; },&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (!isShort) {&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: '`{0}`'.format(params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None'),&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; )&eol; }&eol;&eol; return message;&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; result = {tags: {}};&eol;&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token)&eol;&eol; params.mattermost_url = params.mattermost_url.replace(/\/+$/, '');&eol; params.zabbix_url = params.zabbix_url.replace(/\/+$/, '');&eol; &eol; var APIEndpoint = params.mattermost_url + '/api/v4/';&eol;&eol; var Mattermost = {&eol; postMessage: APIEndpoint + 'posts',&eol; getChannel: APIEndpoint + 'channels/{0}',&eol; getTeam: APIEndpoint + 'teams/{0}',&eol; chatUpdate: APIEndpoint + 'posts/{0}',&eol; directChannel: APIEndpoint + 'channels/direct',&eol; channelByName: APIEndpoint + 'teams/name/{0}/channels/name/{1}',&eol; userByName: APIEndpoint + 'users/username/{0}',&eol; botUser: APIEndpoint + 'users/me'&eol;&eol; }&eol;&eol; params.send_mode = params.send_mode.toLowerCase();&eol; params.send_mode = params.send_mode in SEND_MODE_HANDLERS&eol; ? params.send_mode&eol; : 'alarm';&eol;&eol; SEND_MODE_HANDLERS[params.send_mode](req, params);&eol; return JSON.stringify(result);&eol;&eol;} catch (error) {&eol; Zabbix.Log(5, 'Mattermost notification failed: ' + error);&eol; throw 'Mattermost notification failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__mattermost_message_link}|Open in Mattermost: {EVENT.TAGS.__mattermost_channel_name}| |
-ROW |6 |4 |Opsgenie | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol; &eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; url = params.url;&eol; &eol; req.AddHeader('Content-Type: application/json');&eol; req.AddHeader('Authorization: GenieKey '+params.token);&eol; //Zabbix: 0 - Not classified, 1 - Information, 2 - Warning, 3 - Average, 4 - High, 5 - Disaster.&eol; //Opsgenie: P5 Informational, P4 Low, P3 Moderate, P2 High, P1 Critical.&eol; if ((params.severity == 0) &pipe;&pipe; (params.severity == 1))&eol; severity = "P5";&eol; else if (params.severity == 2)&eol; severity = "P4";&eol; else if (params.severity == 3)&eol; severity = "P3";&eol; else if (params.severity == 4)&eol; severity = "P2";&eol; else if (params.severity == 5)&eol; severity = "P1";&eol;&eol; if ((params.eventvalue == 1) && (params.eventupdate == 0)) {&eol; fields.message = params.subject;&eol; fields.alias = params.eventid;&eol; fields.description = params.message;&eol; fields.details = {"Zabbix server": params.zbxurl ,"Problem": params.zbxurl+"/tr_events.php?triggerid="+params.triggerid+"&eventid="+params.eventid};&eol; fields.source = "Zabbix";&eol; fields.priority = severity;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1)) {&eol; if (params.eventaction.includes('acknowledged'))&eol; url = url+"/"+params.eventid+"/acknowledge?identifierType=alias" ;&eol; else&eol; url = url+"/"+params.eventid+"/notes?identifierType=alias";&eol; fields.user = params.user;&eol; fields.note = params.message;&eol; }&eol; else if (params.eventvalue == 0) {&eol; url = url+"/"+params.eventid+"/close?identifierType=alias" &eol; fields.note = params.message;&eol; }&eol;&eol; var resp = req.Post(url,&eol; JSON.stringify(fields)&eol; );&eol;&eol; if (req.Status() != 202) {&eol; throw JSON.parse(resp).message;&eol; }&eol;&eol; resp = JSON.parse(resp);&eol;&eol; if ((params.eventvalue == 1) && (params.eventupdate == 0)) {&eol; url = params.url+"/"+params.eventid+"?identifierType=alias";&eol; resp = req.Get(url);&eol; resp = JSON.parse(resp);&eol; result.tags.opsgenie_issue_key = params.web+"/alert/detail/"+resp.data.id+"/details";&eol; }&eol;&eol;} catch (error) {&eol; Zabbix.Log(3, 'Opsgenie notification failed : '+error);&eol; throw 'Opsgenie notification failed : '+error;&eol;&eol; result = {};&eol;}&eol;return JSON.stringify(result);|30s |1 |1 |{EVENT.TAGS.opsgenie_issue_key} |Alert in Opsgenie |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/current/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add dedicated user with media type "Opsgenie".&eol;Change the values of the variables url (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),&eol;web (for example, https://myzabbix.app.opsgenie.com), token.|
-ROW |7 |4 |PagerDuty | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol;&eol; var params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; resp = '';&eol;&eol; if (isNaN(parseInt(params.eventid)) &pipe;&pipe; params.eventid < 1) {&eol; throw 'incorrect value for variable "eventid". The value must be a positive number.';&eol; }&eol; if (params.eventname.length < 1) {&eol; throw 'incorrect value for variable "eventname". The value must be a non-empty string.';&eol; }&eol; if (params.hostname.length < 1) {&eol; throw 'incorrect value for variable "eventname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.severity)) &pipe;&pipe; (params.severity < 0 && params.severity > 5)) {&eol; throw 'incorrect value for variable "severity". The value must be a number 0..5.';&eol; }&eol; if (isNaN(parseInt(params.triggerid)) &pipe;&pipe; params.triggerid < 1) {&eol; throw 'incorrect value for variable "triggerid". The value must be a positive number.';&eol; }&eol; if (params.eventack != 'Yes' && params.eventack != 'No') {&eol; throw 'incorrect value for variable "eventack". The value must be Yes or No.';&eol; }&eol; if (isNaN(parseInt(params.eventupdate)) &pipe;&pipe; (params.eventupdate < 0 &pipe;&pipe; params.eventupdate > 1)) {&eol; throw 'incorrect value for variable "eventupdate". The value must be 0 or 1.';&eol; }&eol; if (isNaN(parseInt(params.eventvalue)) &pipe;&pipe; (params.eventvalue < 0 &pipe;&pipe; params.eventvalue > 1)) {&eol; throw 'incorrect value for variable "eventvalue". The value must be 0 or 1.';&eol; }&eol;&eol; // Correspondence between the PagerDuty and Zabbix severity level&eol; var severityMapping = [&eol; 'info', // Not classified&eol; 'info', // Information&eol; 'warning', // Warning&eol; 'warning', // Average&eol; 'error', // High&eol; 'critical' // Disaster&eol; ];&eol;&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; fields.routing_key = params.token;&eol; fields.dedup_key = params.eventid;&eol;&eol; if ((params.eventvalue == 1) && (params.eventupdate == 0)) {&eol; fields.event_action = 'trigger';&eol; fields.payload = {&eol; summary: params.eventname,&eol; source: params.hostname + ' : ' + params.hostip,&eol; severity: severityMapping[params.severity],&eol; custom_details: {&eol; 'Event date': params.eventdate,&eol; 'Event time': params.eventtime,&eol; 'Trigger description': params.triggerdesc,&eol; 'Trigger opdata': params.triggeropdata,&eol; 'Event tags': params.eventtags,&eol; 'Event host': params.hostname,&eol; 'Event host ip': params.hostip&eol; }&eol; };&eol; fields.links = [{&eol; href: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; text: 'Event link'&eol; }];&eol; fields.client = 'Zabbix';&eol; fields.client_url = params.url;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1) && (params.eventack == 'Yes'))&eol; fields.event_action = 'acknowledge';&eol; else if (params.eventvalue == 0)&eol; fields.event_action = 'resolve';&eol; else&eol; throw 'incorrect values. Update message without ack will not be sent.';&eol;&eol; Zabbix.Log(4, '[PagerDuty Webhook] Sending request:' + JSON.stringify(fields));&eol; resp = req.Post('https://events.pagerduty.com/v2/enqueue',&eol; JSON.stringify(fields)&eol; );&eol; Zabbix.Log(4, '[PagerDuty Webhook] Receiving response:' + resp);&eol;&eol; try {&eol; resp = JSON.parse(resp);&eol; }&eol; catch (error) {&eol; throw 'incorrect response. PagerDuty returned a non-JSON object.';&eol; }&eol;&eol; if (req.Status() != 202) {&eol; if (typeof resp === 'object' && typeof resp.errors === 'object' && typeof resp.errors[0] === 'string') {&eol; throw resp.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol; }&eol;&eol; if (resp.status != 'success') {&eol; throw 'Unknown error.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[PagerDuty Webhook] Notification failed : ' + error);&eol; throw 'PagerDuty notification failed : ' + error;&eol;}|30s |0 |0 | | |Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/current/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add a dedicated user with the media type "PagerDuty" and place the integration key in the "token" parameter to integrate into the service. |
-ROW |8 |4 |Pushover | | | | | | | |0 |25 |0 |0 |0 |0 | |0 |3 |10s |1 |try {&eol; var params = JSON.parse(value),&eol; request = new CurlHttpRequest(),&eol; data,&eol; response;&eol;&eol; if (isNaN(params.priority) &pipe;&pipe; params.priority < -2 &pipe;&pipe; params.priority > 2) {&eol; throw 'field "priority" should be -2..2';&eol; }&eol;&eol; if (isNaN(params.triggerid)) {&eol; throw 'field "triggerid" is not a number';&eol; }&eol;&eol; if (isNaN(params.eventid)) {&eol; throw 'field "eventid" is not a number';&eol; }&eol;&eol; if (typeof params.message !== 'string' &pipe;&pipe; params.message.trim() === '') {&eol; throw 'field "message" cannot be empty';&eol; }&eol;&eol; data = {&eol; token: params.token,&eol; user: params.user,&eol; title: params.title,&eol; message: params.message,&eol; url: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; url_title: params.url_title,&eol; priority: params.priority&eol; };&eol;&eol; if (params.priority == 2) {&eol; if (isNaN(params.retry) &pipe;&pipe; params.retry < 30) {&eol; throw 'field "retry" should be a number with value of at least 30 if "priority" is set to 2';&eol; }&eol;&eol; if (isNaN(params.expire) &pipe;&pipe; params.expire > 10800) {&eol; throw 'field "expire" should be a number with value of at most 10800 if "priority" is set to 2';&eol; }&eol;&eol; data.retry = params.retry;&eol; data.expire = params.expire;&eol; }&eol;&eol; data = JSON.stringify(data);&eol; Zabbix.Log(4, '[ Pushover Webhook ] Sending request: ' + params.endpoint + '\n' + data);&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; response = request.Post(params.endpoint, data);&eol;&eol; Zabbix.Log(4, '[ Pushover Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Pushover Webhook ] Failed to parse response received from Pushover');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() != 200 &pipe;&pipe; response === null &pipe;&pipe; typeof response !== 'object' &pipe;&pipe; response.status !== 1) {&eol; if (response !== null && typeof response === 'object' && typeof response.errors === 'object'&eol; && typeof response.errors[0] === 'string') {&eol; throw response.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Pushover Webhook ] Pushover notification failed: ' + error);&eol; throw 'Pushover notification failed: ' + error;&eol;}|30s |0 |0 | | |Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover&eol;&eol;Set token parameter with to your Pushover application key.&eol;When assigning Pushover media to the Zabbix user - add user key into send to field. |
-ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol; ];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;var EVENT_STATUS = {&eol; PROBLEM: 'PROBLEM',&eol; UPDATE: 'UPDATE',&eol; RESOLVE: 'OK'&eol;}&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol; return this.replace(/{(\d+)}/g, function(match, number) { &eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; // && params.event_ack_status == 'Yes'&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new CurlHttpRequest();&eol; req.AddHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol;&eol; var resp = JSON.parse(req.Get(&eol; '{0}?token={1}&channel={2}&message_ts={3}'.format(&eol; Slack.getPermalink,&eol; params.bot_token,&eol; channelId,&eol; messageTimestamp&eol; )&eol; ));&eol; &eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbixURL, triggerId, eventId) {&eol; var problemURL = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbixURL.replace(/\/+$/, ''),&eol; triggerId,&eol; eventId&eol; );&eol;&eol; return problemURL&eol;}&eol;&eol;function getTagValue(eventTags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tagValue = eventTags&eol; .split(',')&eol; .filter(function (v) {return v.match(pattern)})&eol; .map(function (v) {return v.split(':')[1]})[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tagValue;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; }&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; &eol; } else if (isEventUpdate(params)) {&eol; fields.thread_ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id),&eol; true,&eol; params.event_update_message&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; } else if (isEventResolve(params)) {&eol; fields.channel = getTagValue(params.event_tags, 'channel_id');&eol; fields.text = '';&eol; fields.ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; }&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; &eol; } else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id),&eol; false,&eol; params.event_update_message&eol; )&eol; ];&eol; &eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; } else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;} &eol;&eol;function createMessage(&eol; status,&eol; eventSeverityColor,&eol; eventDate,&eol; eventTime,&eol; problemURL,&eol; isShort,&eol; messageText&eol; ) {&eol; var message = {&eol; 'fallback': '{0}: {1}'.format(status, params.event_name),&eol; 'title': '{0}: {1}'.format(status, params.event_name),&eol; 'color': eventSeverityColor,&eol; 'title_link': problemURL,&eol; 'pretext': messageText &pipe;&pipe; '',&eol; &eol; 'fields': [&eol; {&eol; 'title': 'Host',&eol; 'value': '{0} [{1}]'.format(params.host_name, params.host_ip),&eol; 'short': true&eol; },&eol; {&eol; 'title': 'Event time',&eol; 'value': '{0} {1}'.format(eventDate, eventTime),&eol; 'short': true&eol; },&eol; {&eol; 'title': 'Severity',&eol; 'value': params.event_severity,&eol; 'short': true&eol; },&eol; {&eol; 'title': 'Opdata',&eol; 'value': params.event_opdata,&eol; 'short': true&eol; }&eol; ],&eol; };&eol;&eol; if (!isShort) {&eol; message['actions'] = [&eol; {&eol; "type": "button",&eol; "text": "Open in Zabbix",&eol; "url": problemURL&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; 'title': 'Event tags',&eol; 'value': params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; 'short': true&eol; },&eol; {&eol; 'title': 'Trigger description',&eol; 'value': params.trigger_description,&eol; 'short': true&eol; }&eol; )&eol; }&eol;&eol; return message;&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; result = {tags: {}};&eol;&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token)&eol;&eol; var Slack = {&eol; postMessage: params.slack_endpoint + 'chat.postMessage',&eol; getPermalink: params.slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: params.slack_endpoint + 'chat.update'&eol; }&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol; return JSON.stringify(result);&eol;&eol;} catch (error) {&eol; Zabbix.Log(3, 'Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__message_link} |Open in Slack: {EVENT.TAGS.__channel_name} | |
-ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.Log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else if (!params.discord_endpoint.startsWith('https://discordapp.com/api/webhooks')) {&eol; throw 'Invalid Discord webhook URL: ' + params.discord_endpoint;&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v1000/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if (!(params.event_value == 0 &pipe;&pipe; params.event_value == 1)) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (!(params.event_update_status == 0 &pipe;&pipe; params.event_update_status == 1)) {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Revovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new CurlHttpRequest();&eol;&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; var resp = req.Post(params.discord_endpoint, JSON.stringify(body)),&eol; data = JSON.parse(resp);&eol;&eol; Zabbix.Log(4, '[ Discord Webhook ] JSON: ' + JSON.stringify(body));&eol; Zabbix.Log(4, '[ Discord Webhook ] Response: ' + resp);&eol;&eol; if (data.id) {&eol; return resp;&eol; }&eol; else {&eol; var message = ((typeof data.message === 'string') ? data.message : 'Unknown error');&eol;&eol; Zabbix.Log(3, '[ Discord Webhook ] FAILED with response: ' + resp);&eol; throw message + '. For more details check zabbix server log.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Discord Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
-ROW |11 |4 |SIGNL4 | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |// SIGNL4 Webhook&eol;try {&eol; var response,&eol; payload,&eol; params = JSON.parse(value),&eol; endpoint = 'https://connect.signl4.com/webhook/',&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof params.teamsecret === 'string' && params.teamsecret.trim() !== '') {&eol; endpoint += params.teamsecret;&eol; delete params.teamsecret;&eol; }&eol; else {&eol; throw 'The team secret of your SIGNL4 team cannot be empty.';&eol; }&eol;&eol; if (typeof params.Severity === 'string' && params.Severity === '{EVENT.SEVERITY}') {&eol; params.Severity = 'Not classified';&eol; }&eol;&eol; payload = JSON.stringify(params);&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] Sending request: ' + payload);&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; response = request.Post(endpoint, 'payload=' + payload);&eol;&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response&eol; );&eol;&eol; if (request.Status() !== 201) {&eol; throw 'Request failed with status code ' + request.Status() +&eol; '. Check debug log for more information.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] ERROR: ' + error);&eol;&eol; throw 'Sending failed: ' + error;&eol;}|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.&eol;&eol;Get the app at https://www.signl4.com. |
+FIELDS|mediatypeid|type|name |smtp_server |smtp_helo |smtp_email |exec_path|gsm_modem |username|passwd|status|smtp_port|smtp_security|smtp_verify_peer|smtp_verify_host|smtp_authentication|exec_params|maxsessions|maxattempts|attempt_interval|content_type|script |timeout|process_tags|show_event_menu|event_menu_url |event_menu_name |description |
+ROW |1 |0 |Email |mail.example.com|example.com|zabbix@example.com| | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |0 | |30s |0 |0 | | | |
+ROW |3 |2 |SMS | | | | |/dev/ttyS0| | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 | |30s |0 |0 | | | |
+ROW |4 |0 |Email (HTML) |mail.example.com|example.com|zabbix@example.com| | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 | |30s |0 |0 | | | |
+ROW |5 |4 |Mattermost | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |1 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol; ];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SEND_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;var EVENT_STATUS = {&eol; PROBLEM: 'PROBLEM',&eol; UPDATE: 'UPDATE',&eol; RESOLVE: 'OK'&eol;}&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol; return this.replace(/{(\d+)}/g, function(match, number) { &eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(mattermostURL, teamName, postID) {&eol; return '{0}/{1}/pl/{2}'.format(&eol; mattermostURL.replace(/\/+$/, ''),&eol; teamName,&eol; postID&eol; );&eol;}&eol;&eol;function getChannel(sendTo) {&eol; switch (true) {&eol; case /.+\/#.+/.test(sendTo):&eol; return getChannelByName(sendTo);&eol;&eol; case /@.+/.test(sendTo):&eol; return getDirectChannel(sendTo);&eol;&eol; default:&eol; return getChannelByID(sendTo);&eol; }&eol;}&eol;&eol;function getChannelByName(sendTo) {&eol; var teamChan = sendTo.trim().split('/#');&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.channelByName.format(teamChan[0], teamChan[1]),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getDirectChannel(sendTo) {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var teamUser = sendTo.trim().split('/@');&eol; var bot = getBotUser();&eol; var user = getUserByName(teamUser[1])&eol;&eol; var resp = JSON.parse(req.Post(&eol; Mattermost.directChannel,&eol; JSON.stringify([bot.id, user.id])&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; resp.teamName = teamUser[0];&eol; return resp;&eol;}&eol;&eol;function getChannelByID(channelID) {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.getChannel.format(channelID),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getBotUser() {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.botUser,&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getUserByName(userName) {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.userByName.format(userName),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function getTeamByID(teamID) {&eol; Zabbix.Log(5, '[ Webhook ] Call {0}({1})'.format(&eol; arguments.callee.name,&eol; JSON.stringify(arguments)&eol; ));&eol;&eol; var resp = JSON.parse(req.Get(&eol; Mattermost.getTeam.format(teamID),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; Zabbix.Log(5, '[ Webhook ] Result {0}: {1}'.format(&eol; arguments.callee.name,&eol; JSON.stringify(resp)&eol; ));&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; return resp;&eol;}&eol;&eol;function createProblemURL(zabbixURL, triggerId, eventId) {&eol; var problemURL = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbixURL,&eol; triggerId,&eol; eventId&eol; );&eol;&eol; return problemURL&eol;}&eol;&eol;function getTagValue(eventTags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tagValue = eventTags&eol; .split(',')&eol; .filter(function (v) {return v.match(pattern)})&eol; .map(function (v) {return v.split(':')[1]})[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tagValue;&eol;}&eol;&eol;function handlerAlarm(req, params) {&eol; var channel = getChannel(params.send_to);&eol; var fields = {&eol; channel_id: channel.id,&eol; props: {}&eol; }&eol;&eol; if (isEventProblem(params)) {&eol; var teamName = channel.teamName&eol; ? channel.teamName&eol; : getTeamByID(channel.team_id).name&eol;&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(&eol; Mattermost.postMessage,&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; result.tags.__mattermost_post_id = resp.id;&eol; result.tags.__mattermost_channel_id = channel.id;&eol; result.tags.__mattermost_channel_name = channel.name;&eol; result.tags.__mattermost_message_link = getPermalink(&eol; params.mattermost_url,&eol; teamName,&eol; resp.id&eol; );&eol;&eol; } else if (isEventUpdate(params)) {&eol; fields.root_id = getTagValue(params.event_tags, 'mattermost_post_id');&eol; fields.message = params.event_update_message &pipe;&pipe; '';&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id),&eol; true&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(&eol; Mattermost.postMessage, JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; } else if (isEventResolve(params)) {&eol; fields.channel_id = getTagValue(params.event_tags, 'mattermost_channel_id');&eol; fields.id = getTagValue(params.event_tags, 'mattermost_post_id');&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var post_id = getTagValue(params.event_tags, 'mattermost_post_id');&eol;&eol; var resp = JSON.parse(req.Put(&eol; Mattermost.chatUpdate.format(post_id),&eol; JSON.stringify(fields)&eol; )&eol; );&eol;&eol; if (req.Status() != 200) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(req, params) {&eol; var channel = getChannel(params.send_to);&eol; var fields = {&eol; channel_id: channel.id,&eol; props: {}&eol; }&eol;&eol; if (isEventProblem(params)) {&eol; var teamName = channel.teamName&eol; ? channel.teamName&eol; : getTeamByID(channel.team_id).name&eol;&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Mattermost.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; result.tags.__mattermost_channel_name = channel.name;&eol; result.tags.__mattermost_message_link = getPermalink(&eol; params.mattermost_url,&eol; teamName,&eol; resp.id&eol; );&eol; &eol; } else if (isEventUpdate(params)) {&eol; fields.message = params.event_update_message &pipe;&pipe; '';&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id),&eol; false&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Mattermost.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol;&eol; } else if (isEventResolve(params)) {&eol; fields.props.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Mattermost.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 201) {&eol; throw '[{0}] {1}'.format(resp.status_code, resp.message);&eol; }&eol; }&eol;} &eol;&eol;function createMessage(&eol; status,&eol; eventSeverityColor,&eol; eventDate,&eol; eventTime,&eol; problemURL,&eol; isShort&eol; ) {&eol; var message = {&eol; fallbac: '{0} #{1}: {2}'.format(status, params.event_id, params.event_name),&eol; title: '{0} #{1}: {2}'.format(status, params.event_id, params.event_name),&eol; color: eventSeverityColor,&eol; title_link: problemURL,&eol; footer: problemURL,&eol; &eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_ip),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(eventDate, eventTime),&eol; short: true&eol; },&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (!isShort) {&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: '`{0}`'.format(params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None'),&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; )&eol; }&eol;&eol; return message;&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; result = {tags: {}};&eol;&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token)&eol;&eol; params.mattermost_url = params.mattermost_url.replace(/\/+$/, '');&eol; params.zabbix_url = params.zabbix_url.replace(/\/+$/, '');&eol; &eol; var APIEndpoint = params.mattermost_url + '/api/v4/';&eol;&eol; var Mattermost = {&eol; postMessage: APIEndpoint + 'posts',&eol; getChannel: APIEndpoint + 'channels/{0}',&eol; getTeam: APIEndpoint + 'teams/{0}',&eol; chatUpdate: APIEndpoint + 'posts/{0}',&eol; directChannel: APIEndpoint + 'channels/direct',&eol; channelByName: APIEndpoint + 'teams/name/{0}/channels/name/{1}',&eol; userByName: APIEndpoint + 'users/username/{0}',&eol; botUser: APIEndpoint + 'users/me'&eol;&eol; }&eol;&eol; params.send_mode = params.send_mode.toLowerCase();&eol; params.send_mode = params.send_mode in SEND_MODE_HANDLERS&eol; ? params.send_mode&eol; : 'alarm';&eol;&eol; SEND_MODE_HANDLERS[params.send_mode](req, params);&eol; return JSON.stringify(result);&eol;&eol;} catch (error) {&eol; Zabbix.Log(5, 'Mattermost notification failed: ' + error);&eol; throw 'Mattermost notification failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__mattermost_message_link}|Open in Mattermost: {EVENT.TAGS.__mattermost_channel_name}| |
+ROW |6 |4 |Opsgenie | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol; &eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; url = params.url;&eol; &eol; req.AddHeader('Content-Type: application/json');&eol; req.AddHeader('Authorization: GenieKey '+params.token);&eol; //Zabbix: 0 - Not classified, 1 - Information, 2 - Warning, 3 - Average, 4 - High, 5 - Disaster.&eol; //Opsgenie: P5 Informational, P4 Low, P3 Moderate, P2 High, P1 Critical.&eol; if ((params.severity == 0) &pipe;&pipe; (params.severity == 1))&eol; severity = "P5";&eol; else if (params.severity == 2)&eol; severity = "P4";&eol; else if (params.severity == 3)&eol; severity = "P3";&eol; else if (params.severity == 4)&eol; severity = "P2";&eol; else if (params.severity == 5)&eol; severity = "P1";&eol;&eol; if ((params.eventvalue == 1) && (params.eventupdate == 0)) {&eol; fields.message = params.subject;&eol; fields.alias = params.eventid;&eol; fields.description = params.message;&eol; fields.details = {"Zabbix server": params.zbxurl ,"Problem": params.zbxurl+"/tr_events.php?triggerid="+params.triggerid+"&eventid="+params.eventid};&eol; fields.source = "Zabbix";&eol; fields.priority = severity;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1)) {&eol; if (params.eventaction.includes('acknowledged'))&eol; url = url+"/"+params.eventid+"/acknowledge?identifierType=alias" ;&eol; else&eol; url = url+"/"+params.eventid+"/notes?identifierType=alias";&eol; fields.user = params.user;&eol; fields.note = params.message;&eol; }&eol; else if (params.eventvalue == 0) {&eol; url = url+"/"+params.eventid+"/close?identifierType=alias" &eol; fields.note = params.message;&eol; }&eol;&eol; var resp = req.Post(url,&eol; JSON.stringify(fields)&eol; );&eol;&eol; if (req.Status() != 202) {&eol; throw JSON.parse(resp).message;&eol; }&eol;&eol; resp = JSON.parse(resp);&eol;&eol; if ((params.eventvalue == 1) && (params.eventupdate == 0)) {&eol; url = params.url+"/"+params.eventid+"?identifierType=alias";&eol; resp = req.Get(url);&eol; resp = JSON.parse(resp);&eol; result.tags.opsgenie_issue_key = params.web+"/alert/detail/"+resp.data.id+"/details";&eol; }&eol;&eol;} catch (error) {&eol; Zabbix.Log(3, 'Opsgenie notification failed : '+error);&eol; throw 'Opsgenie notification failed : '+error;&eol;&eol; result = {};&eol;}&eol;return JSON.stringify(result);|30s |1 |1 |{EVENT.TAGS.opsgenie_issue_key} |Alert in Opsgenie |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/current/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add dedicated user with media type "Opsgenie".&eol;Change the values of the variables url (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),&eol;web (for example, https://myzabbix.app.opsgenie.com), token. |
+ROW |7 |4 |PagerDuty | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol;&eol; var params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; resp = '';&eol;&eol; if (isNaN(parseInt(params.eventid)) &pipe;&pipe; params.eventid < 1) {&eol; throw 'incorrect value for variable "eventid". The value must be a positive number.';&eol; }&eol; if (params.eventname.length < 1) {&eol; throw 'incorrect value for variable "eventname". The value must be a non-empty string.';&eol; }&eol; if (params.hostname.length < 1) {&eol; throw 'incorrect value for variable "eventname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.severity)) &pipe;&pipe; (params.severity < 0 && params.severity > 5)) {&eol; throw 'incorrect value for variable "severity". The value must be a number 0..5.';&eol; }&eol; if (isNaN(parseInt(params.triggerid)) &pipe;&pipe; params.triggerid < 1) {&eol; throw 'incorrect value for variable "triggerid". The value must be a positive number.';&eol; }&eol; if (params.eventack != 'Yes' && params.eventack != 'No') {&eol; throw 'incorrect value for variable "eventack". The value must be Yes or No.';&eol; }&eol; if (isNaN(parseInt(params.eventupdate)) &pipe;&pipe; (params.eventupdate < 0 &pipe;&pipe; params.eventupdate > 1)) {&eol; throw 'incorrect value for variable "eventupdate". The value must be 0 or 1.';&eol; }&eol; if (isNaN(parseInt(params.eventvalue)) &pipe;&pipe; (params.eventvalue < 0 &pipe;&pipe; params.eventvalue > 1)) {&eol; throw 'incorrect value for variable "eventvalue". The value must be 0 or 1.';&eol; }&eol;&eol; // Correspondence between the PagerDuty and Zabbix severity level&eol; var severityMapping = [&eol; 'info', // Not classified&eol; 'info', // Information&eol; 'warning', // Warning&eol; 'warning', // Average&eol; 'error', // High&eol; 'critical' // Disaster&eol; ];&eol;&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; fields.routing_key = params.token;&eol; fields.dedup_key = params.eventid;&eol;&eol; if ((params.eventvalue == 1) && (params.eventupdate == 0)) {&eol; fields.event_action = 'trigger';&eol; fields.payload = {&eol; summary: params.eventname,&eol; source: params.hostname + ' : ' + params.hostip,&eol; severity: severityMapping[params.severity],&eol; custom_details: {&eol; 'Event date': params.eventdate,&eol; 'Event time': params.eventtime,&eol; 'Trigger description': params.triggerdesc,&eol; 'Trigger opdata': params.triggeropdata,&eol; 'Event tags': params.eventtags,&eol; 'Event host': params.hostname,&eol; 'Event host ip': params.hostip&eol; }&eol; };&eol; fields.links = [{&eol; href: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; text: 'Event link'&eol; }];&eol; fields.client = 'Zabbix';&eol; fields.client_url = params.url;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1) && (params.eventack == 'Yes'))&eol; fields.event_action = 'acknowledge';&eol; else if (params.eventvalue == 0)&eol; fields.event_action = 'resolve';&eol; else&eol; throw 'incorrect values. Update message without ack will not be sent.';&eol;&eol; Zabbix.Log(4, '[PagerDuty Webhook] Sending request:' + JSON.stringify(fields));&eol; resp = req.Post('https://events.pagerduty.com/v2/enqueue',&eol; JSON.stringify(fields)&eol; );&eol; Zabbix.Log(4, '[PagerDuty Webhook] Receiving response:' + resp);&eol;&eol; try {&eol; resp = JSON.parse(resp);&eol; }&eol; catch (error) {&eol; throw 'incorrect response. PagerDuty returned a non-JSON object.';&eol; }&eol;&eol; if (req.Status() != 202) {&eol; if (typeof resp === 'object' && typeof resp.errors === 'object' && typeof resp.errors[0] === 'string') {&eol; throw resp.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol; }&eol;&eol; if (resp.status != 'success') {&eol; throw 'Unknown error.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[PagerDuty Webhook] Notification failed : ' + error);&eol; throw 'PagerDuty notification failed : ' + error;&eol;}|30s |0 |0 | | |Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/current/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add a dedicated user with the media type "PagerDuty" and place the integration key in the "token" parameter to integrate into the service. |
+ROW |8 |4 |Pushover | | | | | | | |0 |25 |0 |0 |0 |0 | |0 |3 |10s |1 |try {&eol; var params = JSON.parse(value),&eol; request = new CurlHttpRequest(),&eol; data,&eol; response;&eol;&eol; if (isNaN(params.priority) &pipe;&pipe; params.priority < -2 &pipe;&pipe; params.priority > 2) {&eol; throw 'field "priority" should be -2..2';&eol; }&eol;&eol; if (isNaN(params.triggerid)) {&eol; throw 'field "triggerid" is not a number';&eol; }&eol;&eol; if (isNaN(params.eventid)) {&eol; throw 'field "eventid" is not a number';&eol; }&eol;&eol; if (typeof params.message !== 'string' &pipe;&pipe; params.message.trim() === '') {&eol; throw 'field "message" cannot be empty';&eol; }&eol;&eol; data = {&eol; token: params.token,&eol; user: params.user,&eol; title: params.title,&eol; message: params.message,&eol; url: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; url_title: params.url_title,&eol; priority: params.priority&eol; };&eol;&eol; if (params.priority == 2) {&eol; if (isNaN(params.retry) &pipe;&pipe; params.retry < 30) {&eol; throw 'field "retry" should be a number with value of at least 30 if "priority" is set to 2';&eol; }&eol;&eol; if (isNaN(params.expire) &pipe;&pipe; params.expire > 10800) {&eol; throw 'field "expire" should be a number with value of at most 10800 if "priority" is set to 2';&eol; }&eol;&eol; data.retry = params.retry;&eol; data.expire = params.expire;&eol; }&eol;&eol; data = JSON.stringify(data);&eol; Zabbix.Log(4, '[ Pushover Webhook ] Sending request: ' + params.endpoint + '\n' + data);&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; response = request.Post(params.endpoint, data);&eol;&eol; Zabbix.Log(4, '[ Pushover Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Pushover Webhook ] Failed to parse response received from Pushover');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() != 200 &pipe;&pipe; response === null &pipe;&pipe; typeof response !== 'object' &pipe;&pipe; response.status !== 1) {&eol; if (response !== null && typeof response === 'object' && typeof response.errors === 'object'&eol; && typeof response.errors[0] === 'string') {&eol; throw response.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Pushover Webhook ] Pushover notification failed: ' + error);&eol; throw 'Pushover notification failed: ' + error;&eol;}|30s |0 |0 | | |Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover&eol;&eol;Set token parameter with to your Pushover application key.&eol;When assigning Pushover media to the Zabbix user - add user key into send to field. |
+ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol; ];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;var EVENT_STATUS = {&eol; PROBLEM: 'PROBLEM',&eol; UPDATE: 'UPDATE',&eol; RESOLVE: 'OK'&eol;}&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol; return this.replace(/{(\d+)}/g, function(match, number) { &eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; // && params.event_ack_status == 'Yes'&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new CurlHttpRequest();&eol; req.AddHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol;&eol; var resp = JSON.parse(req.Get(&eol; '{0}?token={1}&channel={2}&message_ts={3}'.format(&eol; Slack.getPermalink,&eol; params.bot_token,&eol; channelId,&eol; messageTimestamp&eol; )&eol; ));&eol; &eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbixURL, triggerId, eventId) {&eol; var problemURL = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbixURL.replace(/\/+$/, ''),&eol; triggerId,&eol; eventId&eol; );&eol;&eol; return problemURL&eol;}&eol;&eol;function getTagValue(eventTags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tagValue = eventTags&eol; .split(',')&eol; .filter(function (v) {return v.match(pattern)})&eol; .map(function (v) {return v.split(':')[1]})[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tagValue;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; }&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; &eol; } else if (isEventUpdate(params)) {&eol; fields.thread_ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id),&eol; true,&eol; params.event_update_message&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; } else if (isEventResolve(params)) {&eol; fields.channel = getTagValue(params.event_tags, 'channel_id');&eol; fields.text = '';&eol; fields.ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; }&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.PROBLEM,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; &eol; } else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.UPDATE,&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id),&eol; false,&eol; params.event_update_message&eol; )&eol; ];&eol; &eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; } else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; EVENT_STATUS.RESOLVE,&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;} &eol;&eol;function createMessage(&eol; status,&eol; eventSeverityColor,&eol; eventDate,&eol; eventTime,&eol; problemURL,&eol; isShort,&eol; messageText&eol; ) {&eol; var message = {&eol; 'fallback': '{0}: {1}'.format(status, params.event_name),&eol; 'title': '{0}: {1}'.format(status, params.event_name),&eol; 'color': eventSeverityColor,&eol; 'title_link': problemURL,&eol; 'pretext': messageText &pipe;&pipe; '',&eol; &eol; 'fields': [&eol; {&eol; 'title': 'Host',&eol; 'value': '{0} [{1}]'.format(params.host_name, params.host_ip),&eol; 'short': true&eol; },&eol; {&eol; 'title': 'Event time',&eol; 'value': '{0} {1}'.format(eventDate, eventTime),&eol; 'short': true&eol; },&eol; {&eol; 'title': 'Severity',&eol; 'value': params.event_severity,&eol; 'short': true&eol; },&eol; {&eol; 'title': 'Opdata',&eol; 'value': params.event_opdata,&eol; 'short': true&eol; }&eol; ],&eol; };&eol;&eol; if (!isShort) {&eol; message['actions'] = [&eol; {&eol; "type": "button",&eol; "text": "Open in Zabbix",&eol; "url": problemURL&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; 'title': 'Event tags',&eol; 'value': params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; 'short': true&eol; },&eol; {&eol; 'title': 'Trigger description',&eol; 'value': params.trigger_description,&eol; 'short': true&eol; }&eol; )&eol; }&eol;&eol; return message;&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; result = {tags: {}};&eol;&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token)&eol;&eol; var Slack = {&eol; postMessage: params.slack_endpoint + 'chat.postMessage',&eol; getPermalink: params.slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: params.slack_endpoint + 'chat.update'&eol; }&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol; return JSON.stringify(result);&eol;&eol;} catch (error) {&eol; Zabbix.Log(3, 'Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__message_link} |Open in Slack: {EVENT.TAGS.__channel_name} | |
+ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.Log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else if (!params.discord_endpoint.startsWith('https://discordapp.com/api/webhooks')) {&eol; throw 'Invalid Discord webhook URL: ' + params.discord_endpoint;&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v1000/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if (!(params.event_value == 0 &pipe;&pipe; params.event_value == 1)) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (!(params.event_update_status == 0 &pipe;&pipe; params.event_update_status == 1)) {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Revovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new CurlHttpRequest();&eol;&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; var resp = req.Post(params.discord_endpoint, JSON.stringify(body)),&eol; data = JSON.parse(resp);&eol;&eol; Zabbix.Log(4, '[ Discord Webhook ] JSON: ' + JSON.stringify(body));&eol; Zabbix.Log(4, '[ Discord Webhook ] Response: ' + resp);&eol;&eol; if (data.id) {&eol; return resp;&eol; }&eol; else {&eol; var message = ((typeof data.message === 'string') ? data.message : 'Unknown error');&eol;&eol; Zabbix.Log(3, '[ Discord Webhook ] FAILED with response: ' + resp);&eol; throw message + '. For more details check zabbix server log.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Discord Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
+ROW |11 |4 |SIGNL4 | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |// SIGNL4 Webhook&eol;try {&eol; var response,&eol; payload,&eol; params = JSON.parse(value),&eol; endpoint = 'https://connect.signl4.com/webhook/',&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof params.teamsecret === 'string' && params.teamsecret.trim() !== '') {&eol; endpoint += params.teamsecret;&eol; delete params.teamsecret;&eol; }&eol; else {&eol; throw 'The team secret of your SIGNL4 team cannot be empty.';&eol; }&eol;&eol; if (typeof params.Severity === 'string' && params.Severity === '{EVENT.SEVERITY}') {&eol; params.Severity = 'Not classified';&eol; }&eol;&eol; payload = JSON.stringify(params);&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] Sending request: ' + payload);&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; response = request.Post(endpoint, 'payload=' + payload);&eol;&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response&eol; );&eol;&eol; if (request.Status() !== 201) {&eol; throw 'Request failed with status code ' + request.Status() +&eol; '. Check debug log for more information.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] ERROR: ' + error);&eol;&eol; throw 'Sending failed: ' + error;&eol;}|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.&eol;&eol;Get the app at https://www.signl4.com. |
+ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.fields[field] = fields[field];&eol;&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object'&eol; && (schema[field].schema.type === 'number' &pipe;&pipe; schema[field].schema.type === 'datetime')) {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.fields[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; Jira.params.project_key + '&issuetypeNames=' + Jira.params.issue_type);&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + Jira.params.issue_key, Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
+ROW |13 |4 |Jira with CustomFields| | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.fields[field] = fields[field];&eol;&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object'&eol; && (schema[field].schema.type === 'number' &pipe;&pipe; schema[field].schema.type === 'datetime')) {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.fields[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; Jira.params.project_key + '&issuetypeNames=' + Jira.params.issue_type);&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + Jira.params.issue_key, Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
+ROW |14 |4 |MS Teams | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900', // Resolved.&eol; '#000000' // Default.&eol;];&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (!params.teams_endpoint) {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('https://outlook.office.com/webhook/')) {&eol; throw 'Invalid MS Teams webhook URL: ' + params.teams_endpoint;&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set "use_default_message" to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; var request = new CurlHttpRequest(),&eol; facts = [],&eol; body = {&eol; themeColor: SEVERITY_COLORS[params.event_nseverity].replace('#', ''),&eol; summary: 'Zabbix',&eol; sections: [&eol; {&eol; markdown: 'false',&eol; activityTitle: params.alert_subject,&eol; activitySubtitle: 'On ' + params.host_name + ' [' + params.host_ip + ']',&eol; text: (params.use_default_message.toLowerCase() == 'true')&eol; ? params.alert_message&eol; : params.trigger_description&eol; }&eol; ],&eol; potentialAction: [&eol; {&eol; '@type': 'OpenUri',&eol; name: (params.event_source === '0')&eol; ? 'Event Info'&eol; : 'Zabbix Home',&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; }&eol; ]&eol; };&eol;&eol; if (params.use_default_message.toLowerCase() !== 'true') {&eol; // Problem message.&eol; if (params.event_value === '1' && params.event_update_status === '0') {&eol; facts.push({&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date&eol; });&eol; }&eol; // Update message.&eol; else if (params.event_update_status === '1') {&eol; body.sections[0].text = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.sections[0].text += '<br>Message:<br>' + params.event_update_message;&eol; }&eol;&eol; facts.push({&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date&eol; });&eol; }&eol; // Resolved message.&eol; else {&eol; facts.push({&eol; name: 'Revovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date&eol; });&eol; }&eol;&eol; if (params.event_severity && params.event_severity !== '{EVENT.SEVERITY}') {&eol; facts.push({&eol; name: 'Severity',&eol; value: params.event_severity&eol; });&eol; }&eol;&eol;&eol; if (params.event_opdata && params.event_opdata !== '{EVENT.OPDATA}') {&eol; facts.push({&eol; name: 'Operational data',&eol; value: params.event_opdata&eol; });&eol; }&eol;&eol; if (params.event_tags && params.event_tags !== '{EVENT.TAGS}') {&eol; facts.push({&eol; name: 'Event tags',&eol; value: params.event_tags&eol; });&eol; }&eol;&eol; body.sections[0].facts = facts;&eol; }&eol;&eol; body.sections[0].text = body.sections[0].text.replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof params.HTTPProxy !== 'undefined' && params.HTTPProxy !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] JSON: ' + JSON.stringify(body));&eol;&eol; var response = request.Post(params.teams_endpoint, JSON.stringify(body));&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] Response: ' + response);&eol;&eol; if (response === '1') {&eol; return 'OK';&eol; }&eol; else {&eol; Zabbix.Log(4, '[ MS Teams Webhook ] FAILED with response: ' + response);&eol; throw response;&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ MS Teams Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
+ROW |15 |4 |Redmine | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Redmine = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Redmine.params = params;&eol; if (typeof Redmine.params.url === 'string') {&eol; if (!Redmine.params.url.endsWith('/')) {&eol; Redmine.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Redmine.getSchema();&eol;&eol; if (schema) {&eol; data.issue.custom_fields = [];&eol;&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (var idx in schema.custom_fields) {&eol; if (schema.custom_fields[idx].id != field) {&eol; continue;&eol; }&eol;&eol; var field_value;&eol;&eol; switch (schema.custom_fields[idx].field_format) {&eol; case 'string':&eol; field_value = fields[field];&eol; break;&eol;&eol; case 'int':&eol; field_value = parseInt(fields[field]);&eol; break;&eol;&eol; case 'float':&eol; field_value = parseFloat(fields[field]);&eol; break;&eol;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/)) {&eol; field_value = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol; }&eol;&eol; if (field_value !== undefined) {&eol; data.issue.custom_fields.push({id: field, value: field_value});&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_key'].forEach(function (field) {&eol; if (typeof Redmine.params !== 'object' &pipe;&pipe; typeof Redmine.params[field] === 'undefined'&eol; &pipe;&pipe; Redmine.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Redmine.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Redmine.params.HTTPProxy !== 'undefined' && Redmine.params.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Redmine.params.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Redmine-API-Key: ' + Redmine.params.access_key);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to parse response received from Redmine');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getProjectID: function(name) {&eol; var result = Redmine.request('get', 'projects.json'),&eol; project_id;&eol;&eol; if (result.response) {&eol; var projects = result.response.projects &pipe;&pipe; [];&eol;&eol; for (var i in projects) {&eol; if (projects[i].name === name) {&eol; project_id = projects[i].id;&eol; break;&eol; }&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve project data.');&eol; }&eol;&eol; if (typeof project_id === 'undefined') {&eol; throw 'Cannot find project with name: ' + name;&eol; }&eol;&eol; return project_id;&eol; },&eol;&eol; getSchema: function() {&eol; var result = Redmine.request('get', 'custom_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(subject, description, priority, fields) {&eol; var project_id = /^\d+$/.test(Redmine.params.project)&eol; ? Redmine.params.project&eol; : Redmine.getProjectID(Redmine.params.project),&eol; data = {&eol; issue: {&eol; project_id: project_id,&eol; tracker_id: Redmine.params.tracker_id,&eol; subject: subject,&eol; description: description&eol; }&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.issue.priority_id = priority;&eol; }&eol;&eol; result = Redmine.request('post', 'issues.json', Redmine.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.issue.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Redmine issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issue.id;&eol; },&eol;&eol; updateIssue: function(note, fields) {&eol; var data = {&eol; issue: {&eol; notes: note &pipe;&pipe; ''&eol; }&eol; };&eol;&eol; Redmine.request('put', 'issues/' + Redmine.params.issue_key + '.json', Redmine.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_redmine = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'tracker_id', 'project',&eol; 'event_source', 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('redmine_')) {&eol; params_redmine[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; params_fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.redmine_issue_key)) &pipe;&pipe; parseInt(params.redmine_issue_key) < 1 )) {&eol; throw 'Incorrect "redmine_issue_key" parameter given: ' + params.redmine_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Redmine.setParams(params_redmine);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Redmine.createIssue(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var issue_id = Redmine.createIssue(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_redmine_issue_id = issue_id;&eol; result.tags.__zbx_redmine_issuelink = params.redmine_url +&eol; (params.redmine_url.endsWith('/') ? '' : '/') + 'issues/' + issue_id;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; Redmine.updateIssue(params.alert_subject + '\n' + params.alert_message, params_fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Redmine Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_redmine_issuelink} |Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id} | |
+ROW |16 |4 |Telegram | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Telegram = {&eol; token: null,&eol; to: null,&eol; message: null,&eol; parse_mode: null,&eol;&eol; sendMessage: function() {&eol; var params = {&eol; chat_id: Telegram.to,&eol; text: Telegram.message,&eol; disable_web_page_preview: true,&eol; disable_notification: false&eol; },&eol; data,&eol; response,&eol; request = new CurlHttpRequest(),&eol; url = 'https://api.telegram.org/bot' + Telegram.token + '/sendMessage';&eol;&eol; if (Telegram.parse_mode !== null) {&eol; params['parse_mode'] = Telegram.parse_mode;&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; data = JSON.stringify(params);&eol;&eol; // Remove replace() function if you want to see the exposed token in the log file.&eol; Zabbix.Log(4, '[Telegram Webhook] URL: ' + url.replace(Telegram.token, '<TOKEN>'));&eol; Zabbix.Log(4, '[Telegram Webhook] params: ' + data);&eol; response = request.Post(url, data);&eol; Zabbix.Log(4, '[Telegram Webhook] HTTP code: ' + request.Status());&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; response = null;&eol; }&eol;&eol; if (request.Status() !== 200 &pipe;&pipe; typeof response.ok !== 'boolean' &pipe;&pipe; response.ok !== true) {&eol; if (typeof response.description === 'string') {&eol; throw response.description;&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.'&eol; }&eol; }&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.Token === 'undefined') {&eol; throw 'Incorrect value is given for parameter "Token": parameter is missing';&eol; }&eol;&eol; Telegram.token = params.Token;&eol;&eol; if (['Markdown', 'HTML', 'MarkdownV2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.parse_mode = params.ParseMode;&eol; }&eol;&eol; Telegram.to = params.To;&eol; Telegram.message = params.Subject + '\n' + params.Message;&eol; Telegram.sendMessage();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[Telegram Webhook] notification failed: ' + error);&eol; throw 'Sending failed: ' + error + '.';&eol;}|10s |0 |0 | | |https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram&eol;&eol;1. Register bot: send "/newbot" to @BotFather and follow instructions&eol;2. Copy and paste the obtained token into the "Token" field above&eol;3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:&eol; 3.1. Send "/getid" to "@myidbot" in Telegram messenger&eol; 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user&eol; 3.3. Ask the user to send "/start" to your bot (Telegram bot won't send anything to the user without it)&eol;4. If you want to send group notifications, you need to get group id of the group you want to send messages to:&eol; 4.1. Add "@myidbot" to your group&eol; 4.2. Send "/getgroupid@myidbot" in your group&eol; 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications&eol; 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won't send anything to the group without it)|
+ROW |17 |4 |Zendesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zendesk = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zendesk.params = params;&eol; if (typeof Zendesk.params.url === 'string') {&eol; if (!Zendesk.params.url.endsWith('/')) {&eol; Zendesk.params.url += '/';&eol; }&eol; Zendesk.params.url += 'api/v2/';&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Zendesk.getSchema(),&eol; arr = [],&eol; i,&eol; n;&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (i = 0, n = schema.ticket_fields.length; i < n; i++) {&eol; if (schema.ticket_fields[i].id == field&eol; && ['text', 'integer', 'date'].indexOf(schema.ticket_fields[i].type) !== -1){&eol;&eol; switch (schema.ticket_fields[i].type) {&eol; case 'integer':&eol; fields[field] = parseInt(fields[field]);&eol; break;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/) !== null) {&eol; fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; fields[field] = '';&eol; }&eol; break;&eol; }&eol;&eol; arr.push({id: field, value: fields[field]});&eol; break;&eol; }&eol; }&eol; });&eol;&eol; if (arr.length) {&eol; data.ticket['custom_fields'] = arr;&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'token', 'type'].forEach(function (field) {&eol; if (typeof Zendesk.params !== 'object' &pipe;&pipe; typeof Zendesk.params[field] === 'undefined') {&eol; throw 'Required Zendesk param is not set: ' + field + '\n' + Zendesk.params[field];&eol; }&eol; });&eol;&eol; var response,&eol; url = Zendesk.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Zendesk.params.token));&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[Zendesk Webhook] Sending request: ' + url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[Zendesk Webhook] Received response with status code ' + request.Status() + '. ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to parse response received from Zendesk.');&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol; else if (response !== null && typeof response.description !== 'undefined'&eol; && Object.keys(response.description).length > 0) {&eol; message += ': ' + JSON.stringify(response.description);&eol; }&eol; else {&eol; message += '. ' + response;&eol; }&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Zendesk.request('get', 'ticket_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(data, fields) {&eol; var result = Zendesk.request('post', 'tickets.json', Zendesk.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.ticket.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zendesk issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.ticket.id;&eol; },&eol;&eol; updateIssue: function(data, fields) {&eol; Zendesk.request('put', 'tickets/' + Zendesk.params.issue_key + '.json', Zendesk.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; zendesk = {},&eol; update = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority,&eol; color;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zendesk_')) {&eol; zendesk[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter ' + key + ' cannot be empty.';&eol; }&eol; });&eol;&eol; // Possible values: question, incident, problems, task&eol; if (['question', 'incident', 'problem', 'task'].indexOf(params.zendesk_type) === -1) {&eol; throw 'Incorrect "zendesk_type" parameter given: ' + params.zendesk_type +&eol; '\nMust be one of question, incident, problem, task.';&eol; }&eol;&eol; // Possible values: 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; // Zendesk_issue_key must be a positive integer if an update action is being performed.&eol; if (params.event_source === '0' && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0' && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zendesk_issue_key)) &pipe;&pipe; parseInt(params.zendesk_issue_key) < 1 )) {&eol; throw 'Incorrect "zendesk_issue_key" parameter given: ' + params.zendesk_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; color = severities[params.event_nseverity].color;&eol; priority = params['severity_' + severities[params.event_nseverity].name] &pipe;&pipe; severities[7].name;&eol;&eol; Zendesk.setParams(zendesk);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_value !== '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol;&eol; Zendesk.createIssue(data, fields);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/') + 'tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id + '\n' + params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol; var key = Zendesk.createIssue(data, fields);&eol;&eol; result.tags.__zbx_zdk_issuekey = key;&eol; result.tags.__zbx_zdk_issuelink = params.zendesk_url +&eol; (params.zendesk_url.endsWith('/') ? '' : '/') + 'agent/tickets/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; data = {&eol; ticket: {&eol; type: Zendesk.params.type,&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; }&eol; }&eol; };&eol;&eol; Zendesk.updateIssue(data, fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[Zendesk Webhook] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zdk_issuelink} |Zendesk: {EVENT.TAGS.__zbx_zdk_issuekey} | |
TABLE |media_type_param
-FIELDS|mediatype_paramid|mediatypeid|name |value |
-ROW |1 |5 |zabbix_url |{$ZABBIX.URL} |
-ROW |2 |5 |bot_token |<YOUR BOT TOKEN> |
-ROW |3 |5 |mattermost_url |<YOUR MATTERMOST URL> |
-ROW |4 |5 |send_mode |alarm |
-ROW |5 |5 |send_to |{ALERT.SENDTO} |
-ROW |6 |5 |event_tags |{EVENT.TAGS} |
-ROW |7 |5 |event_name |{EVENT.NAME} |
-ROW |8 |5 |event_nseverity |{EVENT.NSEVERITY} |
-ROW |9 |5 |event_ack_status |{EVENT.ACK.STATUS} |
-ROW |10 |5 |event_value |{EVENT.VALUE} |
-ROW |11 |5 |event_update_status |{EVENT.UPDATE.STATUS} |
-ROW |12 |5 |event_date |{EVENT.DATE} |
-ROW |13 |5 |event_time |{EVENT.TIME} |
-ROW |14 |5 |event_severity |{EVENT.SEVERITY} |
-ROW |15 |5 |event_opdata |{EVENT.OPDATA} |
-ROW |16 |5 |event_id |{EVENT.ID} |
-ROW |17 |5 |event_update_message|{EVENT.UPDATE.MESSAGE} |
-ROW |18 |5 |trigger_id |{TRIGGER.ID} |
-ROW |19 |5 |trigger_description |{TRIGGER.DESCRIPTION} |
-ROW |20 |5 |host_name |{HOST.NAME} |
-ROW |21 |5 |host_ip |{HOST.IP} |
-ROW |22 |5 |event_update_date |{EVENT.UPDATE.DATE} |
-ROW |23 |5 |event_update_time |{EVENT.UPDATE.TIME} |
-ROW |24 |5 |event_recovery_date |{EVENT.RECOVERY.DATE} |
-ROW |25 |5 |event_recovery_time |{EVENT.RECOVERY.TIME} |
-ROW |26 |6 |url |<put your opsgenie api url> |
-ROW |27 |6 |web |<put your opsgenie web url> |
-ROW |28 |6 |token |<put your key> |
-ROW |29 |6 |subject |{ALERT.SUBJECT} |
-ROW |30 |6 |message |{ALERT.MESSAGE} |
-ROW |31 |6 |eventid |{EVENT.ID} |
-ROW |32 |6 |severity |{EVENT.NSEVERITY} |
-ROW |33 |6 |user |{USER.FULLNAME} |
-ROW |34 |6 |eventvalue |{EVENT.VALUE} |
-ROW |35 |6 |eventupdate |{EVENT.UPDATE.STATUS} |
-ROW |36 |6 |eventaction |{EVENT.UPDATE.ACTION} |
-ROW |37 |6 |zbxurl |{$ZABBIX.URL} |
-ROW |38 |6 |triggerid |{TRIGGER.ID} |
-ROW |39 |7 |token |<put your key> |
-ROW |40 |7 |eventid |{EVENT.ID} |
-ROW |41 |7 |eventname |{EVENT.NAME} |
-ROW |42 |7 |hostname |{HOST.NAME} |
-ROW |43 |7 |hostip |{HOST.IP} |
-ROW |44 |7 |severity |{EVENT.NSEVERITY} |
-ROW |45 |7 |triggerdesc |{TRIGGER.DESCRIPTION} |
-ROW |46 |7 |triggeropdata |{EVENT.OPDATA} |
-ROW |47 |7 |eventtags |{EVENT.TAGS} |
-ROW |48 |7 |triggerid |{TRIGGER.ID} |
-ROW |49 |7 |eventdate |{EVENT.DATE} |
-ROW |50 |7 |eventtime |{EVENT.TIME} |
-ROW |52 |7 |eventack |{EVENT.ACK.STATUS} |
-ROW |53 |7 |eventupdate |{EVENT.UPDATE.STATUS} |
-ROW |54 |7 |eventvalue |{EVENT.VALUE} |
-ROW |55 |7 |url |{$ZABBIX.URL} |
-ROW |56 |8 |token |<PUSHOVER TOKEN HERE> |
-ROW |57 |8 |user |{ALERT.SENDTO} |
-ROW |58 |8 |message |{ALERT.MESSAGE} |
-ROW |59 |8 |title |{ALERT.SUBJECT} |
-ROW |60 |8 |url |{$ZABBIX.URL} |
-ROW |61 |8 |url_title |Zabbix |
-ROW |62 |8 |priority |0 |
-ROW |63 |8 |eventid |{EVENT.ID} |
-ROW |64 |8 |triggerid |{TRIGGER.ID} |
-ROW |65 |9 |zabbix_url |{$ZABBIX.URL} |
-ROW |66 |9 |bot_token |<PLACE YOUR KEY HERE> |
-ROW |67 |9 |channel |{ALERT.SENDTO} |
-ROW |68 |9 |slack_mode |alarm |
-ROW |69 |9 |slack_as_user |true |
-ROW |70 |9 |slack_endpoint |https://slack.com/api/ |
-ROW |71 |9 |event_tags |{EVENT.TAGS} |
-ROW |72 |9 |event_name |{EVENT.NAME} |
-ROW |73 |9 |event_nseverity |{EVENT.NSEVERITY} |
-ROW |74 |9 |event_ack_status |{EVENT.ACK.STATUS} |
-ROW |75 |9 |event_value |{EVENT.VALUE} |
-ROW |76 |9 |event_update_status |{EVENT.UPDATE.STATUS} |
-ROW |77 |9 |event_date |{EVENT.DATE} |
-ROW |78 |9 |event_time |{EVENT.TIME} |
-ROW |79 |9 |event_severity |{EVENT.SEVERITY} |
-ROW |80 |9 |event_opdata |{EVENT.OPDATA} |
-ROW |81 |9 |event_id |{EVENT.ID} |
-ROW |82 |9 |event_update_message|{EVENT.UPDATE.MESSAGE} |
-ROW |83 |9 |trigger_id |{TRIGGER.ID} |
-ROW |84 |9 |trigger_description |{TRIGGER.DESCRIPTION} |
-ROW |85 |9 |host_name |{HOST.NAME} |
-ROW |86 |9 |host_ip |{HOST.IP} |
-ROW |87 |9 |event_update_date |{EVENT.UPDATE.DATE} |
-ROW |88 |9 |event_update_time |{EVENT.UPDATE.TIME} |
-ROW |89 |9 |event_recovery_date |{EVENT.RECOVERY.DATE} |
-ROW |90 |9 |event_recovery_time |{EVENT.RECOVERY.TIME} |
-ROW |91 |10 |zabbix_url |{$ZABBIX.URL} |
-ROW |92 |10 |discord_endpoint |{ALERT.SENDTO} |
-ROW |93 |10 |use_default_message |false |
-ROW |94 |10 |alert_message |{ALERT.MESSAGE} |
-ROW |95 |10 |alert_subject |{ALERT.SUBJECT} |
-ROW |96 |10 |event_name |{EVENT.NAME} |
-ROW |97 |10 |event_id |{EVENT.ID} |
-ROW |98 |10 |event_severity |{EVENT.SEVERITY} |
-ROW |99 |10 |event_nseverity |{EVENT.NSEVERITY} |
-ROW |100 |10 |event_opdata |{EVENT.OPDATA} |
-ROW |101 |10 |event_tags |{EVENT.TAGS} |
-ROW |102 |10 |event_time |{EVENT.TIME} |
-ROW |103 |10 |event_date |{EVENT.DATE} |
-ROW |104 |10 |event_recovery_date |{EVENT.RECOVERY.DATE} |
-ROW |105 |10 |event_recovery_time |{EVENT.RECOVERY.TIME} |
-ROW |106 |10 |event_update_date |{EVENT.UPDATE.DATE} |
-ROW |107 |10 |event_update_time |{EVENT.UPDATE.TIME} |
-ROW |108 |10 |event_update_action |{EVENT.UPDATE.ACTION} |
-ROW |109 |10 |event_update_message|{EVENT.UPDATE.MESSAGE} |
-ROW |110 |10 |event_update_status |{EVENT.UPDATE.STATUS} |
-ROW |111 |10 |event_update_user |{USER.FULLNAME} |
-ROW |112 |10 |event_value |{EVENT.VALUE} |
-ROW |113 |10 |host_ip |{HOST.IP} |
-ROW |114 |10 |host_name |{HOST.NAME} |
-ROW |115 |10 |trigger_description |{TRIGGER.DESCRIPTION} |
-ROW |116 |10 |trigger_id |{TRIGGER.ID} |
-ROW |117 |8 |endpoint |https://api.pushover.net/1/messages.json|
-ROW |118 |8 |retry |60 |
-ROW |119 |8 |expire |1200 |
-ROW |120 |11 |teamsecret |{ALERT.SENDTO} |
-ROW |121 |11 |Subject |{ALERT.SUBJECT} |
-ROW |122 |11 |Message |{ALERT.MESSAGE} |
-ROW |123 |11 |Severity |{EVENT.SEVERITY} |
-ROW |124 |11 |X-S4-ExternalID |Zabbix event id: {EVENT.ID} |
-ROW |125 |11 |Hostname |{HOST.NAME} |
-ROW |126 |11 |Host IP |{HOST.IP} |
+FIELDS|mediatype_paramid|mediatypeid|name |value |
+ROW |1 |5 |zabbix_url |{$ZABBIX.URL} |
+ROW |2 |5 |bot_token |<YOUR BOT TOKEN> |
+ROW |3 |5 |mattermost_url |<YOUR MATTERMOST URL> |
+ROW |4 |5 |send_mode |alarm |
+ROW |5 |5 |send_to |{ALERT.SENDTO} |
+ROW |6 |5 |event_tags |{EVENT.TAGS} |
+ROW |7 |5 |event_name |{EVENT.NAME} |
+ROW |8 |5 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |9 |5 |event_ack_status |{EVENT.ACK.STATUS} |
+ROW |10 |5 |event_value |{EVENT.VALUE} |
+ROW |11 |5 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |12 |5 |event_date |{EVENT.DATE} |
+ROW |13 |5 |event_time |{EVENT.TIME} |
+ROW |14 |5 |event_severity |{EVENT.SEVERITY} |
+ROW |15 |5 |event_opdata |{EVENT.OPDATA} |
+ROW |16 |5 |event_id |{EVENT.ID} |
+ROW |17 |5 |event_update_message |{EVENT.UPDATE.MESSAGE} |
+ROW |18 |5 |trigger_id |{TRIGGER.ID} |
+ROW |19 |5 |trigger_description |{TRIGGER.DESCRIPTION} |
+ROW |20 |5 |host_name |{HOST.NAME} |
+ROW |21 |5 |host_ip |{HOST.IP} |
+ROW |22 |5 |event_update_date |{EVENT.UPDATE.DATE} |
+ROW |23 |5 |event_update_time |{EVENT.UPDATE.TIME} |
+ROW |24 |5 |event_recovery_date |{EVENT.RECOVERY.DATE} |
+ROW |25 |5 |event_recovery_time |{EVENT.RECOVERY.TIME} |
+ROW |26 |6 |url |<put your opsgenie api url> |
+ROW |27 |6 |web |<put your opsgenie web url> |
+ROW |28 |6 |token |<put your key> |
+ROW |29 |6 |subject |{ALERT.SUBJECT} |
+ROW |30 |6 |message |{ALERT.MESSAGE} |
+ROW |31 |6 |eventid |{EVENT.ID} |
+ROW |32 |6 |severity |{EVENT.NSEVERITY} |
+ROW |33 |6 |user |{USER.FULLNAME} |
+ROW |34 |6 |eventvalue |{EVENT.VALUE} |
+ROW |35 |6 |eventupdate |{EVENT.UPDATE.STATUS} |
+ROW |36 |6 |eventaction |{EVENT.UPDATE.ACTION} |
+ROW |37 |6 |zbxurl |{$ZABBIX.URL} |
+ROW |38 |6 |triggerid |{TRIGGER.ID} |
+ROW |39 |7 |token |<put your key> |
+ROW |40 |7 |eventid |{EVENT.ID} |
+ROW |41 |7 |eventname |{EVENT.NAME} |
+ROW |42 |7 |hostname |{HOST.NAME} |
+ROW |43 |7 |hostip |{HOST.IP} |
+ROW |44 |7 |severity |{EVENT.NSEVERITY} |
+ROW |45 |7 |triggerdesc |{TRIGGER.DESCRIPTION} |
+ROW |46 |7 |triggeropdata |{EVENT.OPDATA} |
+ROW |47 |7 |eventtags |{EVENT.TAGS} |
+ROW |48 |7 |triggerid |{TRIGGER.ID} |
+ROW |49 |7 |eventdate |{EVENT.DATE} |
+ROW |50 |7 |eventtime |{EVENT.TIME} |
+ROW |52 |7 |eventack |{EVENT.ACK.STATUS} |
+ROW |53 |7 |eventupdate |{EVENT.UPDATE.STATUS} |
+ROW |54 |7 |eventvalue |{EVENT.VALUE} |
+ROW |55 |7 |url |{$ZABBIX.URL} |
+ROW |56 |8 |token |<PUSHOVER TOKEN HERE> |
+ROW |57 |8 |user |{ALERT.SENDTO} |
+ROW |58 |8 |message |{ALERT.MESSAGE} |
+ROW |59 |8 |title |{ALERT.SUBJECT} |
+ROW |60 |8 |url |{$ZABBIX.URL} |
+ROW |61 |8 |url_title |Zabbix |
+ROW |62 |8 |priority |0 |
+ROW |63 |8 |eventid |{EVENT.ID} |
+ROW |64 |8 |triggerid |{TRIGGER.ID} |
+ROW |65 |9 |zabbix_url |{$ZABBIX.URL} |
+ROW |66 |9 |bot_token |<PLACE YOUR KEY HERE> |
+ROW |67 |9 |channel |{ALERT.SENDTO} |
+ROW |68 |9 |slack_mode |alarm |
+ROW |69 |9 |slack_as_user |true |
+ROW |70 |9 |slack_endpoint |https://slack.com/api/ |
+ROW |71 |9 |event_tags |{EVENT.TAGS} |
+ROW |72 |9 |event_name |{EVENT.NAME} |
+ROW |73 |9 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |74 |9 |event_ack_status |{EVENT.ACK.STATUS} |
+ROW |75 |9 |event_value |{EVENT.VALUE} |
+ROW |76 |9 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |77 |9 |event_date |{EVENT.DATE} |
+ROW |78 |9 |event_time |{EVENT.TIME} |
+ROW |79 |9 |event_severity |{EVENT.SEVERITY} |
+ROW |80 |9 |event_opdata |{EVENT.OPDATA} |
+ROW |81 |9 |event_id |{EVENT.ID} |
+ROW |82 |9 |event_update_message |{EVENT.UPDATE.MESSAGE} |
+ROW |83 |9 |trigger_id |{TRIGGER.ID} |
+ROW |84 |9 |trigger_description |{TRIGGER.DESCRIPTION} |
+ROW |85 |9 |host_name |{HOST.NAME} |
+ROW |86 |9 |host_ip |{HOST.IP} |
+ROW |87 |9 |event_update_date |{EVENT.UPDATE.DATE} |
+ROW |88 |9 |event_update_time |{EVENT.UPDATE.TIME} |
+ROW |89 |9 |event_recovery_date |{EVENT.RECOVERY.DATE} |
+ROW |90 |9 |event_recovery_time |{EVENT.RECOVERY.TIME} |
+ROW |91 |10 |zabbix_url |{$ZABBIX.URL} |
+ROW |92 |10 |discord_endpoint |{ALERT.SENDTO} |
+ROW |93 |10 |use_default_message |false |
+ROW |94 |10 |alert_message |{ALERT.MESSAGE} |
+ROW |95 |10 |alert_subject |{ALERT.SUBJECT} |
+ROW |96 |10 |event_name |{EVENT.NAME} |
+ROW |97 |10 |event_id |{EVENT.ID} |
+ROW |98 |10 |event_severity |{EVENT.SEVERITY} |
+ROW |99 |10 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |100 |10 |event_opdata |{EVENT.OPDATA} |
+ROW |101 |10 |event_tags |{EVENT.TAGS} |
+ROW |102 |10 |event_time |{EVENT.TIME} |
+ROW |103 |10 |event_date |{EVENT.DATE} |
+ROW |104 |10 |event_recovery_date |{EVENT.RECOVERY.DATE} |
+ROW |105 |10 |event_recovery_time |{EVENT.RECOVERY.TIME} |
+ROW |106 |10 |event_update_date |{EVENT.UPDATE.DATE} |
+ROW |107 |10 |event_update_time |{EVENT.UPDATE.TIME} |
+ROW |108 |10 |event_update_action |{EVENT.UPDATE.ACTION} |
+ROW |109 |10 |event_update_message |{EVENT.UPDATE.MESSAGE} |
+ROW |110 |10 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |111 |10 |event_update_user |{USER.FULLNAME} |
+ROW |112 |10 |event_value |{EVENT.VALUE} |
+ROW |113 |10 |host_ip |{HOST.IP} |
+ROW |114 |10 |host_name |{HOST.NAME} |
+ROW |115 |10 |trigger_description |{TRIGGER.DESCRIPTION} |
+ROW |116 |10 |trigger_id |{TRIGGER.ID} |
+ROW |117 |8 |endpoint |https://api.pushover.net/1/messages.json |
+ROW |118 |8 |retry |60 |
+ROW |119 |8 |expire |1200 |
+ROW |120 |11 |teamsecret |{ALERT.SENDTO} |
+ROW |121 |11 |Subject |{ALERT.SUBJECT} |
+ROW |122 |11 |Message |{ALERT.MESSAGE} |
+ROW |123 |11 |Severity |{EVENT.SEVERITY} |
+ROW |124 |11 |X-S4-ExternalID |Zabbix event id: {EVENT.ID} |
+ROW |125 |11 |Hostname |{HOST.NAME} |
+ROW |126 |11 |Host IP |{HOST.IP} |
+ROW |127 |12 |alert_message |{ALERT.MESSAGE} |
+ROW |128 |12 |alert_subject |{ALERT.SUBJECT} |
+ROW |129 |12 |event_recovery_value |{EVENT.RECOVERY.VALUE} |
+ROW |130 |12 |event_source |{EVENT.SOURCE} |
+ROW |131 |12 |event_tags_json |{EVENT.TAGSJSON} |
+ROW |132 |12 |event_update_action |{EVENT.UPDATE.ACTION} |
+ROW |133 |12 |event_update_message |{EVENT.UPDATE.MESSAGE} |
+ROW |134 |12 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |135 |12 |event_update_user |{USER.FULLNAME} |
+ROW |136 |12 |event_value |{EVENT.VALUE} |
+ROW |137 |12 |jira_issue_key |{EVENT.TAGS.__zbx_jira_issuekey} |
+ROW |138 |12 |jira_issue_type |<PLACE ISSUETYPE NAME> |
+ROW |139 |12 |jira_password |<PLACE PASSWORD OR TOKEN> |
+ROW |140 |12 |jira_project_key |<PLACE PROJECT KEY> |
+ROW |141 |12 |jira_url |<PLACE YOUR JIRA URL> |
+ROW |142 |12 |jira_user |<PLACE LOGIN> |
+ROW |143 |12 |trigger_description |{TRIGGER.DESCRIPTION} |
+ROW |144 |13 |<'DATETIME' CUSTOMFIELD FOR EVENT RECOVERY TIME>|{EVENT.RECOVERY.DATE}T{EVENT.RECOVERY.TIME} |
+ROW |145 |13 |<'DATETIME' CUSTOMFIELD FOR EVENT TIME> |{EVENT.DATE}T{EVENT.TIME} |
+ROW |146 |13 |<'NUMBER' CUSTOMFIELD FOR EVENT.ID> |{EVENT.ID} |
+ROW |147 |13 |<'NUMBER' CUSTOMFIELD FOR TRIGGER.ID> |{TRIGGER.ID} |
+ROW |148 |13 |<'STRING' CUSTOMFIELD FOR HOST\IP> |{HOST.HOST} [{HOST.IP}] |
+ROW |149 |13 |<'STRING' CUSTOMFIELD FOR OPERATIONAL DATA> |{EVENT.OPDATA} |
+ROW |150 |13 |<'STRING' CUSTOMFIELD FOR SEVERITY> |{EVENT.SEVERITY} |
+ROW |151 |13 |<'URL' CUSTOMFIELD FOR EVENT URL> |{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}|
+ROW |152 |13 |alert_message |{ALERT.MESSAGE} |
+ROW |153 |13 |alert_subject |{ALERT.SUBJECT} |
+ROW |154 |13 |event_recovery_value |{EVENT.RECOVERY.VALUE} |
+ROW |155 |13 |event_source |{EVENT.SOURCE} |
+ROW |156 |13 |event_tags_json |{EVENT.TAGSJSON} |
+ROW |157 |13 |event_update_action |{EVENT.UPDATE.ACTION} |
+ROW |158 |13 |event_update_message |{EVENT.UPDATE.MESSAGE} |
+ROW |159 |13 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |160 |13 |event_update_user |{USER.FULLNAME} |
+ROW |161 |13 |event_value |{EVENT.VALUE} |
+ROW |162 |13 |jira_issue_key |{EVENT.TAGS.__zbx_jira_issuekey} |
+ROW |163 |13 |jira_issue_type |<PLACE ISSUETYPE NAME> |
+ROW |164 |13 |jira_password |<PLACE PASSWORD OR TOKEN> |
+ROW |165 |13 |jira_project_key |<PLACE PROJECT KEY> |
+ROW |166 |13 |jira_url |<PLACE YOUR JIRA URL> |
+ROW |167 |13 |jira_user |<PLACE LOGIN> |
+ROW |168 |13 |trigger_description |{TRIGGER.DESCRIPTION} |
+ROW |169 |14 |alert_message |{ALERT.MESSAGE} |
+ROW |170 |14 |alert_subject |{ALERT.SUBJECT} |
+ROW |171 |14 |event_date |{EVENT.DATE} |
+ROW |172 |14 |event_id |{EVENT.ID} |
+ROW |173 |14 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |174 |14 |event_opdata |{EVENT.OPDATA} |
+ROW |175 |14 |event_recovery_date |{EVENT.RECOVERY.DATE} |
+ROW |176 |14 |event_recovery_time |{EVENT.RECOVERY.TIME} |
+ROW |177 |14 |event_severity |{EVENT.SEVERITY} |
+ROW |178 |14 |event_source |{EVENT.SOURCE} |
+ROW |179 |14 |event_status |{EVENT.STATUS} |
+ROW |180 |14 |event_tags |{EVENT.TAGS} |
+ROW |181 |14 |event_time |{EVENT.TIME} |
+ROW |182 |14 |event_update_action |{EVENT.UPDATE.ACTION} |
+ROW |183 |14 |event_update_date |{EVENT.UPDATE.DATE} |
+ROW |184 |14 |event_update_message |{EVENT.UPDATE.MESSAGE} |
+ROW |185 |14 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |186 |14 |event_update_time |{EVENT.UPDATE.TIME} |
+ROW |187 |14 |event_update_user |{USER.FULLNAME} |
+ROW |188 |14 |event_value |{EVENT.VALUE} |
+ROW |189 |14 |host_ip |{HOST.IP} |
+ROW |190 |14 |host_name |{HOST.NAME} |
+ROW |191 |14 |teams_endpoint |<PLACE WEBHOOK URL HERE> |
+ROW |192 |14 |trigger_description |{TRIGGER.DESCRIPTION} |
+ROW |193 |14 |trigger_id |{TRIGGER.ID} |
+ROW |194 |14 |use_default_message |false |
+ROW |195 |14 |zabbix_url |{$ZABBIX.URL} |
+ROW |196 |15 |alert_message |{ALERT.MESSAGE} |
+ROW |197 |15 |alert_subject |{ALERT.SUBJECT} |
+ROW |198 |15 |event_id |{EVENT.ID} |
+ROW |199 |15 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |200 |15 |event_source |{EVENT.SOURCE} |
+ROW |201 |15 |event_update_message |{EVENT.UPDATE.MESSAGE} |
+ROW |202 |15 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |203 |15 |event_value |{EVENT.VALUE} |
+ROW |204 |15 |redmine_access_key |<PUT YOUR ACCESS KEY> |
+ROW |205 |15 |redmine_issue_key |{EVENT.TAGS.__zbx_redmine_issue_id} |
+ROW |206 |15 |redmine_project |<PUT YOUR PROJECT ID OR NAME> |
+ROW |207 |15 |redmine_tracker_id |<PUT YOUR TRACKER ID> |
+ROW |208 |15 |redmine_url |<PUT YOUR REDMINE URL> |
+ROW |209 |15 |trigger_id |{TRIGGER.ID} |
+ROW |210 |15 |zabbix_url |{$ZABBIX.URL} |
+ROW |211 |16 |Message |{ALERT.MESSAGE} |
+ROW |212 |16 |ParseMode | |
+ROW |213 |16 |Subject |{ALERT.SUBJECT} |
+ROW |214 |16 |To |{ALERT.SENDTO} |
+ROW |215 |16 |Token |<PLACE YOUR TOKEN> |
+ROW |216 |17 |alert_message |{ALERT.MESSAGE} |
+ROW |217 |17 |alert_subject |{ALERT.SUBJECT} |
+ROW |218 |17 |event_id |{EVENT.ID} |
+ROW |219 |17 |event_nseverity |{EVENT.NSEVERITY} |
+ROW |220 |17 |event_source |{EVENT.SOURCE} |
+ROW |221 |17 |event_tags |{EVENT.TAGS} |
+ROW |222 |17 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |223 |17 |event_value |{EVENT.VALUE} |
+ROW |224 |17 |severity_average |normal |
+ROW |225 |17 |severity_default |- |
+ROW |226 |17 |severity_disaster |urgent |
+ROW |227 |17 |severity_high |high |
+ROW |228 |17 |severity_information |low |
+ROW |229 |17 |severity_not_classified |low |
+ROW |230 |17 |severity_warning |normal |
+ROW |231 |17 |trigger_id |{TRIGGER.ID} |
+ROW |232 |17 |zbxurl |{$ZABBIX.URL} |
+ROW |233 |17 |zendesk_issue_key |{EVENT.TAGS.__zbx_zdk_issuekey} |
+ROW |234 |17 |zendesk_token |<put your {enduser_email_address}/token:{api_token}> |
+ROW |235 |17 |zendesk_type |incident |
+ROW |236 |17 |zendesk_url |<put your Zendesk URL> |
TABLE |media_type_message
FIELDS|mediatype_messageid|mediatypeid|eventsource|recovery|subject |message |
@@ -205,10 +321,41 @@ ROW |13 |4 |0 |2 |Updated problem in {
ROW |14 |4 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|<b>Discovery rule:</b> {DISCOVERY.RULE.NAME}<br><br><b>Device IP:</b> {DISCOVERY.DEVICE.IPADDRESS}<br><b>Device DNS:</b> {DISCOVERY.DEVICE.DNS}<br><b>Device status:</b> {DISCOVERY.DEVICE.STATUS}<br><b>Device uptime:</b> {DISCOVERY.DEVICE.UPTIME}<br><br><b>Device service name:</b> {DISCOVERY.SERVICE.NAME}<br><b>Device service port:</b> {DISCOVERY.SERVICE.PORT}<br><b>Device service status:</b> {DISCOVERY.SERVICE.STATUS}<br><b>Device service uptime:</b> {DISCOVERY.SERVICE.UPTIME}|
ROW |15 |4 |2 |0 |Autoregistration: {HOST.HOST} |<b>Host name:</b> {HOST.HOST}<br><b>Host IP:</b> {HOST.IP}<br><b>Agent port:</b> {HOST.PORT} |
ROW |16 |11 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |17 |11 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |18 |11 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |17 |11 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |18 |11 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
ROW |19 |11 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
ROW |20 |11 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |21 |12 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |22 |12 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |23 |12 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |24 |12 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |25 |12 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |26 |13 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |27 |13 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |28 |13 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |29 |13 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |30 |13 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |31 |14 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |32 |14 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |33 |14 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |34 |14 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |35 |14 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |36 |15 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |37 |15 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |38 |15 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |39 |15 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |40 |15 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |41 |16 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |42 |16 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |43 |16 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |44 |16 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |45 |16 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |46 |17 |0 |0 |{EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |47 |17 |0 |1 |{EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |48 |17 |0 |2 |{EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |49 |17 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |50 |17 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |51 |17 |3 |0 |Internal problem: {EVENT.NAME} |Internal problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID} |
TABLE |usrgrp
FIELDS|usrgrpid|name |gui_access|users_status|debug_mode|
@@ -219,10 +366,10 @@ ROW |11 |Enabled debug mode |0 |0 |1 |
ROW |12 |No access to the frontend|3 |0 |0 |
TABLE |users_groups
-FIELDS|id|usrgrpid|userid|
-ROW |2 |8 |2 |
-ROW |3 |9 |2 |
-ROW |4 |7 |1 |
+FIELDS|id |usrgrpid|userid|
+ROW |2 |8 |2 |
+ROW |3 |9 |2 |
+ROW |4 |7 |1 |
TABLE |scripts
FIELDS|scriptid|name |command |host_access|usrgrpid|groupid|description|confirmation|type|execute_on|
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index f1d1442c28a..8c7cc08783c 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -161,19 +161,19 @@ ROW |10315 |NULL |Template Module Windows services by Zabbix agent acti
ROW |10316 |NULL |Template DB MySQL by Zabbix agent |3 |-1 |2 | | |Template DB MySQL by Zabbix agent |0 |NULL |Requirements for template operation:&eol;1.Install Zabbix agent and MySQL client.&eol;2.Copy Template_DB_MySQL.conf into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don't forget restart zabbix-agent. &eol;3.Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT USAGE,REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;4.Create .my.cnf in home directory of Zabbix agent for Linux (/var/lib/zabbix by default ) or my.cnf in c:\ for Windows. For example:&eol;[client]&eol;user='zbx_monitor'&eol;password='<password>'&eol;&eol;&eol;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&eol;&eol;Template tooling version used: 0.35|1 |1 | | | | | |1 |
ROW |10317 |NULL |Template DB MySQL by ODBC |3 |-1 |2 | | |Template DB MySQL by ODBC |0 |NULL |Requirements for template operation:&eol;1.Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT USAGE,REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;2. Set the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;&eol;&eol;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&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
ROW |10318 |NULL |Template App Docker |3 |-1 |2 | | |Template App Docker |0 |NULL |Get Docker engine metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum &eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
-ROW |10319 |NULL |Template App Memcached |3 |-1 |2 | | |Template App Memcached |0 |NULL |Get Memcached metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
+ROW |10319 |NULL |Template App Memcached |3 |-1 |2 | | |Template App Memcached |0 |NULL |Get Memcached metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;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&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
ROW |10320 |NULL |Template DB MySQL by Zabbix agent 2 |3 |-1 |2 | | |Template DB MySQL by Zabbix agent 2 |0 |NULL |Requirements for template operation:&eol;1.Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT USAGE,REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;2. Set in the {$MYSQL.DSN} macro the system data source name of the MySQL instance such as <protocol(host:port or /path/to/socket)/>.&eol;3. Set the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}) if you want to override parameters from the Zabbix agent configuration file.&eol;&eol;&eol;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&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
ROW |10321 |NULL |Template Server Chassis by IPMI |3 |-1 |2 | | |Template Server Chassis by IPMI |0 |NULL |Template for monitoring servers with BMC over IPMI that work without any external scripts. &eol;All metrics are collected at once, thanks to Zabbix's bulk data collection. The template is available starting from Zabbix version 5.0. &eol;It collects metrics by polling BMC remotely using an IPMI agent.&eol;&eol;&eol;Known Issues:&eol;&eol; Description: If the BMC has a sensor with an empty threshold value, we get the LLD error "Cannot create trigger...".&eol;&eol;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&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
TABLE |group_prototype
FIELDS|group_prototypeid|hostid|name |groupid|templateid|
-ROW |135 |10176 |{#CLUSTER.NAME} |NULL |NULL |
-ROW |136 |10176 |{#DATACENTER.NAME} |NULL |NULL |
-ROW |137 |10176 | |7 |NULL |
-ROW |138 |10177 |{#CLUSTER.NAME} (vm) |NULL |NULL |
-ROW |139 |10177 |{#DATACENTER.NAME} (vm)|NULL |NULL |
-ROW |140 |10177 |{#HV.NAME} |NULL |NULL |
-ROW |141 |10177 | |6 |NULL |
+ROW |142 |10176 |{#CLUSTER.NAME} |NULL |NULL |
+ROW |143 |10176 |{#DATACENTER.NAME} |NULL |NULL |
+ROW |144 |10176 | |7 |NULL |
+ROW |145 |10177 |{#CLUSTER.NAME} (vm) |NULL |NULL |
+ROW |146 |10177 |{#DATACENTER.NAME} (vm)|NULL |NULL |
+ROW |147 |10177 |{#HV.NAME} |NULL |NULL |
+ROW |148 |10177 | |6 |NULL |
TABLE |screens
FIELDS|screenid|name |hsize|vsize|templateid|userid|private|
@@ -231,228 +231,228 @@ ROW |59 |Docker overview |2 |5 |10318 |NULL |1
ROW |60 |MySQL performance |2 |3 |10320 |NULL |1 |
TABLE |screens_items
-FIELDS|screenitemid|screenid|resourcetype|resourceid|width|height|x|y|colspan|rowspan|elements|valign|halign|style|url|dynamic|sort_triggers|application|max_columns|
-ROW |44 |16 |2 |1 |500 |100 |0|0|2 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |1954 |20 |0 |862 |750 |200 |0|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |1955 |20 |0 |863 |750 |200 |1|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |1956 |20 |0 |860 |750 |200 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |1957 |20 |0 |859 |750 |200 |1|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |1958 |20 |0 |861 |750 |200 |0|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |1959 |20 |0 |864 |750 |200 |1|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2462 |25 |0 |832 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2463 |25 |0 |833 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2464 |25 |20 |830 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2465 |25 |20 |831 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2466 |25 |0 |834 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2467 |26 |0 |838 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2468 |26 |0 |839 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2469 |26 |20 |836 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2470 |26 |20 |837 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2471 |26 |0 |840 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2472 |59 |0 |1125 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2473 |59 |0 |1129 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2474 |59 |0 |1128 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2475 |59 |0 |1126 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2476 |59 |0 |1127 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2477 |48 |20 |1075 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2478 |49 |20 |1078 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2479 |49 |20 |1076 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2480 |49 |20 |1079 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2481 |49 |20 |1077 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2482 |50 |20 |1080 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2483 |51 |20 |1081 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2484 |52 |20 |1084 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2485 |52 |20 |1082 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2486 |52 |20 |1085 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2487 |52 |20 |1083 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2488 |53 |20 |1086 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2489 |27 |0 |841 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2490 |27 |0 |843 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2491 |27 |0 |842 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2492 |28 |0 |845 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2493 |28 |0 |847 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2494 |28 |0 |846 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2495 |38 |0 |1029 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2496 |38 |0 |1027 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2497 |38 |0 |1030 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2498 |38 |0 |1028 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2499 |38 |0 |1031 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2500 |39 |0 |1011 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2501 |39 |0 |1012 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2502 |39 |0 |1008 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2503 |39 |0 |1009 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2504 |39 |0 |1007 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2505 |39 |0 |1010 |750 |100 |1|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2506 |40 |0 |1018 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2507 |40 |0 |1016 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2508 |40 |0 |1019 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2509 |40 |0 |1017 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2510 |40 |0 |1020 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2511 |41 |0 |1025 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2512 |41 |0 |1026 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2513 |41 |0 |1022 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2514 |41 |0 |1023 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2515 |41 |0 |1021 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2516 |41 |0 |1024 |750 |100 |1|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2517 |22 |0 |806 |750 |212 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2518 |22 |0 |804 |750 |100 |1|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2519 |22 |0 |805 |750 |100 |0|1|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2520 |22 |0 |803 |750 |128 |1|1|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2521 |21 |0 |802 |750 |212 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2522 |21 |0 |799 |750 |100 |1|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2523 |21 |0 |800 |750 |114 |0|1|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2524 |21 |0 |798 |750 |128 |1|1|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2525 |21 |0 |797 |750 |160 |0|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2526 |21 |0 |801 |750 |160 |1|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2527 |17 |0 |532 |750 |212 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2528 |17 |0 |530 |750 |100 |1|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2529 |17 |0 |531 |750 |100 |0|1|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2530 |17 |0 |529 |750 |128 |1|1|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2531 |4 |0 |392 |750 |212 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2532 |4 |0 |404 |750 |100 |1|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2533 |4 |0 |406 |750 |114 |0|1|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2534 |4 |0 |410 |750 |128 |1|1|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2535 |4 |0 |527 |750 |160 |0|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2536 |4 |0 |788 |750 |160 |1|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2537 |5 |0 |469 |750 |148 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2538 |5 |0 |471 |750 |100 |1|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2539 |5 |0 |498 |750 |100 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2540 |5 |0 |540 |750 |100 |1|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2541 |7 |0 |463 |750 |120 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2542 |7 |0 |462 |750 |106 |1|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2543 |7 |0 |541 |750 |100 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2544 |7 |0 |464 |750 |300 |1|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2545 |6 |0 |475 |750 |114 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2546 |6 |0 |474 |750 |100 |1|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2547 |6 |0 |542 |750 |100 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2548 |18 |0 |487 |750 |100 |0|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2549 |18 |0 |543 |750 |100 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2550 |9 |0 |457 |750 |120 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2551 |9 |0 |456 |750 |106 |1|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2552 |9 |0 |544 |750 |100 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2553 |9 |0 |458 |750 |300 |1|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2554 |9 |1 |22838 |750 |100 |0|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2555 |9 |1 |22837 |750 |100 |1|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2556 |10 |0 |481 |750 |114 |0|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2557 |10 |0 |480 |750 |100 |1|0|1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2558 |10 |0 |545 |750 |100 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2559 |10 |0 |482 |750 |300 |1|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2560 |10 |1 |22998 |750 |100 |0|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2561 |10 |1 |22997 |750 |100 |1|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2562 |57 |0 |1112 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2563 |57 |0 |1113 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2564 |57 |0 |1110 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2565 |57 |0 |1109 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2566 |57 |0 |1111 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2567 |57 |0 |1114 |750 |100 |1|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2568 |60 |0 |1139 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2569 |60 |0 |1140 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2570 |60 |0 |1137 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2571 |60 |0 |1136 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2572 |60 |0 |1138 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2573 |60 |0 |1141 |750 |100 |1|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2574 |58 |0 |1118 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2575 |58 |0 |1119 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2576 |58 |0 |1116 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2577 |58 |0 |1115 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2578 |58 |0 |1117 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2579 |58 |0 |1120 |750 |100 |1|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2580 |23 |20 |821 |750 |200 |0|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2581 |23 |20 |816 |750 |200 |1|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2582 |23 |20 |814 |750 |200 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2583 |23 |20 |820 |750 |200 |1|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2584 |23 |20 |817 |750 |200 |0|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2585 |23 |20 |815 |750 |200 |1|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2586 |23 |20 |818 |750 |200 |0|3|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2587 |23 |20 |819 |750 |200 |1|3|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2588 |24 |0 |824 |750 |200 |0|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2589 |24 |0 |827 |750 |200 |1|0|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2590 |24 |0 |825 |750 |200 |0|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2591 |24 |0 |828 |750 |200 |1|1|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2592 |24 |0 |826 |750 |200 |0|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2593 |24 |0 |829 |750 |200 |1|2|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2594 |24 |0 |822 |750 |200 |0|3|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2595 |24 |0 |823 |750 |200 |1|3|1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2596 |54 |0 |1091 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2597 |54 |0 |1095 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2598 |54 |0 |1092 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2599 |54 |0 |1094 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2600 |54 |0 |1099 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2601 |54 |0 |1100 |750 |100 |1|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2602 |54 |0 |1101 |750 |100 |0|3|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2603 |54 |0 |1102 |750 |100 |1|3|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2604 |54 |20 |1090 |750 |100 |0|4|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2605 |55 |0 |1093 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2606 |55 |0 |1098 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2607 |55 |0 |1096 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2608 |55 |0 |1097 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2609 |56 |0 |1108 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2610 |56 |20 |1104 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2611 |56 |20 |1106 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2612 |47 |0 |1071 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2613 |47 |20 |1061 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2614 |47 |20 |1066 |750 |100 |0|2|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2615 |44 |20 |738 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2616 |45 |20 |741 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2617 |42 |20 |744 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2618 |43 |20 |745 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2619 |46 |20 |766 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2620 |3 |0 |903 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2621 |3 |0 |909 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2622 |3 |0 |918 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2623 |3 |0 |921 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2624 |3 |20 |888 |750 |100 |0|2|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2625 |3 |20 |891 |750 |100 |0|3|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2626 |3 |20 |894 |750 |100 |0|4|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2627 |3 |20 |897 |750 |100 |0|5|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2628 |3 |20 |900 |750 |100 |0|6|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2629 |30 |20 |899 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2630 |31 |20 |934 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2631 |32 |0 |937 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2632 |32 |0 |941 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2633 |32 |0 |947 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2634 |32 |0 |949 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2635 |32 |20 |927 |750 |100 |0|2|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2636 |32 |20 |929 |750 |100 |0|3|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2637 |32 |20 |931 |750 |100 |0|4|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2638 |32 |20 |933 |750 |100 |0|5|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2639 |32 |20 |935 |750 |100 |0|6|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2640 |33 |0 |957 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2641 |33 |0 |959 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2642 |33 |0 |962 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2643 |33 |0 |963 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2644 |33 |20 |953 |750 |100 |0|2|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2645 |33 |20 |954 |750 |100 |0|3|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2646 |33 |20 |955 |750 |100 |0|4|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2647 |33 |20 |956 |750 |100 |0|5|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2648 |33 |20 |952 |750 |100 |0|6|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2649 |34 |20 |952 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2650 |29 |0 |881 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2651 |29 |20 |869 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2652 |29 |0 |877 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2653 |29 |0 |879 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2654 |29 |20 |873 |750 |100 |0|2|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2655 |29 |20 |867 |750 |100 |0|3|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2656 |29 |19 |29033 |750 |100 |0|4|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2657 |29 |20 |865 |750 |100 |0|5|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2658 |19 |0 |977 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2659 |19 |1 |29485 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2660 |19 |0 |979 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2661 |19 |0 |981 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2662 |19 |20 |965 |750 |100 |0|2|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2663 |19 |20 |967 |750 |100 |0|3|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2664 |19 |20 |969 |750 |100 |0|4|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2665 |19 |20 |971 |750 |100 |0|5|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2666 |35 |20 |970 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2667 |36 |20 |988 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2668 |37 |0 |995 |750 |100 |0|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2669 |37 |1 |29592 |750 |100 |1|0|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2670 |37 |0 |997 |750 |100 |0|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2671 |37 |0 |999 |750 |100 |1|1|1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2672 |37 |20 |983 |750 |100 |0|2|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2673 |37 |20 |985 |750 |100 |0|3|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2674 |37 |20 |987 |750 |100 |0|4|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2675 |37 |20 |989 |750 |100 |0|5|2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+FIELDS|screenitemid|screenid|resourcetype|resourceid|width|height|x |y |colspan|rowspan|elements|valign|halign|style|url |dynamic|sort_triggers|application|max_columns|
+ROW |44 |16 |2 |1 |500 |100 |0 |0 |2 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |1954 |20 |0 |862 |750 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |1955 |20 |0 |863 |750 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |1956 |20 |0 |860 |750 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |1957 |20 |0 |859 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |1958 |20 |0 |861 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |1959 |20 |0 |864 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2676 |25 |0 |832 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2677 |25 |0 |833 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2678 |25 |20 |830 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2679 |25 |20 |831 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2680 |25 |0 |834 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2681 |26 |0 |838 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2682 |26 |0 |839 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2683 |26 |20 |836 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2684 |26 |20 |837 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2685 |26 |0 |840 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2686 |59 |0 |1125 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2687 |59 |0 |1129 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2688 |59 |0 |1128 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2689 |59 |0 |1126 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2690 |59 |0 |1127 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2691 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2692 |49 |20 |1078 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2693 |49 |20 |1076 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2694 |49 |20 |1079 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2695 |49 |20 |1077 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2696 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2697 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2698 |52 |20 |1084 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2699 |52 |20 |1082 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2700 |52 |20 |1085 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2701 |52 |20 |1083 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2702 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2703 |27 |0 |841 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2704 |27 |0 |843 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2705 |27 |0 |842 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2706 |28 |0 |845 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2707 |28 |0 |847 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2708 |28 |0 |846 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2709 |38 |0 |1029 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2710 |38 |0 |1027 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2711 |38 |0 |1030 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2712 |38 |0 |1028 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2713 |38 |0 |1031 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2714 |39 |0 |1011 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2715 |39 |0 |1012 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2716 |39 |0 |1008 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2717 |39 |0 |1009 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2718 |39 |0 |1007 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2719 |39 |0 |1010 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2720 |40 |0 |1018 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2721 |40 |0 |1016 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2722 |40 |0 |1019 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2723 |40 |0 |1017 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2724 |40 |0 |1020 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2725 |41 |0 |1025 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2726 |41 |0 |1026 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2727 |41 |0 |1022 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2728 |41 |0 |1023 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2729 |41 |0 |1021 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2730 |41 |0 |1024 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2731 |22 |0 |806 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2732 |22 |0 |804 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2733 |22 |0 |805 |750 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2734 |22 |0 |803 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2735 |21 |0 |802 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2736 |21 |0 |799 |750 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2737 |21 |0 |800 |750 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2738 |21 |0 |798 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2739 |21 |0 |797 |750 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2740 |21 |0 |801 |750 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2741 |17 |0 |532 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2742 |17 |0 |530 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2743 |17 |0 |531 |750 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2744 |17 |0 |529 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2745 |4 |0 |392 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2746 |4 |0 |404 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2747 |4 |0 |406 |750 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2748 |4 |0 |410 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2749 |4 |0 |527 |750 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2750 |4 |0 |788 |750 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2751 |5 |0 |469 |750 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2752 |5 |0 |471 |750 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2753 |5 |0 |498 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2754 |5 |0 |540 |750 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2755 |7 |0 |463 |750 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2756 |7 |0 |462 |750 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2757 |7 |0 |541 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2758 |7 |0 |464 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2759 |6 |0 |475 |750 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2760 |6 |0 |474 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2761 |6 |0 |542 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2762 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2763 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2764 |9 |0 |457 |750 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2765 |9 |0 |456 |750 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2766 |9 |0 |544 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2767 |9 |0 |458 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2768 |9 |1 |22838 |750 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2769 |9 |1 |22837 |750 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2770 |10 |0 |481 |750 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2771 |10 |0 |480 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |2772 |10 |0 |545 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2773 |10 |0 |482 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2774 |10 |1 |22998 |750 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2775 |10 |1 |22997 |750 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2776 |57 |0 |1112 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2777 |57 |0 |1113 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2778 |57 |0 |1110 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2779 |57 |0 |1109 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2780 |57 |0 |1111 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2781 |57 |0 |1114 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2782 |60 |0 |1139 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2783 |60 |0 |1140 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2784 |60 |0 |1137 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2785 |60 |0 |1136 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2786 |60 |0 |1138 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2787 |60 |0 |1141 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2788 |58 |0 |1118 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2789 |58 |0 |1119 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2790 |58 |0 |1116 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2791 |58 |0 |1115 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2792 |58 |0 |1117 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2793 |58 |0 |1120 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2794 |23 |20 |821 |750 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2795 |23 |20 |816 |750 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2796 |23 |20 |814 |750 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2797 |23 |20 |820 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2798 |23 |20 |817 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2799 |23 |20 |815 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2800 |23 |20 |818 |750 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2801 |23 |20 |819 |750 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2802 |24 |0 |824 |750 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2803 |24 |0 |827 |750 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2804 |24 |0 |825 |750 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2805 |24 |0 |828 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2806 |24 |0 |826 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2807 |24 |0 |829 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2808 |24 |0 |822 |750 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2809 |24 |0 |823 |750 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |2810 |54 |0 |1091 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2811 |54 |0 |1095 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2812 |54 |0 |1092 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2813 |54 |0 |1094 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2814 |54 |0 |1099 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2815 |54 |0 |1100 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2816 |54 |0 |1101 |750 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2817 |54 |0 |1102 |750 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2818 |54 |20 |1090 |750 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2819 |55 |0 |1093 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2820 |55 |0 |1098 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2821 |55 |0 |1096 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2822 |55 |0 |1097 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2823 |56 |0 |1108 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2824 |56 |20 |1104 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2825 |56 |20 |1106 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2826 |47 |0 |1071 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2827 |47 |20 |1061 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2828 |47 |20 |1066 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2829 |44 |20 |738 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2830 |45 |20 |741 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2831 |42 |20 |744 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2832 |43 |20 |745 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2833 |46 |20 |766 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2834 |3 |0 |903 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2835 |3 |0 |909 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2836 |3 |0 |918 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2837 |3 |0 |921 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2838 |3 |20 |888 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2839 |3 |20 |891 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2840 |3 |20 |894 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2841 |3 |20 |897 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2842 |3 |20 |900 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2843 |30 |20 |899 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2844 |31 |20 |934 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2845 |32 |0 |937 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2846 |32 |0 |941 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2847 |32 |0 |947 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2848 |32 |0 |949 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2849 |32 |20 |927 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2850 |32 |20 |929 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2851 |32 |20 |931 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2852 |32 |20 |933 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2853 |32 |20 |935 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2854 |33 |0 |957 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2855 |33 |0 |959 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2856 |33 |0 |962 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2857 |33 |0 |963 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2858 |33 |20 |953 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2859 |33 |20 |954 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2860 |33 |20 |955 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2861 |33 |20 |956 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2862 |33 |20 |952 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2863 |34 |20 |952 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2864 |29 |0 |881 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2865 |29 |20 |869 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2866 |29 |0 |877 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2867 |29 |0 |879 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2868 |29 |20 |873 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2869 |29 |20 |867 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2870 |29 |19 |29033 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2871 |29 |20 |865 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2872 |19 |0 |977 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2873 |19 |1 |29485 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2874 |19 |0 |979 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2875 |19 |0 |981 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2876 |19 |20 |965 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2877 |19 |20 |967 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2878 |19 |20 |969 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2879 |19 |20 |971 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2880 |35 |20 |970 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2881 |36 |20 |988 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2882 |37 |0 |995 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2883 |37 |1 |29592 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2884 |37 |0 |997 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2885 |37 |0 |999 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2886 |37 |20 |983 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2887 |37 |20 |985 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2888 |37 |20 |987 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |2889 |37 |20 |989 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
TABLE |applications
FIELDS|applicationid|hostid|name |flags|
@@ -1025,8 +1025,8 @@ ROW |1324 |10321 |General |0 |
ROW |1325 |10321 |Zabbix raw items |0 |
TABLE |interface
-FIELDS|interfaceid|hostid|main|type|useip|ip |dns|port |
-ROW |1 |10084 |1 |1 |1 |127.0.0.1| |10050|
+FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
+ROW |1 |10084 |1 |1 |1 |127.0.0.1| |10050|
TABLE |valuemaps
FIELDS|valuemapid|name |
@@ -4526,1460 +4526,1460 @@ FIELDS|optemplateid|operationid|templateid|
ROW |1 |1 |10001 |
TABLE |triggers
-FIELDS|triggerid|expression |description |url|status|priority|comments |templateid|type|flags|recovery_mode|recovery_expression |correlation_mode|correlation_tag|manual_close|opdata |
-ROW |13015 |{12641}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13017 |{12651}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13019 |{12649}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13023 |{12653}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13073 |{12645}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13074 |{12646}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13080 |{13164}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13164}<65 |0 | |0 | |
-ROW |13081 |{13170}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13170}<65 |0 | |0 | |
-ROW |13083 |{13172}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13172}<65 |0 | |0 | |
-ROW |13084 |{13174}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13174}<65 |0 | |0 | |
-ROW |13085 |{13176}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13176}<65 |0 | |0 | |
-ROW |13086 |{13178}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13178}<65 |0 | |0 | |
-ROW |13087 |{13180}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13180}<65 |0 | |0 | |
-ROW |13088 |{13182}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13182}<65 |0 | |0 | |
-ROW |13089 |{13184}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13184}<65 |0 | |0 | |
-ROW |13091 |{13188}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13188}<65 |0 | |0 | |
-ROW |13092 |{13190}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13190}<65 |0 | |0 | |
-ROW |13093 |{13192}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13192}<65 |0 | |0 | |
-ROW |13094 |{13198}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13198}<65 |0 | |0 | |
-ROW |13095 |{13200}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13200}<65 |0 | |0 | |
-ROW |13096 |{13202}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13202}<65 |0 | |0 | |
-ROW |13097 |{13204}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13204}<65 |0 | |0 | |
-ROW |13275 |{13186}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13186}<65 |0 | |0 | |
-ROW |13285 |{13159}=0 |Telnet service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13330 |{12717}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13331 |{12718}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13332 |{13089}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13333 |{13088}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13334 |{13087}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13336 |{12723}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13337 |{12724}<50 |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 | |
-ROW |13338 |{12725}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13339 |{12726}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13340 |{12727}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13341 |{12728}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13342 |{12729}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13343 |{12730}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13346 |{12733}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13347 |{12734}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13348 |{13074}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13349 |{13073}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13350 |{13072}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13352 |{12739}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13353 |{12740}<50 |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 | |
-ROW |13354 |{12741}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13355 |{12742}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13356 |{12743}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13357 |{12744}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13358 |{12745}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13359 |{12746}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13364 |{13071}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13365 |{13070}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13366 |{13069}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13367 |{13068}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13368 |{12755}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13370 |{12757}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13371 |{12758}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13372 |{12759}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13373 |{12760}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13374 |{12761}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13375 |{12762}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13382 |{13075}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13384 |{12771}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13386 |{12773}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13388 |{12775}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13389 |{12776}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13390 |{12777}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13391 |{12778}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13395 |{12782}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13396 |{13093}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13397 |{13092}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13398 |{13091}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13399 |{13090}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13400 |{12787}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13401 |{12788}<50 |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 | |
-ROW |13402 |{12789}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13403 |{12790}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13404 |{12791}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13405 |{12792}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13406 |{12793}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13407 |{12794}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13410 |{12797}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13411 |{12798}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13414 |{13086}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13416 |{12803}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13418 |{12805}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13419 |{12806}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13420 |{12807}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13421 |{12808}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13422 |{12809}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13423 |{12810}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |13441 |{13194}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13194}<65 |0 | |0 | |
-ROW |13517 |{12946}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13518 |{12947}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13519 |{12948}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13520 |{12949}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13521 |{13206}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13206}<65 |0 | |0 | |
-ROW |13522 |{13208}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13208}<65 |0 | |0 | |
-ROW |13523 |{13210}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13210}<65 |0 | |0 | |
-ROW |13524 |{13211}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13211}<65 |0 | |0 | |
-ROW |13525 |{13212}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13212}<65 |0 | |0 | |
-ROW |13526 |{13213}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13213}<65 |0 | |0 | |
-ROW |13527 |{13214}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13214}<65 |0 | |0 | |
-ROW |13528 |{13215}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13215}<65 |0 | |0 | |
-ROW |13529 |{13216}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13216}<65 |0 | |0 | |
-ROW |13530 |{13217}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13217}<65 |0 | |0 | |
-ROW |13531 |{13218}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13218}<65 |0 | |0 | |
-ROW |13532 |{13219}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13219}<65 |0 | |0 | |
-ROW |13533 |{13220}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13220}<65 |0 | |0 | |
-ROW |13534 |{13207}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13207}<65 |0 | |0 | |
-ROW |13535 |{13209}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13209}<65 |0 | |0 | |
-ROW |13536 |{12965}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13544 |{12994}=0 |FTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13545 |{12995}=0 |HTTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13546 |{12996}=0 |HTTPS service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13547 |{12997}=0 |IMAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13548 |{12998}=0 |LDAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13549 |{13154}=0 |NNTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13550 |{13156}=0 |NTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13551 |{13152}=0 |POP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13552 |{13157}=0 |SMTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13553 |{13158}=0 |SSH service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13557 |{13160}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |13559 |{13196}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13196}<65 |0 | |0 | |
-ROW |13562 |{13222}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13222}<65 |0 | |0 | |
-ROW |13564 |{13224}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13224}<65 |0 | |0 | |
-ROW |13565 |{13225}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13225}<65 |0 | |0 | |
-ROW |13566 |{13226}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13226}<65 |0 | |0 | |
-ROW |13568 |{13228}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13228}<65 |0 | |0 | |
-ROW |13569 |{13229}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13229}<65 |0 | |0 | |
-ROW |14168 |{14257}>({14258}*0.7) |70% mem Heap Memory used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14169 |{14259}>({14260}*0.7) |70% mem Non-Heap Memory used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14170 |{14261}>({14262}*0.7) |70% mp CMS Old Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14171 |{14263}>({14264}*0.7) |70% mp CMS Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14172 |{14265}>({14266}*0.7) |70% mp Code Cache used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14173 |{14267}>({14268}*0.7) |70% mp Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14174 |{14269}>({14270}*0.7) |70% mp PS Old Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14175 |{14271}>({14272}*0.7) |70% mp PS Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14176 |{14273}>({14274}*0.7) |70% mp Tenured Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14177 |{14275}>({14276}*0.7) |70% os Opened File Descriptor Count used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14178 |{14277}>70 |70% os Process CPU Load on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14179 |{14278}<{14279} |gc Concurrent Mark Sweep in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14180 |{14280}<{14281} |gc Mark Sweep Compact in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14181 |{14282}<{14283} |gc PS Mark Sweep in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14182 |{14284}={14285} |mem Heap Memory fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14183 |{14286}={14287} |mem Non-Heap Memory fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14184 |{14288}={14289} |mp CMS Old Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14185 |{14290}={14291} |mp CMS Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14186 |{14292}={14293} |mp Code Cache fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14187 |{14294}={14295} |mp Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14188 |{14296}={14297} |mp PS Old Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14189 |{14298}={14299} |mp PS Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14190 |{14300}={14301} |mp Tenured Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14191 |{14302}=1 |{HOST.NAME} is not reachable | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14192 |{14303}<>1 |{HOST.NAME} runs suboptimal VM type | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14193 |{14304}=1 |{HOST.NAME} uses suboptimal JIT compiler | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14195 |{14306}<1.597 or {14306}>2.019 |BB +1.8V SM Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14196 |{14307}<1.646 or {14307}>1.960 |BB +1.8V SM Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14197 |{14308}<2.876 or {14308}>3.729 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14198 |{14309}<2.970 or {14309}>3.618 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14199 |{14310}<2.876 or {14310}>3.729 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14200 |{14311}<2.970 or {14311}>3.618 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14201 |{14312}<4.362 or {14312}>5.663 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14202 |{14313}<4.483 or {14313}>5.495 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14203 |{14314}<5 or {14314}>66 |BB Ambient Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14204 |{14315}<10 or {14315}>61 |BB Ambient Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14205 |{14316}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14206 |{14317}<5 or {14317}>90 |Baseboard Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14207 |{14318}<10 or {14318}>83 |Baseboard Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14208 |{14319}<0.953 or {14319}>1.149 |BB +1.05V PCH Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14209 |{14320}<0.985 or {14320}>1.117 |BB +1.05V PCH Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14210 |{14321}<0.683 or {14321}>1.543 |BB +1.1V P1 Vccp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14211 |{14322}<0.708 or {14322}>1.501 |BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14212 |{14323}<1.362 or {14323}>1.635 |BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14213 |{14324}<1.401 or {14324}>1.589 |BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14214 |{14325}<2.982 or {14325}>3.625 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14215 |{14326}<3.067 or {14326}>3.525 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14216 |{14327}<2.982 or {14327}>3.625 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14217 |{14328}<3.067 or {14328}>3.525 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14218 |{14329}<4.471 or {14329}>5.538 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14219 |{14330}<4.630 or {14330}>5.380 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14220 |{14331}<0 or {14331}>48 |Front Panel Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14221 |{14332}<5 or {14332}>44 |Front Panel Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14222 |{14333}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14223 |{14334}<324 |System Fan 2 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14224 |{14335}<378 |System Fan 2 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14225 |{14336}<324 |System Fan 3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14226 |{14337}<378 |System Fan 3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14251 |{14378}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |14252 |{14379}>{$ICMP_LOSS_WARN} and {14379}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14253 |{14380}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14318 |{14515}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14516}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14319 |{14517}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14518}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14320 |{14519}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14520}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14322 |{14522}=1 and {14523}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14336 |{14545}=1 and {14546}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14337 |{14547}=1 and {14548}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14339 |{14552}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14553}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14340 |{14554}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14555}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14363 |{14594}=1 and {14595}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14364 |{14596}=1 and {14597}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14365 |{14598}=1 and {14599}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14372 |{14606}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14607}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14373 |{14608}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14609}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14374 |{14610}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14611}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14380 |{14620}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14621}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14381 |{14622}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14623}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14382 |{14624}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14625}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14383 |{14626}=1 and {14627}>0 |Unit {#SNMPVALUE}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14409 |{14669}=1 and {14670}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14417 |{14681}=1 and {14682}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14420 |{14689}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14690}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14460 |{14756}>{$TEMP_WARN:""} |Device {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14757}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14461 |{14758}>{$TEMP_CRIT:""} |Device {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14759}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14462 |{14760}<{$TEMP_CRIT_LOW:""} |Device {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14761}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14463 |{14762}=1 and {14763}>0 |#{#SNMPVALUE}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14474 |{14782}=1 and {14783}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14476 |{14785}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14786}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14477 |{14787}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14788}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14478 |{14789}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14790}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14492 |{14812}=1 and {14813}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14493 |{14814}=1 and {14815}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14495 |{14817}>{$TEMP_WARN:""} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14818}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14496 |{14819}>{$TEMP_CRIT:""} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14820}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14497 |{14821}<{$TEMP_CRIT_LOW:""} |#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14822}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14511 |{14844}>{$TEMP_WARN:""} |Device: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{14845}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14513 |{14849}<{$TEMP_CRIT_LOW:""} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |0 |1 |{14850}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14514 |{14851}=1 and {14852}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14515 |{14853}=1 and {14854}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14551 |{14914}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14915}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14552 |{14916}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14917}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14553 |{14918}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14919}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14556 |{14922}=1 and {14923}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14557 |{14924}=1 and {14925}>0 |{#ENT_NAME}: Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14589 |{14979}>{$TEMP_WARN:""} |{#ENT_NAME}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14980}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14590 |{14981}>{$TEMP_CRIT:""} |{#ENT_NAME}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14982}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14591 |{14983}<{$TEMP_CRIT_LOW:""} |{#ENT_NAME}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14984}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14592 |{14985}=1 and {14986}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14603 |{15005}=1 and {15006}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14606 |{15013}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15014}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14607 |{15015}=1 and {15016}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14621 |{15038}=1 and {15039}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14624 |{15042}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15043}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14625 |{15044}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15045}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14626 |{15046}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15047}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14658 |{15100}>{$TEMP_WARN:"Device"} |Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{15101}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14659 |{15102}>{$TEMP_CRIT:"Device"} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{15103}<{$TEMP_CRIT:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14660 |{15104}<{$TEMP_CRIT_LOW:"Device"} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"} | |0 |3 | |NULL |0 |0 |1 |{15105}>{$TEMP_CRIT_LOW:"Device"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14661 |{15106}=1 and {15107}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14662 |{15108}=1 and {15109}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14664 |{15111}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15112}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14665 |{15113}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15114}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14666 |{15115}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{15116}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14680 |{15138}=1 and {15139}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14683 |{15146}<{$TEMP_CRIT_LOW:""} |#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15147}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14698 |{15170}=1 and {15171}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14699 |{15172}=1 and {15173}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14709 |{15191}=1 and {15192}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14710 |{15193}=1 and {15194}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14724 |{15216}=1 and {15217}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14912 |{15684}=1 and {15685}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |14913 |{15686}=1 and {15687}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |14914 |{15688}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15689}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14915 |{15690}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15691}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14916 |{15692}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15693}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14934 |{15721}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15722}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14935 |{15723}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15724}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14937 |{15726}=1 and {15727}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14939 |{15729}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |1 | |
-ROW |14941 |{15731}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |1 | |
-ROW |15330 |{16818}=1 |#{#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15331 |{16819}=1 |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} |
-ROW |15332 |{16820}=1 |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} |
-ROW |15333 |{16821}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15334 |{16822}=1 |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} |
-ROW |15335 |{16823}>{$TEMP_WARN:""}&eol;or&eol;{16824}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16825}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15336 |{16826}>{$TEMP_CRIT:""}&eol;or&eol;{16827}={$TEMP_CRIT_STATUS} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16828}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15337 |{16829}=1 |{#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} |
-ROW |15338 |{16830}=1 |{#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} |
-ROW |15339 |{16831}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15340 |{16832}=1 |#{#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} |
-ROW |15341 |{16833}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15342 |{16834}>{$TEMP_WARN:""}&eol;or&eol;{16835}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16836}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15343 |{16837}>{$TEMP_CRIT:""}&eol;or&eol;{16838}={$TEMP_CRIT_STATUS}&eol;or&eol;{16838}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16839}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15344 |{16840}=1 or {16841}=1 |{#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} |
-ROW |15345 |{16842}=1 or {16843}=1 |{#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} |
-ROW |15346 |{16844}=1 or {16845}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15347 |{16846}=1 or {16847}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15366 |{16890}=1 |{#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} |
-ROW |15367 |{16891}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15368 |{16892}>{$TEMP_CRIT:""}&eol;or&eol;{16893}={$TEMP_CRIT_STATUS} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{16894}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15369 |{16895}=1 |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} |
-ROW |15370 |{16896}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15371 |{16897}=1 or {16898}=1 |{#ENT_NAME}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15372 |{16899}=1 or {16900}=1 or {16901}=1 |{#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} |
-ROW |15373 |{16902}=1 |{#ENT_DESCR}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15374 |{16903}=1 |{#ENT_DESCR}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15375 |{16904}=1 |{#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} |
-ROW |15376 |{16905}=1 |{#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} |
-ROW |15377 |{16906}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15378 |{16907}=1 |{#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} |
-ROW |15379 |{16908}=1 |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} |
-ROW |15380 |{16909}=1 |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} |
-ROW |15381 |{16910}=1 |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} |
-ROW |15382 |{16911}=1 |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} |
-ROW |15383 |{16912}=1 |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} |
-ROW |15384 |{16913}=1 |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} |
-ROW |15385 |{16914}=1 |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} |
-ROW |15386 |{16915}=1 |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} |
-ROW |15387 |{16916}>{$TEMP_WARN:""}&eol;or&eol;{16917}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16918}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15388 |{16919}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15389 |{16920}=1 |{#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} |
-ROW |15390 |{16921}>{$TEMP_WARN:""}&eol;or&eol;{16922}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16923}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15391 |{16924}=1 |{#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} |
-ROW |15392 |{16925}=1 |{#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} |
-ROW |15393 |{16926}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15394 |{16927}=1 |{#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} |
-ROW |15395 |{16928}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15396 |{16929}>{$TEMP_WARN:""}&eol;or&eol;{16930}={$TEMP_WARN_STATUS} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16931}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15397 |{16932}>{$TEMP_CRIT:""}&eol;or&eol;{16933}={$TEMP_CRIT_STATUS} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16934}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15398 |{16935}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15399 |{16936}=1 |#{#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} |
-ROW |15490 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17237}=2 and {17238}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17237}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15496 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17249}=2 and {17250}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17249}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15502 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17261}=2 and {17262}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17261}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15506 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17269}=2 and {17270}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17269}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15508 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17273}=2 and {17274}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17273}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15640 |{17657}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15641 |{17658}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{17658}<65 |0 | |0 | |
-ROW |15670 |{17687}<0 and {17688}>0&eol;and (&eol;{17689}=6 or&eol;{17689}=7 or&eol;{17689}=11 or&eol;{17689}=62 or&eol;{17689}=69 or&eol;{17689}=117&eol;)&eol;and&eol;({17690}<>2)|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. Ack to close. |NULL |0 |2 |1 |({17687}>0 and {17691}>0) or&eol;({17690}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15671 |{17692}<0 and {17693}>0&eol;and (&eol;{17694}=6 or&eol;{17694}=7 or&eol;{17694}=11 or&eol;{17694}=62 or&eol;{17694}=69 or&eol;{17694}=117&eol;)&eol;and&eol;({17695}<>2)|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. Ack to close. |NULL |0 |2 |1 |({17692}>0 and {17696}>0) or&eol;({17695}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15692 |{17797}<0 and {17798}>0&eol;and (&eol;{17799}=6 or&eol;{17799}=7 or&eol;{17799}=11 or&eol;{17799}=62 or&eol;{17799}=69 or&eol;{17799}=117&eol;)&eol;and&eol;({17800}<>2)|Interface {#IFDESCR}: 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. Ack to close. |NULL |0 |2 |1 |({17797}>0 and {17801}>0) or&eol;({17800}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15695 |{17812}<0 and {17813}>0&eol;and (&eol;{17814}=6 or&eol;{17814}=7 or&eol;{17814}=11 or&eol;{17814}=62 or&eol;{17814}=69 or&eol;{17814}=117&eol;)&eol;and&eol;({17815}<>2)|Interface {#IFDESCR}: 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. Ack to close. |NULL |0 |2 |1 |({17812}>0 and {17816}>0) or&eol;({17815}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15698 |{17827}<0 and {17828}>0&eol;and (&eol;{17829}=6 or&eol;{17829}=7 or&eol;{17829}=11 or&eol;{17829}=62 or&eol;{17829}=69 or&eol;{17829}=117&eol;)&eol;and&eol;({17830}<>2)|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. Ack to close. |NULL |0 |2 |1 |({17827}>0 and {17831}>0) or&eol;({17830}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15714 |{17859}>{$TEMP_WARN:""}&eol;or&eol;{17860}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17861}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15715 |{17862}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17863}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15716 |{17864}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{17865}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15717 |{17866}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15718 |{17867}=1 and {17868}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |15719 |{17869}=1 |{#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} |
-ROW |15720 |{17870}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15721 |{17871}=1 or {17872}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15722 |{17873}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15728 |{17879}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15729 |{17880}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15730 |{17881}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15731 |{17882}=1 and {17883}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15732 |{17884}=1 and {17885}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
-ROW |15733 |{17886}>{$TEMP_WARN:"CPU"}&eol;or&eol;{17887}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17888}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15734 |{17889}>{$TEMP_CRIT:"CPU"}&eol;or&eol;{17890}={$TEMP_CRIT_STATUS}&eol;or&eol;{17890}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17891}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15735 |{17892}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{17893}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15736 |{17894}>{$TEMP_WARN:"Ambient"}&eol;or&eol;{17895}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17896}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15737 |{17897}>{$TEMP_CRIT:"Ambient"}&eol;or&eol;{17898}={$TEMP_CRIT_STATUS}&eol;or&eol;{17898}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17899}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15738 |{17900}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{17901}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15739 |{17902}=1 or {17903}=1 |{#PSU_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} |
-ROW |15740 |{17904}=1 |{#PSU_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} |
-ROW |15741 |{17905}=1 or {17906}=1 or {17907}=1 or {17908}=1 or {17909}=1 |{#FAN_DESCR}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15742 |{17910}=1 or {17911}=1 |{#FAN_DESCR}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15743 |{17912}=1 or {17913}=1 |{#DISK_NAME}: Physical disk failed | |0 |4 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |
-ROW |15744 |{17914}=1 |{#DISK_NAME}: 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} |
-ROW |15745 |{17915}=1 and {17916}>0 |{#DISK_NAME}: Disk has been replaced (new serial number received) | |0 |1 |Disk serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |15746 |{17917}=1 |{#DISK_NAME}: Physical disk S.M.A.R.T. failed | |0 |4 |Disk probably requires replacement. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15747 |{17918}=1 |Disk {#SNMPVALUE}({#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} |
-ROW |15748 |{17919}=1 |Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk is in warning state | |0 |3 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15749 |{17920}=1 |{#CNTLR_NAME}: Disk array controller is in unrecoverable state! | |0 |5 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15750 |{17921}=1 |{#CNTLR_NAME}: 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} |
-ROW |15751 |{17922}=1 |{#CNTLR_NAME}: 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} |
-ROW |15752 |{17923}=1 |Battery {#BATTERY_NUM}: 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} |
-ROW |15753 |{17924}=1 |Battery {#BATTERY_NUM}: 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} |
-ROW |15754 |{17925}=1 |Battery {#BATTERY_NUM}: 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} |
-ROW |15762 |{17933}=1 and {17934}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15763 |{17935}>{$TEMP_WARN:"{#SNMPINDEX}"} |{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPINDEX}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17936}<{$TEMP_WARN:"{#SNMPINDEX}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15764 |{17937}>{$TEMP_CRIT:"{#SNMPINDEX}"} |{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPINDEX}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17938}<{$TEMP_CRIT:"{#SNMPINDEX}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15765 |{17939}<{$TEMP_CRIT_LOW:"{#SNMPINDEX}"} |{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPINDEX}"} | |0 |3 | |NULL |0 |2 |1 |{17940}>{$TEMP_CRIT_LOW:"{#SNMPINDEX}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15766 |{17941}>{$TEMP_WARN:"Ambient"} |Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17942}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15767 |{17943}>{$TEMP_CRIT:"Ambient"} |Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17944}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15768 |{17945}<{$TEMP_CRIT_LOW:"Ambient"} |Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{17946}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15769 |{17947}>{$TEMP_WARN:"CPU"} |CPU-{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17948}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15770 |{17949}>{$TEMP_CRIT:"CPU"} |CPU-{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17950}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15771 |{17951}<{$TEMP_CRIT_LOW:"CPU"} |CPU-{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{17952}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15772 |{17953}>{$TEMP_WARN:"Memory"} |Memory-{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Memory"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17954}<{$TEMP_WARN:"Memory"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15773 |{17955}>{$TEMP_CRIT:"Memory"} |Memory-{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Memory"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17956}<{$TEMP_CRIT:"Memory"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15774 |{17957}<{$TEMP_CRIT_LOW:"Memory"} |Memory-{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Memory"} | |0 |3 | |NULL |0 |2 |1 |{17958}>{$TEMP_CRIT_LOW:"Memory"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15775 |{17959}>{$TEMP_WARN:"PSU"} |PSU-{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"PSU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17960}<{$TEMP_WARN:"PSU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15776 |{17961}>{$TEMP_CRIT:"PSU"} |PSU-{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"PSU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17962}<{$TEMP_CRIT:"PSU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15777 |{17963}<{$TEMP_CRIT_LOW:"PSU"} |PSU-{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"PSU"} | |0 |3 | |NULL |0 |2 |1 |{17964}>{$TEMP_CRIT_LOW:"PSU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15778 |{17965}>{$TEMP_WARN:"Device"} |System-{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Device"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17966}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15779 |{17967}>{$TEMP_CRIT:"Device"} |System-{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17968}<{$TEMP_CRIT:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15780 |{17969}<{$TEMP_CRIT_LOW:"Device"} |System-{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"} | |0 |3 | |NULL |0 |2 |1 |{17970}>{$TEMP_CRIT_LOW:"Device"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15781 |{17971}=1 |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} |
-ROW |15782 |{17972}=1 |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} |
-ROW |15783 |{17973}=1 |Fan {#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15784 |{17974}=1 |Fan {#SNMPINDEX}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15785 |{17975}=1 |{#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} |
-ROW |15786 |{17976}=1 |{#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} |
-ROW |15787 |{17977}=1 |#{#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} |
-ROW |15788 |{17978}=1 or {17979}=1 or {17980}=1 or {17981}=1 |#{#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} |
-ROW |15789 |{17982}=1 |#{#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} |
-ROW |15790 |{17983}=1 or {17984}=1 |#{#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} |
-ROW |15791 |{17985}=1 or {17986}=1 |#{#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} |
-ROW |15792 |{17987}=1 |{#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} |
-ROW |15793 |{17988}=1 |{#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} |
-ROW |15794 |{17989}=1 or {17990}=1 |{#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} |
-ROW |15795 |{17991}=1 and {17992}>0 |{#DISK_LOCATION}: Disk has been replaced (new serial number received) | |0 |1 |Disk serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |15796 |{17993}=1 |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} |
-ROW |15797 |{17994}=1 |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} |
-ROW |15803 |{18000}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15804 |{18001}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15805 |{18002}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15806 |{18003}=1 and {18004}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15807 |{18005}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18006}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15808 |{18007}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18008}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15809 |{18009}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18010}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15810 |{18011}>{$TEMP_WARN:"Ambient"} |Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18012}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15811 |{18013}>{$TEMP_CRIT:"Ambient"} |Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18014}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15812 |{18015}<{$TEMP_CRIT_LOW:"Ambient"} |Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{18016}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15813 |{18017}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18018}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15814 |{18019}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18020}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15815 |{18021}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{18022}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15816 |{18023}=1 |{#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} |
-ROW |15817 |{18024}=1 |{#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} |
-ROW |15818 |{18025}=1 |{#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} |
-ROW |15824 |{18031}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15825 |{18032}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15826 |{18033}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15827 |{18034}=1 and {18035}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15828 |{18036}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18037}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15829 |{18038}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18039}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15830 |{18040}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18041}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15831 |{18042}>{$TEMP_WARN:"Ambient"} |Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
-ROW |15832 |{18044}>{$TEMP_CRIT:"Ambient"} |Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
-ROW |15833 |{18046}<{$TEMP_CRIT_LOW:"Ambient"} |Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{18047}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15834 |{18048}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |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} |
-ROW |15835 |{18050}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |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} |
-ROW |15836 |{18052}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{18053}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15837 |{18054}=1 |{#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} |
-ROW |15838 |{18055}=1 |{#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} |
-ROW |15839 |{18056}=1 |{#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} |
-ROW |15845 |{18062}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18063}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15846 |{18064}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18065}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15847 |{18066}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18067}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15848 |{18068} > ({18069} * 0.7) |70% http-8080 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15849 |{18070} > ({18071} * 0.7) |70% http-8443 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15850 |{18072} > ({18073} *0.7) |70% jk-8009 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15851 |{18074} = 1 |gzip compression is off for connector http-8080 on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15852 |{18075} = 1 |gzip compression is off for connector http-8443 on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15853 |{18076}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18076}<65 |0 | |0 | |
-ROW |15855 |{18078}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18078}<65 |0 | |0 | |
-ROW |15857 |{18080}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15858 |{18081}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15859 |{18082}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15860 |{18083}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15861 |{18084}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15862 |{18085}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15863 |{18086}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15864 |{18087}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18087}<65 |0 | |0 | |
-ROW |15865 |{18088}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18088}<65 |0 | |0 | |
-ROW |15866 |{18089}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 |Zabbix configuration syncer processes more than 75% busy |NULL |0 |0 |1 |{18089}<65 |0 | |0 | |
-ROW |15867 |{18090}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18090}<65 |0 | |0 | |
-ROW |15868 |{18091}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18091}<65 |0 | |0 | |
-ROW |15869 |{18092}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18092}<65 |0 | |0 | |
-ROW |15870 |{18093}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18093}<65 |0 | |0 | |
-ROW |15871 |{18094}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18094}<65 |0 | |0 | |
-ROW |15872 |{18095}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18095}<65 |0 | |0 | |
-ROW |15873 |{18096}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18096}<65 |0 | |0 | |
-ROW |15874 |{18097}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18097}<65 |0 | |0 | |
-ROW |15875 |{18098}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18098}<65 |0 | |0 | |
-ROW |15876 |{18099}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18099}<65 |0 | |0 | |
-ROW |15877 |{18100}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18100}<65 |0 | |0 | |
-ROW |15878 |{18101}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18101}<65 |0 | |0 | |
-ROW |15879 |{18102}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18102}<65 |0 | |0 | |
-ROW |15880 |{18103}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18103}<65 |0 | |0 | |
-ROW |15881 |{18104}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18104}<65 |0 | |0 | |
-ROW |15882 |{18105}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18105}<65 |0 | |0 | |
-ROW |15883 |{18106}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18106}<65 |0 | |0 | |
-ROW |15884 |{18107}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18107}<65 |0 | |0 | |
-ROW |15885 |{18108}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18108}<65 |0 | |0 | |
-ROW |15886 |{18109}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15887 |{18110}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18110}<65 |0 | |0 | |
-ROW |15888 |{18111}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18111}<65 |0 | |0 | |
-ROW |15889 |{18112}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18112}<65 |0 | |0 | |
-ROW |15890 |{18113}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15891 |{18114}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15892 |{18115}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15893 |{18116}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15894 |{18117}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15895 |{18118}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18118}<65 |0 | |0 | |
-ROW |15896 |{18119}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18119}<65 |0 | |0 | |
-ROW |15897 |{18120}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18120}<65 |0 | |0 | |
-ROW |15898 |{18121}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18121}<65 |0 | |0 | |
-ROW |15899 |{18122}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18122}<65 |0 | |0 | |
-ROW |15900 |{18123}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18123}<65 |0 | |0 | |
-ROW |15901 |{18124}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18124}<65 |0 | |0 | |
-ROW |15902 |{18125}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18125}<65 |0 | |0 | |
-ROW |15903 |{18126}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18126}<65 |0 | |0 | |
-ROW |15904 |{18127}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18127}<65 |0 | |0 | |
-ROW |15905 |{18128}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18128}<65 |0 | |0 | |
-ROW |15906 |{18129}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18129}<65 |0 | |0 | |
-ROW |15907 |{18130}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18130}<65 |0 | |0 | |
-ROW |15908 |{18131}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18131}<65 |0 | |0 | |
-ROW |15909 |{18132}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18132}<65 |0 | |0 | |
-ROW |15910 |{18133}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18133}<65 |0 | |0 | |
-ROW |15911 |{18134}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18134}<65 |0 | |0 | |
-ROW |15912 |{18135}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18135}<65 |0 | |0 | |
-ROW |15913 |{18136}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18136}<65 |0 | |0 | |
-ROW |15914 |{18137}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18137}<65 |0 | |0 | |
-ROW |15926 |{18150} < {$PG.CACHE_HITRATIO.MIN.WARN} |PostgreSQL: Cache hit ratio too low (under {$PG.CACHE_HITRATIO.MIN.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15927 |{18151}=1 and {18152}>0 |PostgreSQL: Configuration has changed | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15928 |{18153} = 1 |PostgreSQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15929 |{18154}=0 |PostgreSQL: Replication is down | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15930 |{18155} > {$PG.CHECKPOINTS_REQ.MAX.WARN} |PostgreSQL: Required checkpoints occurs too frequently (over {$PG.CHECKPOINTS_REQ.MAX.WARN}) | |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.&eol;https://www.postgresql.org/docs/current/wal-configuration.html |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15931 |{18156} > {$PG.PING_TIME.MAX.WARN} |PostgreSQL: Response too long (over {$PG.PING_TIME.MAX.WARN}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15932 |{18157} < 10m |PostgreSQL: Service has been restarted (uptime < 10m) | |0 |1 |PostgreSQL uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15933 |{18158} = 0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15934 |{18159} > {$PG.REPL_LAG.MAX.WARN} |PostgreSQL: Streaming lag with {#MASTER} is too high (over {$PG.REPL_LAG.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15935 |{18160} > {$PG.CONN_TOTAL_PCT.MAX.WARN} |PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15936 |{18161}=1 and {18162}>0 |PostgreSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15938 |{18164}>{$PG.LOCKS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |15939 |{18165} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m) | |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.&eol;https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT |NULL |0 |2 |0 | |0 | |0 | |
-ROW |15940 |{18166}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |15941 |{18167}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} |Database {#DBNAME}: VACUUM FREEZE is required to prevent wraparound (frozen XID less then {$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} %) | |0 |3 |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |NULL |0 |2 |0 | |0 | |0 | |
-ROW |15942 |{18168}=1 |Apache: Failed to fetch status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15943 |{18169}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15944 |{18170}>{$APACHE.RESPONSE_TIME.MAX.WARN} |Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15945 |{18171}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15946 |{18172}=1 and {18173}>0 |Apache: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Apache version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15947 |{18174}=0 |Apache: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15948 |{18175}=1 |Apache: Failed to fetch status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15949 |{18176}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15950 |{18177}>{$APACHE.RESPONSE_TIME.MAX.WARN} |Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15951 |{18178}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15952 |{18179}=1 and {18180}>0 |Apache: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Apache version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15954 |{18183}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15955 |{18184}>{$NGINX.RESPONSE_TIME.MAX.WARN} |Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15956 |{18185} > {$NGINX.DROP_RATE.MAX.WARN} |Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m) | |0 |2 |The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 |Current rate: {ITEM.LASTVALUE1} |
-ROW |15957 |{18186}=0 |Nginx: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15958 |{18187}=1 and {18188}>0 |Nginx: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Nginx version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15960 |{18191}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15961 |{18192}>{$NGINX.RESPONSE_TIME.MAX.WARN} |Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15962 |{18193} > {$NGINX.DROP_RATE.MAX.WARN} |Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m) | |0 |2 |The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 |Current rate: {ITEM.LASTVALUE1} |
-ROW |15963 |{18194}=1 and {18195}>0 |Nginx: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Nginx version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15978 |{18211}=1 |MySQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15979 |{18212}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15980 |{18213}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |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 | |
-ROW |15981 |{18214}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |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 | |
-ROW |15982 |{18215}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15983 |{18216}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |15984 |{18217}=1 and {18218}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |15985 |{18219}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |15986 |{18220}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |15987 |{18221}=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 | |
-ROW |15988 |{18222}=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 | |
-ROW |15999 |{18241}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16000 |{18242}<{$MEMORY.AVAILABLE.MIN} and {18243}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16001 |{18244}<{$SWAP.PFREE.MIN.WARN} and {18245}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16007 |{18255}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16008 |{18256}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18257}-{18258})<5G or {18259}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16009 |{18260}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18261}-{18262})<10G or {18263}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16010 |{18264}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16011 |{18265}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16031 |{18300}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16032 |{18301}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16033 |{18302}<{$MEMORY.AVAILABLE.MIN} and {18303}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16034 |{18304}<{$SWAP.PFREE.MIN.WARN} and {18305}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16035 |{18306}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16036 |{18307}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16038 |{18310}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16039 |{18311}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16040 |{18312}/{18313}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
-ROW |16041 |{18314}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16042 |{18315}=1 and {18316}>0 |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 |2 | |0 | |1 | |
-ROW |16069 |{18355}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18356}-{18357})<5G or {18358}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16070 |{18359}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18360}-{18361})<10G or {18362}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16071 |{18363}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16072 |{18364}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16074 |{18366}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18367}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18368}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18369}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16075 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18370}=2 and {18371}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18370}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16076 |{18372}<0 and {18373}>0&eol;and&eol;({18373}=6&eol;or {18373}=1)&eol;and&eol;({18374}<>2) |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. Ack to close. |NULL |0 |2 |1 |({18372}>0 and {18375}>0) or&eol;({18374}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16097 |{18423}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16098 |{18424}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16099 |{18425}<{$MEMORY.AVAILABLE.MIN} and {18426}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16100 |{18427}<{$SWAP.PFREE.MIN.WARN} and {18428}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16101 |{18429}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16102 |{18430}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16104 |{18433}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16105 |{18434}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16106 |{18435}/{18436}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
-ROW |16107 |{18437}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16108 |{18438}=1 and {18439}>0 |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 |2 | |0 | |1 | |
-ROW |16122 |{18459}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18460}-{18461})<5G or {18462}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16123 |{18463}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18464}-{18465})<10G or {18466}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16124 |{18467}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16125 |{18468}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16127 |{18470}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18471}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18472}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18473}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16128 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18474}=2 and {18475}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18474}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16129 |{18476}<0 and {18477}>0&eol;and&eol;({18477}=6&eol;or {18477}=1)&eol;and&eol;({18478}<>2) |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. Ack to close. |NULL |0 |2 |1 |({18476}>0 and {18479}>0) or&eol;({18478}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16138 |{18501}=1 |node_exporter is not available (or no data for 30m) | |0 |2 |Failed to fetch system metrics from node_exporter in time. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16139 |{18502}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16141 |{18505}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16142 |{18506}/{18507}*100>80 |Running out of file descriptors (less than < 20% free) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} of {ITEM.LASTVALUE2} file descriptors are in use. |
-ROW |16143 |{18508}=1 and {18509}>0 |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 |2 | |0 | |1 | |
-ROW |16144 |{18510}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16146 |{18513}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16147 |{18514}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16148 |{18515}<{$MEMORY.AVAILABLE.MIN} and {18516}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16149 |{18517}<{$SWAP.PFREE.MIN.WARN} and {18518}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16150 |({18519}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18520} or&eol;{18521}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18520}) and&eol;{18520}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18519}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18520} and&eol;{18521}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18520}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16151 |{18522}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18523}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18524}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18525}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16152 |{18526}<0 and {18527}>0&eol;and (&eol;{18528}=6 or&eol;{18528}=7 or&eol;{18528}=11 or&eol;{18528}=62 or&eol;{18528}=69 or&eol;{18528}=117&eol;)&eol;and&eol;({18529}<>2)|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. Ack to close. |NULL |0 |2 |1 |({18526}>0 and {18530}>0) or&eol;({18529}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16153 |{18531}<0 and {18532}>0&eol;and&eol;({18532}=6&eol;or {18532}=1)&eol;and&eol;({18533}<>2) |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. Ack to close. |NULL |0 |2 |1 |({18531}>0 and {18534}>0) or&eol;({18533}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16154 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18535}=2 and {18536}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18535}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16155 |{18537}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18538}-{18539})<5G or {18540}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16156 |{18541}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18542}-{18543})<10G or {18544}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16157 |{18545}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16158 |{18546}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16160 |{18548}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16161 |{18549}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16162 |{18550}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16164 |{18552}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16165 |{18553}<{$SWAP.PFREE.MIN.WARN} and {18554}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16166 |{18555}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16167 |{18556}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |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 | |
-ROW |16168 |{18557}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16169 |{18558}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16182 |{18574}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18575}-{18576})<5G or {18577}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16183 |{18578}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18579}-{18580})<10G or {18581}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16184 |{18582}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |
-ROW |16185 |({18583}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18584} or&eol;{18585}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18584}) and&eol;{18584}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18583}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18584} and&eol;{18585}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18584}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16186 |{18586}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18587}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18588}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18589}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16187 |{18590}<0 and {18591}>0&eol;and (&eol;{18592}=6 or&eol;{18592}=7 or&eol;{18592}=11 or&eol;{18592}=62 or&eol;{18592}=69 or&eol;{18592}=117&eol;)&eol;and&eol;({18593}<>2)|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. Ack to close. |NULL |0 |2 |1 |({18590}>0 and {18594}>0) or&eol;({18593}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16188 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18595}=2 and {18596}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18595}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16196 |{18620}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16197 |{18621}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16209 |{18633}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16210 |{18634}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16211 |{18635}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16213 |{18637}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16214 |{18638}<{$SWAP.PFREE.MIN.WARN} and {18639}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16215 |{18640}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16216 |{18641}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |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 | |
-ROW |16217 |{18642}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16218 |{18643}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16231 |{18659}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18660}-{18661})<5G or {18662}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16232 |{18663}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18664}-{18665})<10G or {18666}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16233 |{18667}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |
-ROW |16234 |({18668}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18669} or&eol;{18670}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18669}) and&eol;{18669}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18668}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18669} and&eol;{18670}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18669}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16235 |{18671}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18672}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18673}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18674}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16236 |{18675}<0 and {18676}>0&eol;and (&eol;{18677}=6 or&eol;{18677}=7 or&eol;{18677}=11 or&eol;{18677}=62 or&eol;{18677}=69 or&eol;{18677}=117&eol;)&eol;and&eol;({18678}<>2)|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. Ack to close. |NULL |0 |2 |1 |({18675}>0 and {18679}>0) or&eol;({18678}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16237 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18680}=2 and {18681}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18680}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16250 |{18711}>0 |RabbitMQ: Number of network partitions is too high (more than 0 for 5m) | |0 |2 |https://www.rabbitmq.com/partitions.html#detecting |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16251 |{18712}=0 |RabbitMQ: Node is not running | |0 |3 |RabbitMQ node is not running |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16254 |{18715}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16255 |{18716}=0 |RabbitMQ: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16256 |{18717}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16257 |{18718}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16258 |{18719}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue (over {$RABBITMQ.MESSAGES.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16259 |{18720}=1 |RabbitMQ: Failed to fetch overview data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16264 |{18726}>0 |RabbitMQ: Number of network partitions is too high (more than 0 for 5m) | |0 |2 |https://www.rabbitmq.com/partitions.html#detecting |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16265 |{18727}=0 |RabbitMQ: Node is not running | |0 |3 |RabbitMQ node is not running |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16268 |{18730}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16269 |{18731}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16270 |{18732}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16271 |{18733}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue (over {$RABBITMQ.MESSAGES.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16272 |{18734}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18734}<65 |0 | |0 | |
-ROW |16273 |{18735}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18735}<65 |0 | |0 | |
-ROW |16275 |{18737}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16277 |{18740}=0 |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} |
-ROW |16287 |{18753}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16289 |{18756}=0 |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} |
-ROW |16377 |({18873}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18874} or&eol;{18875}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18874}) and&eol;{18874}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18873}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18874} and&eol;{18875}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18874}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16378 |{18876}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18877}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18878}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18879}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16379 |({18880}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18881} or&eol;{18882}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18881}) and&eol;{18881}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18880}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18881} and&eol;{18882}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18881}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16380 |{18883}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18884}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18885}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18886}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16423 |({19034}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19035} or&eol;{19036}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19035}) and&eol;{19035}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{19034}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19035} and&eol;{19036}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19035}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16424 |{19037}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19038}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{19039}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19040}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16429 |({19055}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19056} or&eol;{19057}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19056}) and&eol;{19056}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{19055}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19056} and&eol;{19057}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19056}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16430 |{19058}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19059}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{19060}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19061}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16435 |({19076}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19077} or&eol;{19078}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19077}) and&eol;{19077}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{19076}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19077} and&eol;{19078}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19077}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16436 |{19079}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19080}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{19081}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19082}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16439 |{19090}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16440 |{19091}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16442 |{19093}=1 |RabbitMQ: Failed to fetch overview data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16443 |{19094}=1 |RabbitMQ: Failed to fetch nodes data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16444 |{19095}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16445 |{19096}=1 and {19097}>0 |RabbitMQ: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |RabbitMQ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16446 |{19098}=1 |RabbitMQ: Memory alarm (Memory usage threshold has been reached) | |0 |3 |https://www.rabbitmq.com/memory.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16447 |{19099}=1 |RabbitMQ: Free disk space alarm (Free space threshold has been reached) | |0 |3 |https://www.rabbitmq.com/disk-alarms.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16448 |{19100}=1 |RabbitMQ: Failed to fetch nodes data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16449 |{19101}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16450 |{19102}=1 and {19103}>0 |RabbitMQ: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |RabbitMQ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16451 |{19104}=1 |RabbitMQ: Memory alarm (Memory usage threshold has been reached) | |0 |3 |https://www.rabbitmq.com/memory.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16452 |{19105}=1 |RabbitMQ: Free disk space alarm (Free space threshold has been reached) | |0 |3 |https://www.rabbitmq.com/disk-alarms.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16459 |{19113}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
-ROW |16460 |{19115}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
-ROW |16461 |{19117}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19118}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16462 |{19119}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
-ROW |16463 |{19121}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
-ROW |16464 |{19123}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19124}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16465 |{19125}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
-ROW |16466 |{19127}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
-ROW |16467 |{19129}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19130}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16468 |{19131}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
-ROW |16469 |{19133}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
-ROW |16470 |{19135}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19136}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16471 |{19137}>{$TEMP_WARN:"CPU"} |{#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |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} |
-ROW |16472 |{19139}>{$TEMP_CRIT:"CPU"} |{#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |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} |
-ROW |16473 |{19141}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCATION}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{19142}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16474 |{19143}=1 |{#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} |
-ROW |16475 |{19144}=1 |{#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} |
-ROW |16476 |{19145}=1 or {19146}=1 or {19147}=1 or {19148}=1 |{#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} |
-ROW |16477 |{19149}=1 or {19150}=1 or {19151}=1 or {19152}=1 or {19153}=1 |{#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} |
-ROW |16478 |{19154}=1 and {19155}>0 |{#UNIT_LOCATION}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
-ROW |16479 |{19156}=1 |{#FAN_LOCATION}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16480 |{19157}=1 |{#FAN_LOCATION}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16481 |{19158}=1 |{#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} |
-ROW |16482 |{19159}=1 or {19160}=1 |{#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} |
-ROW |16483 |{19161}=1 |{#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} |
-ROW |16484 |{19162}=1 |{#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} |
-ROW |16485 |{19163}=1 |{#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} |
-ROW |16486 |{19164}=1 |{#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} |
-ROW |16487 |{19165}=1 |{#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} |
-ROW |16488 |{19166}=1 |{#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} |
-ROW |16491 |{19171}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16492 |{19172}=1 and {19173}>0 |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 |2 | |0 | |1 | |
-ROW |16493 |{19174}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16494 |{19175}=1 |#{#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} |
-ROW |16495 |{19176}=1 |#{#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} |
-ROW |16496 |{19177}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16497 |{19178}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16498 |{19179}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16499 |{19180}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16504 |{19185}>{$TEMP_WARN:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Chassis"} | |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} |
-ROW |16505 |{19187}>{$TEMP_CRIT:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Chassis"} | |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} |
-ROW |16506 |{19189}<{$TEMP_CRIT_LOW:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Chassis"} | |0 |3 | |NULL |0 |2 |1 |{19190}>{$TEMP_CRIT_LOW:"Chassis"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16507 |{19191}=1 and {19192}>0 |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 |2 | |0 | |1 | |
-ROW |16508 |{19193}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16513 |{19201}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16514 |{19202}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16515 |{19203}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16521 |{19209}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16522 |{19210}>{$MEMORY.UTIL.MAX} |#{#SNMPINDEX}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16523 |{19211}=1 and {19212}>0 |#{#SNMPVALUE}: 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 |2 |2 | |0 | |1 | |
-ROW |16524 |{19213}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16525 |{19214}=1 and {19215}>0 |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 |2 | |0 | |1 | |
-ROW |16526 |{19216}>{$MEMORY.UTIL.MAX} |{#SNMPINDEX}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16527 |{19217}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16528 |{19218}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16529 |{19219}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16530 |{19220}=1 and {19221}>0 |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 |2 | |0 | |1 | |
-ROW |16531 |{19222}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16532 |{19223}=1 and {19224}>0 |{#ENT_NAME}: 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 |2 |2 | |0 | |1 | |
-ROW |16533 |{19225}>{$CPU.UTIL.CRIT} |{#MODULE_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16534 |{19226}>{$MEMORY.UTIL.MAX} |{#MODULE_NAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16535 |{19227}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16536 |{19228}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16537 |{19229}>{$CPU.UTIL.CRIT} |{#ENT_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16538 |{19230}=1 and {19231}>0 |{#ENT_NAME}: 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 |2 |2 | |0 | |1 | |
-ROW |16539 |{19232}>{$MEMORY.UTIL.MAX} |{#ENT_NAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16540 |{19233}=1 and {19234}>0 |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 |2 | |0 | |1 | |
-ROW |16541 |{19235}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16542 |{19236}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16543 |{19237}=1 and {19238}>0 |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 |2 | |0 | |1 | |
-ROW |16544 |{19239}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16545 |{19240}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16546 |{19241}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and&eol;(({19242}-{19243})<5G or {19244}<1d) |Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16547 |{19245}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and&eol;(({19246}-{19247})<10G or {19248}<1d) |Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16548 |{19249}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16549 |{19250}=1 and {19251}>0 |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 |2 | |0 | |1 | |
-ROW |16550 |{19252}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16551 |{19253}>{$TEMP_WARN:""} |Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{19254}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16552 |{19255}>{$TEMP_CRIT:""} |Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{19256}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16553 |{19257}<{$TEMP_CRIT_LOW:""} |Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |0 |1 |{19258}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |16554 |{19259}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16555 |{19260}=1 and {19261}>0 |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 |2 | |0 | |1 | |
-ROW |16556 |{19262}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16557 |{19263}=1 |{#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16558 |{19264}=1 |{#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} |
-ROW |16559 |{19265}>{$CPU.UTIL.CRIT} |#{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16560 |{19266}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16561 |{19267}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16562 |{19268}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16563 |{19269}/{19270}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19271}>0&eol;and {19272}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your 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}|
-ROW |16569 |{19287}/{19288}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19289}>0&eol;and {19290}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your 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}|
-ROW |16573 |{19299}/{19300}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19301}>0&eol;and {19302}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your 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}|
-ROW |16575 |{19305}/{19306}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19307}>0&eol;and {19308}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your 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}|
-ROW |16577 |{19313}=1 and {19314}>0 |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 |2 | |0 | |1 | |
-ROW |16579 |{19316}=1 and {19317}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16582 |{19322}=1 and {19323}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16584 |{19326}=1 and {19327}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16585 |{19328}=1 and {19329}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16587 |{19332}=1 and {19333}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16589 |{19336}=1 and {19337}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16593 |{19344}=1 and {19345}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16624 |{19406}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16629 |{19411}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16630 |{19412}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19413}-{19414})<5G or {19415}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16631 |{19416}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19417}-{19418})<10G or {19419}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16644 |{19456}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16645 |{19457}=1 and {19458}>0 |HAProxy: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |HAProxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16646 |{19459}>{$HAPROXY.RESPONSE_TIME.MAX.WARN} |HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16647 |{19460}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16648 |{19461}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |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 | |
-ROW |16649 |{19462}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |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 | |
-ROW |16650 |{19463}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |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 | |
-ROW |16651 |{19464}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |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 | |
-ROW |16652 |{19465}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16653 |{19466}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |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 | |
-ROW |16654 |{19467}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16655 |{19468}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |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 | |
-ROW |16656 |{19469}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |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 | |
-ROW |16657 |{19470}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16658 |{19471}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |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 | |
-ROW |16659 |{19472}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |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 | |
-ROW |16660 |{19473}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16661 |{19474}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16662 |{19475}=1 and {19476}>0 |HAProxy: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |HAProxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16663 |{19477}>{$HAPROXY.RESPONSE_TIME.MAX.WARN} |HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16664 |{19478}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16665 |{19479}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |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 | |
-ROW |16666 |{19480}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |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 | |
-ROW |16667 |{19481}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |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 | |
-ROW |16668 |{19482}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |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 | |
-ROW |16669 |{19483}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16670 |{19484}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |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 | |
-ROW |16671 |{19485}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16672 |{19486}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |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 | |
-ROW |16673 |{19487}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |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 | |
-ROW |16674 |{19488}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16675 |{19489}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |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 | |
-ROW |16676 |{19490}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |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 | |
-ROW |16677 |{19491}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16678 |{19492}=0 or&eol; {19493}=1 |Nginx: Failed to fetch stub status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16679 |{19494}=0 or&eol; {19495}=1 |Nginx: Failed to fetch stub status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16680 |{19496} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16681 |{19497}/{19498}*100>{$REDIS.CLIENTS.PRC.MAX.WARN} |Redis: Total number of connected clients is too high (over {$REDIS.CLIENTS.PRC.MAX.WARN}% in 5m) | |0 |2 |When the number of clients reaches the value of the "maxclients" parameter, new connections will be rejected.&eol;&eol;https://redis.io/topics/clients#maximum-number-of-clients |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16682 |{19499}=1 and {19500}>0 |Redis: Configuration has changed | |0 |1 |Redis configuration has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |
-ROW |16683 |{19501}=1 |Redis: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16684 |{19502}>{$REDIS.MEM.FRAG_RATIO.MAX.WARN} |Redis: Memory fragmentation ratio is too high (over {$REDIS.MEM.FRAG_RATIO.MAX.WARN} in 15m) | |0 |2 |This ratio is an indication of memory mapping efficiency:&eol; — 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.&eol; — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.&eol;&eol;Note: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.&eol;&eol;https://redis.io/topics/memory-optimization |NULL |0 |0 |0 | |0 | |0 | |
-ROW |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 | |
-ROW |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 | |
-ROW |16687 |{19505}=0 |Redis: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16688 |{19506}=1 |Redis: Number of slaves has changed | |0 |1 |Redis number of slaves has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |
-ROW |16689 |{19507}=1 and {19508}>0 |Redis: Replication role has changed (new role: {ITEM.VALUE}) | |0 |2 |Redis replication role has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |
-ROW |16690 |{19509}=1 and {19510}>0 |Redis: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Redis version has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |
-ROW |16691 |{19511}<10m |Redis: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16692 |{19512}>{$REDIS.SLOWLOG.COUNT.MAX.WARN} |Redis: Too many entries in the slowlog (over {$REDIS.SLOWLOG.COUNT.MAX.WARN} per second in 5m) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16693 |{19513}>0 |Redis: Connections are rejected | |0 |4 |The number of connections has reached the value of "maxclients".&eol;&eol;https://redis.io/topics/clients |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16694 |{19514}=0 |Redis: Process is not running | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16695 |{19515}/{19516}*100>{$REDIS.MEM.PUSED.MAX.WARN} |Redis: Memory usage is too high (over {$REDIS.MEM.PUSED.MAX.WARN}% in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16696 |{19517}>{$REDIS.REPL.LAG.MAX.WARN} |Redis: Replication lag with master is too high (over {$REDIS.REPL.LAG.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16697 |{19518}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16699 |{19520}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16700 |{19521}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19522}-{19523})<5G or {19524}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
-ROW |16701 |{19525}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19526}-{19527})<10G or {19528}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
-ROW |16705 |{19538} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19539} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |
-ROW |16708 |{19544} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19545} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |
-ROW |16710 |{19548} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19549} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |
-ROW |16711 |{19550}>{$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16713 |{19552}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16715 |{19554}>{$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16717 |{19556}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16719 |{19558}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |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 | |
-ROW |16720 |{19559}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |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 | |
-ROW |16721 |{19560}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16722 |{19561}=1 |MySQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16723 |{19562}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16724 |{19563}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |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 | |
-ROW |16725 |{19564}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16726 |{19565}=1 and {19566}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16727 |{19567}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |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 | |
-ROW |16729 |{19569}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |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 | |
-ROW |16731 |{19571}=1 |MySQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16732 |{19572}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16733 |{19573}=1 and {19574}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16734 |{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |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 | |
-ROW |16735 |{19576}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |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 | |
-ROW |16736 |{19577}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16737 |{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |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 | |
-ROW |16738 |{19579}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16739 |{19580}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |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 | |
-ROW |16741 |{19582}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |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 | |
-ROW |16743 |{19584}=1 |Docker: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16744 |{19585}=0 |Docker: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16745 |{19586}=1 and {19587}>0 |Docker: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Docker version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16746 |{19588}>0 and {19589}=0 |Container {#NAME}: Container has been stopped with error code | |0 |3 | |NULL |0 |2 |0 | |0 | |1 |Exit code: {ITEM.LASTVALUE1} |
-ROW |16747 |{19590}=1 and {19591}>0 |Container {#NAME}: An error has occurred in the container | |0 |2 |Container {#NAME} has an error. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |
-ROW |16748 |{19592}/{19593}*100>{$MEMCACHED.MEM.PUSED.MAX.WARN} |Memcached: Memory usage is too high (over {$MEMCACHED.MEM.PUSED.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16749 |{19594}/{19595}*100>{$MEMCACHED.CONN.PRC.MAX.WARN} |Memcached: Total number of connected clients is too high (over {$MEMCACHED.CONN.PRC.MAX.WARN}% in 5m) | |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 | |
-ROW |16750 |{19596}>{$MEMCACHED.CONN.QUEUED.MAX.WARN} |Memcached: Too many queued connections (over {$MEMCACHED.CONN.QUEUED.MAX.WARN} in 5m) | |0 |2 |The max number of connections is reachedand and a new connection had to wait in the queue as a result. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16751 |{19597}>{$MEMCACHED.CONN.THROTTLED.MAX.WARN} |Memcached: Too many throttled connections (over {$MEMCACHED.CONN.THROTTLED.MAX.WARN} in 5m) | |0 |2 |Number of times a client connection was throttled is too hight.&eol;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 | |
-ROW |16752 |{19598}=1 |Memcached: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16753 |{19599}=0 |Memcached: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16754 |{19600}<10m |Memcached: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16755 |{19601}=1 and {19602}>0 |Memcached: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Memcached version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16756 |{19603}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |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 | |
-ROW |16757 |{19604}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |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 | |
-ROW |16758 |{19605}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16759 |{19606}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16760 |{19607}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |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 | |
-ROW |16761 |{19608}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16762 |{19609}=1 and {19610}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16763 |{19611}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |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 | |
-ROW |16765 |{19613}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |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 | |
-ROW |16767 |{19615}=1 |IPMI: {#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 | |
-ROW |16768 |{19616}<{#SENSOR_LO_WARN} |IPMI: {#SENSOR_ID} value is below non-critical low (less than {#SENSOR_LO_WARN} for 5m) | |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 | |
-ROW |16769 |{19617}<{#SENSOR_LO_CRIT} |IPMI: {#SENSOR_ID} value is below critical low (less than {#SENSOR_LO_CRIT} for 5m) | |0 |4 |The trigger is informing that a value less than the lower critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16770 |{19618}<{#SENSOR_LO_DISAST} |IPMI: {#SENSOR_ID} value is below non-recoverable low (less than {#SENSOR_LO_DISAST} for 5m) | |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 | |
-ROW |16771 |{19619}>{#SENSOR_HI_WARN} |IPMI: {#SENSOR_ID} value is above non-critical high (greater than {#SENSOR_HI_WARN} for 5m) | |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 | |
-ROW |16772 |{19620}>{#SENSOR_HI_CRIT} |IPMI: {#SENSOR_ID} value is above critical high (greater than {#SENSOR_HI_CRIT} for 5m) | |0 |4 |The trigger is informing that a value higher than the upper critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16773 |{19621}>{#SENSOR_HI_DISAST} |IPMI: {#SENSOR_ID} value is above non-recoverable high (greater than {#SENSOR_HI_DISAST} for 5m) | |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 | |
-ROW |13075 |{12648}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |13074 |0 |0 |0 | |0 | |0 | |
-ROW |13436 |{13205}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |13097 |0 |0 |1 |{13205}<65 |0 | |0 | |
-ROW |13467 |{13165}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |13080 |0 |0 |1 |{13165}<65 |0 | |0 | |
-ROW |13468 |{13171}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |13081 |0 |0 |1 |{13171}<65 |0 | |0 | |
-ROW |13470 |{13173}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |13083 |0 |0 |1 |{13173}<65 |0 | |0 | |
-ROW |13471 |{13175}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |13084 |0 |0 |1 |{13175}<65 |0 | |0 | |
-ROW |13472 |{13177}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |13085 |0 |0 |1 |{13177}<65 |0 | |0 | |
-ROW |13473 |{13179}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |13086 |0 |0 |1 |{13179}<65 |0 | |0 | |
-ROW |13474 |{13181}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |13087 |0 |0 |1 |{13181}<65 |0 | |0 | |
-ROW |13475 |{13183}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |13088 |0 |0 |1 |{13183}<65 |0 | |0 | |
-ROW |13476 |{13185}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |13089 |0 |0 |1 |{13185}<65 |0 | |0 | |
-ROW |13477 |{13187}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |13275 |0 |0 |1 |{13187}<65 |0 | |0 | |
-ROW |13479 |{13189}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |13091 |0 |0 |1 |{13189}<65 |0 | |0 | |
-ROW |13480 |{13191}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |13092 |0 |0 |1 |{13191}<65 |0 | |0 | |
-ROW |13481 |{13193}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |13093 |0 |0 |1 |{13193}<65 |0 | |0 | |
-ROW |13482 |{13195}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |13441 |0 |0 |1 |{13195}<65 |0 | |0 | |
-ROW |13483 |{13199}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |13094 |0 |0 |1 |{13199}<65 |0 | |0 | |
-ROW |13484 |{13201}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |13095 |0 |0 |1 |{13201}<65 |0 | |0 | |
-ROW |13485 |{13203}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |13096 |0 |0 |1 |{13203}<65 |0 | |0 | |
-ROW |13486 |{12895}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |13023 |0 |0 |0 | |0 | |0 | |
-ROW |13487 |{12896}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |13015 |0 |0 |0 | |0 | |0 | |
-ROW |13488 |{12897}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |13073 |0 |0 |0 | |0 | |0 | |
-ROW |13489 |{12898}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |13017 |0 |0 |0 | |0 | |0 | |
-ROW |13490 |{12899}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |13019 |0 |0 |0 | |0 | |0 | |
-ROW |13537 |{12966}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |13536 |0 |0 |0 | |0 | |0 | |
-ROW |13558 |{13161}=1 |Zabbix value cache working in low memory mode | |0 |4 | |13557 |0 |0 |0 | |0 | |0 | |
-ROW |13560 |{13197}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |13559 |0 |0 |1 |{13197}<65 |0 | |0 | |
-ROW |13563 |{13223}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |13562 |0 |0 |1 |{13223}<65 |0 | |0 | |
-ROW |13567 |{13227}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |13566 |0 |0 |1 |{13227}<65 |0 | |0 | |
-ROW |13570 |{13230}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |13568 |0 |0 |1 |{13230}<65 |0 | |0 | |
-ROW |13571 |{13231}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |13569 |0 |0 |1 |{13231}<65 |0 | |0 | |
-ROW |14288 |{14463}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14251 |0 |0 |0 | |0 | |0 | |
-ROW |14289 |{14464}>{$ICMP_LOSS_WARN} and {14464}<100 |High ICMP ping loss | |0 |2 | |14252 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14290 |{14465}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14253 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14293 |{14468}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14251 |0 |0 |0 | |0 | |0 | |
-ROW |14294 |{14469}>{$ICMP_LOSS_WARN} and {14469}<100 |High ICMP ping loss | |0 |2 | |14252 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14295 |{14470}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14253 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14311 |{14508}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14312 |{14509}>{$ICMP_LOSS_WARN} and {14509}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14313 |{14510}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14327 |{14536}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14328 |{14537}>{$ICMP_LOSS_WARN} and {14537}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14329 |{14538}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14347 |{14570}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14348 |{14571}>{$ICMP_LOSS_WARN} and {14571}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14349 |{14572}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14356 |{14587}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14357 |{14588}>{$ICMP_LOSS_WARN} and {14588}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14358 |{14589}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14389 |{14641}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14390 |{14642}>{$ICMP_LOSS_WARN} and {14642}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14391 |{14643}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14403 |{14663}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14404 |{14664}>{$ICMP_LOSS_WARN} and {14664}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14405 |{14665}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14411 |{14672}=1 and {14673}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |
-ROW |14413 |{14676}=1 and {14677}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |
-ROW |14428 |{14698}=1 and {14699}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |
-ROW |14430 |{14702}=1 and {14703}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |
-ROW |14437 |{14722}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |14420 |0 |2 |1 |{14723}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14439 |{14726}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |14420 |0 |2 |1 |{14727}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |14451 |{14747}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14452 |{14748}>{$ICMP_LOSS_WARN} and {14748}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14453 |{14749}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14468 |{14776}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14469 |{14777}>{$ICMP_LOSS_WARN} and {14777}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14470 |{14778}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14486 |{14806}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14487 |{14807}>{$ICMP_LOSS_WARN} and {14807}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14488 |{14808}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14505 |{14838}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14506 |{14839}>{$ICMP_LOSS_WARN} and {14839}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14507 |{14840}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14524 |{14871}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14288 |0 |0 |0 | |0 | |0 | |
-ROW |14525 |{14872}>{$ICMP_LOSS_WARN} and {14872}<100 |High ICMP ping loss | |0 |2 | |14289 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14526 |{14873}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14534 |{14889}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14535 |{14890}>{$ICMP_LOSS_WARN} and {14890}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14536 |{14891}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14544 |{14907}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14545 |{14908}>{$ICMP_LOSS_WARN} and {14908}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14546 |{14909}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14582 |{14972}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14583 |{14973}>{$ICMP_LOSS_WARN} and {14973}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14584 |{14974}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14598 |{15000}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14599 |{15001}>{$ICMP_LOSS_WARN} and {15001}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14600 |{15002}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14615 |{15032}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14616 |{15033}>{$ICMP_LOSS_WARN} and {15033}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14617 |{15034}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14652 |{15094}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14653 |{15095}>{$ICMP_LOSS_WARN} and {15095}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14654 |{15096}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14673 |{15131}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14674 |{15132}>{$ICMP_LOSS_WARN} and {15132}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14675 |{15133}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14691 |{15163}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14692 |{15164}>{$ICMP_LOSS_WARN} and {15164}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14693 |{15165}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14704 |{15186}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14705 |{15187}>{$ICMP_LOSS_WARN} and {15187}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14706 |{15188}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14717 |{15209}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14288 |0 |0 |0 | |0 | |0 | |
-ROW |14718 |{15210}>{$ICMP_LOSS_WARN} and {15210}<100 |High ICMP ping loss | |0 |2 | |14289 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14719 |{15211}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14906 |{15678}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14907 |{15679}>{$ICMP_LOSS_WARN} and {15679}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14908 |{15680}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14928 |{15713}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |14929 |{15714}>{$ICMP_LOSS_WARN} and {15714}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |14930 |{15715}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |14940 |{15730}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14939 |0 |2 |0 | |0 | |1 | |
-ROW |14942 |{15732}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14943 |{15733}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14944 |{15734}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14945 |{15735}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14946 |{15736}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14947 |{15737}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14948 |{15738}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14949 |{15739}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14950 |{15740}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14951 |{15741}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |14953 |{15743}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |15208 |{16445}=1 and {16446}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |
-ROW |15209 |{16447}=1 and {16448}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |
-ROW |15214 |{16457}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |14420 |0 |2 |1 |{16458}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15220 |{16472}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |15221 |{16473}>{$ICMP_LOSS_WARN} and {16473}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |15222 |{16474}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |15348 |{16848}>{$TEMP_WARN:""}&eol;or&eol;{16849}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |15342 |0 |2 |1 |{16850}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15349 |{16851}>{$TEMP_WARN:""}&eol;or&eol;{16852}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |15342 |0 |2 |1 |{16853}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15350 |{16854}>{$TEMP_WARN:""}&eol;or&eol;{16855}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |15342 |0 |2 |1 |{16856}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15351 |{16857}>{$TEMP_CRIT:""}&eol;or&eol;{16858}={$TEMP_CRIT_STATUS}&eol;or&eol;{16858}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |15343 |0 |2 |1 |{16859}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15352 |{16860}>{$TEMP_CRIT:""}&eol;or&eol;{16861}={$TEMP_CRIT_STATUS}&eol;or&eol;{16861}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |15343 |0 |2 |1 |{16862}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15353 |{16863}>{$TEMP_CRIT:""}&eol;or&eol;{16864}={$TEMP_CRIT_STATUS}&eol;or&eol;{16864}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |15343 |0 |2 |1 |{16865}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
-ROW |15354 |{16866}=1 or {16867}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15355 |{16868}=1 or {16869}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15356 |{16870}=1 or {16871}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15357 |{16872}=1 or {16873}=1 |{#SENSOR_INFO}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |15345 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15358 |{16874}=1 or {16875}=1 |{#SENSOR_INFO}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |15345 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15359 |{16876}=1 or {16877}=1 |{#SENSOR_INFO}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |15345 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15360 |{16878}=1 or {16879}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |15346 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15361 |{16880}=1 or {16881}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |15346 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15362 |{16882}=1 or {16883}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |15346 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15363 |{16884}=1 or {16885}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |15347 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15364 |{16886}=1 or {16887}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |15347 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15365 |{16888}=1 or {16889}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |15347 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |15492 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17241}=2 and {17242}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15490 |0 |2 |1 |{17241}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15493 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17243}=2 and {17244}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15490 |0 |2 |1 |{17243}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15498 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17253}=2 and {17254}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15496 |0 |2 |1 |{17253}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15499 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17255}=2 and {17256}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15496 |0 |2 |1 |{17255}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15510 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17277}=2 and {17278}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17277}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15511 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17279}=2 and {17280}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17279}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15512 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17281}=2 and {17282}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17281}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15513 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17283}=2 and {17284}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17283}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15514 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17285}=2 and {17286}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17285}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15515 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17287}=2 and {17288}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17287}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15516 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17289}=2 and {17290}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17289}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15517 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17291}=2 and {17292}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17291}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15518 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17293}=2 and {17294}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17293}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15519 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17295}=2 and {17296}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17295}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15520 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17297}=2 and {17298}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17297}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15521 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17299}=2 and {17300}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17299}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15522 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17301}=2 and {17302}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17301}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15523 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17303}=2 and {17304}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17303}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15524 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17305}=2 and {17306}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17305}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15525 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17307}=2 and {17308}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17307}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15527 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17311}=2 and {17312}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17311}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15528 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17313}=2 and {17314}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17313}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15529 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17315}=2 and {17316}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17315}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15672 |{17697}<0 and {17698}>0&eol;and (&eol;{17699}=6 or&eol;{17699}=7 or&eol;{17699}=11 or&eol;{17699}=62 or&eol;{17699}=69 or&eol;{17699}=117&eol;)&eol;and&eol;({17700}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17697}>0 and {17701}>0) or&eol;({17700}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15673 |{17702}<0 and {17703}>0&eol;and (&eol;{17704}=6 or&eol;{17704}=7 or&eol;{17704}=11 or&eol;{17704}=62 or&eol;{17704}=69 or&eol;{17704}=117&eol;)&eol;and&eol;({17705}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17702}>0 and {17706}>0) or&eol;({17705}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15674 |{17707}<0 and {17708}>0&eol;and (&eol;{17709}=6 or&eol;{17709}=7 or&eol;{17709}=11 or&eol;{17709}=62 or&eol;{17709}=69 or&eol;{17709}=117&eol;)&eol;and&eol;({17710}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17707}>0 and {17711}>0) or&eol;({17710}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15675 |{17712}<0 and {17713}>0&eol;and (&eol;{17714}=6 or&eol;{17714}=7 or&eol;{17714}=11 or&eol;{17714}=62 or&eol;{17714}=69 or&eol;{17714}=117&eol;)&eol;and&eol;({17715}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17712}>0 and {17716}>0) or&eol;({17715}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15676 |{17717}<0 and {17718}>0&eol;and (&eol;{17719}=6 or&eol;{17719}=7 or&eol;{17719}=11 or&eol;{17719}=62 or&eol;{17719}=69 or&eol;{17719}=117&eol;)&eol;and&eol;({17720}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17717}>0 and {17721}>0) or&eol;({17720}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15677 |{17722}<0 and {17723}>0&eol;and (&eol;{17724}=6 or&eol;{17724}=7 or&eol;{17724}=11 or&eol;{17724}=62 or&eol;{17724}=69 or&eol;{17724}=117&eol;)&eol;and&eol;({17725}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17722}>0 and {17726}>0) or&eol;({17725}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15678 |{17727}<0 and {17728}>0&eol;and (&eol;{17729}=6 or&eol;{17729}=7 or&eol;{17729}=11 or&eol;{17729}=62 or&eol;{17729}=69 or&eol;{17729}=117&eol;)&eol;and&eol;({17730}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17727}>0 and {17731}>0) or&eol;({17730}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15679 |{17732}<0 and {17733}>0&eol;and (&eol;{17734}=6 or&eol;{17734}=7 or&eol;{17734}=11 or&eol;{17734}=62 or&eol;{17734}=69 or&eol;{17734}=117&eol;)&eol;and&eol;({17735}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17732}>0 and {17736}>0) or&eol;({17735}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15680 |{17737}<0 and {17738}>0&eol;and (&eol;{17739}=6 or&eol;{17739}=7 or&eol;{17739}=11 or&eol;{17739}=62 or&eol;{17739}=69 or&eol;{17739}=117&eol;)&eol;and&eol;({17740}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17737}>0 and {17741}>0) or&eol;({17740}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15681 |{17742}<0 and {17743}>0&eol;and (&eol;{17744}=6 or&eol;{17744}=7 or&eol;{17744}=11 or&eol;{17744}=62 or&eol;{17744}=69 or&eol;{17744}=117&eol;)&eol;and&eol;({17745}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17742}>0 and {17746}>0) or&eol;({17745}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15682 |{17747}<0 and {17748}>0&eol;and (&eol;{17749}=6 or&eol;{17749}=7 or&eol;{17749}=11 or&eol;{17749}=62 or&eol;{17749}=69 or&eol;{17749}=117&eol;)&eol;and&eol;({17750}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17747}>0 and {17751}>0) or&eol;({17750}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15683 |{17752}<0 and {17753}>0&eol;and (&eol;{17754}=6 or&eol;{17754}=7 or&eol;{17754}=11 or&eol;{17754}=62 or&eol;{17754}=69 or&eol;{17754}=117&eol;)&eol;and&eol;({17755}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17752}>0 and {17756}>0) or&eol;({17755}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15684 |{17757}<0 and {17758}>0&eol;and (&eol;{17759}=6 or&eol;{17759}=7 or&eol;{17759}=11 or&eol;{17759}=62 or&eol;{17759}=69 or&eol;{17759}=117&eol;)&eol;and&eol;({17760}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17757}>0 and {17761}>0) or&eol;({17760}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15685 |{17762}<0 and {17763}>0&eol;and (&eol;{17764}=6 or&eol;{17764}=7 or&eol;{17764}=11 or&eol;{17764}=62 or&eol;{17764}=69 or&eol;{17764}=117&eol;)&eol;and&eol;({17765}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17762}>0 and {17766}>0) or&eol;({17765}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15686 |{17767}<0 and {17768}>0&eol;and (&eol;{17769}=6 or&eol;{17769}=7 or&eol;{17769}=11 or&eol;{17769}=62 or&eol;{17769}=69 or&eol;{17769}=117&eol;)&eol;and&eol;({17770}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17767}>0 and {17771}>0) or&eol;({17770}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15687 |{17772}<0 and {17773}>0&eol;and (&eol;{17774}=6 or&eol;{17774}=7 or&eol;{17774}=11 or&eol;{17774}=62 or&eol;{17774}=69 or&eol;{17774}=117&eol;)&eol;and&eol;({17775}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17772}>0 and {17776}>0) or&eol;({17775}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15689 |{17782}<0 and {17783}>0&eol;and (&eol;{17784}=6 or&eol;{17784}=7 or&eol;{17784}=11 or&eol;{17784}=62 or&eol;{17784}=69 or&eol;{17784}=117&eol;)&eol;and&eol;({17785}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17782}>0 and {17786}>0) or&eol;({17785}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15690 |{17787}<0 and {17788}>0&eol;and (&eol;{17789}=6 or&eol;{17789}=7 or&eol;{17789}=11 or&eol;{17789}=62 or&eol;{17789}=69 or&eol;{17789}=117&eol;)&eol;and&eol;({17790}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17787}>0 and {17791}>0) or&eol;({17790}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15691 |{17792}<0 and {17793}>0&eol;and (&eol;{17794}=6 or&eol;{17794}=7 or&eol;{17794}=11 or&eol;{17794}=62 or&eol;{17794}=69 or&eol;{17794}=117&eol;)&eol;and&eol;({17795}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17792}>0 and {17796}>0) or&eol;({17795}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15693 |{17802}<0 and {17803}>0&eol;and (&eol;{17804}=6 or&eol;{17804}=7 or&eol;{17804}=11 or&eol;{17804}=62 or&eol;{17804}=69 or&eol;{17804}=117&eol;)&eol;and&eol;({17805}<>2)|Interface {#IFDESCR}: 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. Ack to close. |15692 |0 |2 |1 |({17802}>0 and {17806}>0) or&eol;({17805}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15694 |{17807}<0 and {17808}>0&eol;and (&eol;{17809}=6 or&eol;{17809}=7 or&eol;{17809}=11 or&eol;{17809}=62 or&eol;{17809}=69 or&eol;{17809}=117&eol;)&eol;and&eol;({17810}<>2)|Interface {#IFDESCR}: 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. Ack to close. |15692 |0 |2 |1 |({17807}>0 and {17811}>0) or&eol;({17810}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15696 |{17817}<0 and {17818}>0&eol;and (&eol;{17819}=6 or&eol;{17819}=7 or&eol;{17819}=11 or&eol;{17819}=62 or&eol;{17819}=69 or&eol;{17819}=117&eol;)&eol;and&eol;({17820}<>2)|Interface {#IFDESCR}: 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. Ack to close. |15695 |0 |2 |1 |({17817}>0 and {17821}>0) or&eol;({17820}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15697 |{17822}<0 and {17823}>0&eol;and (&eol;{17824}=6 or&eol;{17824}=7 or&eol;{17824}=11 or&eol;{17824}=62 or&eol;{17824}=69 or&eol;{17824}=117&eol;)&eol;and&eol;({17825}<>2)|Interface {#IFDESCR}: 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. Ack to close. |15695 |0 |2 |1 |({17822}>0 and {17826}>0) or&eol;({17825}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15700 |{17837}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |15701 |{17838}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |15702 |{17839}>{$ICMP_LOSS_WARN} and {17839}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |15703 |{17840}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |15708 |{17848}<0 and {17849}>0&eol;and (&eol;{17850}=6 or&eol;{17850}=7 or&eol;{17850}=11 or&eol;{17850}=62 or&eol;{17850}=69 or&eol;{17850}=117&eol;)&eol;and&eol;({17851}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17848}>0 and {17852}>0) or&eol;({17851}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15709 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17853}=2 and {17854}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17853}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |15723 |{17874}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |15724 |{17875}>{$ICMP_LOSS_WARN} and {17875}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |15725 |{17876}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |15755 |{17926}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |15756 |{17927}>{$ICMP_LOSS_WARN} and {17927}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |15757 |{17928}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |15798 |{17995}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14288 |0 |0 |0 | |0 | |0 | |
-ROW |15799 |{17996}>{$ICMP_LOSS_WARN} and {17996}<100 |High ICMP ping loss | |0 |2 | |14289 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |15800 |{17997}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |15819 |{18026}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |15820 |{18027}>{$ICMP_LOSS_WARN} and {18027}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |15821 |{18028}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |15840 |{18057}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |15841 |{18058}>{$ICMP_LOSS_WARN} and {18058}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |15842 |{18059}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |15854 |{18077}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |15853 |0 |0 |1 |{18077}<65 |0 | |0 | |
-ROW |15856 |{18079}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |15855 |0 |0 |1 |{18079}<65 |0 | |0 | |
-ROW |15989 |{18223}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
-ROW |15990 |{18224}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |15991 |{18225}>{$ICMP_LOSS_WARN} and {18225}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |15992 |{18226}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |15997 |{18234}<0 and {18235}>0&eol;and (&eol;{18236}=6 or&eol;{18236}=7 or&eol;{18236}=11 or&eol;{18236}=62 or&eol;{18236}=69 or&eol;{18236}=117&eol;)&eol;and&eol;({18237}<>2)|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. Ack to close. |15671 |0 |2 |1 |({18234}>0 and {18238}>0) or&eol;({18237}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |15998 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18239}=2 and {18240}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{18239}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16003 |{18248}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |15999 |0 |0 |0 | |0 | |0 | |
-ROW |16004 |{18249}<{$MEMORY.AVAILABLE.MIN} and {18250}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |16000 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16005 |{18251}<{$SWAP.PFREE.MIN.WARN} and {18252}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16001 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16012 |{18266}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16007 |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16013 |{18267}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18268}-{18269})<5G or {18270}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16008 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16014 |{18271}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18272}-{18273})<10G or {18274}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16009 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16015 |{18275}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16010 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16016 |{18276}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16011 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16017 |{18277}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |16018 |{18278}>{$ICMP_LOSS_WARN} and {18278}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |16019 |{18279}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |16028 |{18291}<0 and {18292}>0&eol;and (&eol;{18293}=6 or&eol;{18293}=7 or&eol;{18293}=11 or&eol;{18293}=62 or&eol;{18293}=69 or&eol;{18293}=117&eol;)&eol;and&eol;({18294}<>2)|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. Ack to close. |15698 |0 |2 |1 |({18291}>0 and {18295}>0) or&eol;({18294}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16029 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18296}=2 and {18297}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15502 |0 |2 |1 |{18296}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16045 |{18321}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16031 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16046 |{18322}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16045 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16047 |{18323}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16032 |0 |0 |0 | |0 | |0 | |
-ROW |16048 |{18324}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16047 |0 |0 |0 | |0 | |0 | |
-ROW |16049 |{18325}<{$MEMORY.AVAILABLE.MIN} and {18326}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |16033 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16050 |{18327}<{$MEMORY.AVAILABLE.MIN} and {18328}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |16049 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16051 |{18329}<{$SWAP.PFREE.MIN.WARN} and {18330}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16034 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16052 |{18331}<{$SWAP.PFREE.MIN.WARN} and {18332}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16051 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16053 |{18333}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |16035 |0 |0 |0 | |0 | |1 | |
-ROW |16054 |{18334}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |16053 |0 |0 |0 | |0 | |1 | |
-ROW |16055 |{18335}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16036 |0 |0 |0 | |0 | |1 | |
-ROW |16056 |{18336}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16055 |0 |0 |0 | |0 | |1 | |
-ROW |16059 |{18341}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |16038 |0 |0 |0 | |0 | |0 | |
-ROW |16060 |{18342}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |16059 |0 |0 |0 | |0 | |0 | |
-ROW |16061 |{18343}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |16039 |0 |0 |0 | |0 | |0 | |
-ROW |16062 |{18344}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |16061 |0 |0 |0 | |0 | |0 | |
-ROW |16063 |{18345}/{18346}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |16040 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
-ROW |16064 |{18347}/{18348}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |16063 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
-ROW |16065 |{18349}>0 |/etc/passwd has been changed | |0 |1 | |16041 |0 |0 |0 | |0 | |1 | |
-ROW |16066 |{18350}>0 |/etc/passwd has been changed | |0 |1 | |16065 |0 |0 |0 | |0 | |1 | |
-ROW |16067 |{18351}=1 and {18352}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16042 |0 |0 |2 | |0 | |1 | |
-ROW |16068 |{18353}=1 and {18354}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16067 |0 |0 |2 | |0 | |1 | |
-ROW |16077 |{18376}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18377}-{18378})<5G or {18379}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16069 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16078 |{18380}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18381}-{18382})<5G or {18383}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16077 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16079 |{18384}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18385}-{18386})<10G or {18387}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16070 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16080 |{18388}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18389}-{18390})<10G or {18391}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16079 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16081 |{18392}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16071 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16082 |{18393}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16081 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16083 |{18394}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16072 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16084 |{18395}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16083 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16087 |{18398}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18399}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16074 |0 |2 |1 |{18400}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18401}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16088 |{18402}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18403}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16087 |0 |2 |1 |{18404}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18405}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16089 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18406}=2 and {18407}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16075 |0 |2 |1 |{18406}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16090 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18408}=2 and {18409}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16089 |0 |2 |1 |{18408}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16091 |{18410}<0 and {18411}>0&eol;and&eol;({18411}=6&eol;or {18411}=1)&eol;and&eol;({18412}<>2) |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. Ack to close. |16076 |0 |2 |1 |({18410}>0 and {18413}>0) or&eol;({18412}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16092 |{18414}<0 and {18415}>0&eol;and&eol;({18415}=6&eol;or {18415}=1)&eol;and&eol;({18416}<>2) |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. Ack to close. |16091 |0 |2 |1 |({18414}>0 and {18417}>0) or&eol;({18416}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16110 |{18442}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16097 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16111 |{18443}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16098 |0 |0 |0 | |0 | |0 | |
-ROW |16112 |{18444}<{$MEMORY.AVAILABLE.MIN} and {18445}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |16099 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16113 |{18446}<{$SWAP.PFREE.MIN.WARN} and {18447}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16100 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16114 |{18448}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |16101 |0 |0 |0 | |0 | |1 | |
-ROW |16115 |{18449}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16102 |0 |0 |0 | |0 | |1 | |
-ROW |16117 |{18452}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |16104 |0 |0 |0 | |0 | |0 | |
-ROW |16118 |{18453}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |16105 |0 |0 |0 | |0 | |0 | |
-ROW |16119 |{18454}/{18455}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |16106 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
-ROW |16120 |{18456}>0 |/etc/passwd has been changed | |0 |1 | |16107 |0 |0 |0 | |0 | |1 | |
-ROW |16121 |{18457}=1 and {18458}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16108 |0 |0 |2 | |0 | |1 | |
-ROW |16130 |{18480}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18481}-{18482})<5G or {18483}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16122 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16131 |{18484}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18485}-{18486})<10G or {18487}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16123 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16132 |{18488}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16124 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16133 |{18489}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16125 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
-ROW |16135 |{18491}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18492}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16127 |0 |2 |1 |{18493}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18494}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16136 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18495}=2 and {18496}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16128 |0 |2 |1 |{18495}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16137 |{18497}<0 and {18498}>0&eol;and&eol;({18498}=6&eol;or {18498}=1)&eol;and&eol;({18499}<>2) |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. Ack to close. |16129 |0 |2 |1 |({18497}>0 and {18500}>0) or&eol;({18499}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16171 |{18561}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16160 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16172 |{18562}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |16161 |0 |0 |0 | |0 | |0 | |
-ROW |16173 |{18563}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |16162 |0 |0 |0 | |0 | |0 | |
-ROW |16175 |{18565}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16164 |0 |0 |0 | |0 | |0 | |
-ROW |16176 |{18566}<{$SWAP.PFREE.MIN.WARN} and {18567}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16165 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16177 |{18568}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |16166 |0 |0 |0 | |0 | |0 | |
-ROW |16178 |{18569}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |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. |16167 |0 |0 |0 | |0 | |0 | |
-ROW |16179 |{18570}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |16168 |0 |0 |0 | |0 | |1 | |
-ROW |16180 |{18571}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16169 |0 |0 |0 | |0 | |1 | |
-ROW |16189 |{18597}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18598}-{18599})<5G or {18600}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16182 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16190 |{18601}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18602}-{18603})<10G or {18604}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16183 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16191 |{18605}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |16184 |0 |2 |0 | |0 | |1 | |
-ROW |16192 |({18606}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18607} or&eol;{18608}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18607}) and&eol;{18607}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16185 |0 |2 |1 |{18606}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18607} and&eol;{18608}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18607}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16193 |{18609}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18610}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16186 |0 |2 |1 |{18611}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18612}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16194 |{18613}<0 and {18614}>0&eol;and (&eol;{18615}=6 or&eol;{18615}=7 or&eol;{18615}=11 or&eol;{18615}=62 or&eol;{18615}=69 or&eol;{18615}=117&eol;)&eol;and&eol;({18616}<>2)|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. Ack to close. |16187 |0 |2 |1 |({18613}>0 and {18617}>0) or&eol;({18616}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16195 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18618}=2 and {18619}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16188 |0 |2 |1 |{18618}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16198 |{18622}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
-ROW |16199 |{18623}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16198 |0 |0 |0 | |0 | |1 | |
-ROW |16200 |{18624}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
-ROW |16201 |{18625}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
-ROW |16202 |{18626}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
-ROW |16203 |{18627}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
-ROW |16204 |{18628}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
-ROW |16205 |{18629}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
-ROW |16206 |{18630}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
-ROW |16208 |{18632}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |16197 |0 |0 |0 | |0 | |1 | |
-ROW |16220 |{18646}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16209 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16221 |{18647}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |16210 |0 |0 |0 | |0 | |0 | |
-ROW |16222 |{18648}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |16211 |0 |0 |0 | |0 | |0 | |
-ROW |16224 |{18650}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16213 |0 |0 |0 | |0 | |0 | |
-ROW |16225 |{18651}<{$SWAP.PFREE.MIN.WARN} and {18652}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16214 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
-ROW |16226 |{18653}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |16215 |0 |0 |0 | |0 | |0 | |
-ROW |16227 |{18654}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |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. |16216 |0 |0 |0 | |0 | |0 | |
-ROW |16228 |{18655}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |16217 |0 |0 |0 | |0 | |1 | |
-ROW |16229 |{18656}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16218 |0 |0 |0 | |0 | |1 | |
-ROW |16238 |{18682}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18683}-{18684})<5G or {18685}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16231 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16239 |{18686}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18687}-{18688})<10G or {18689}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16232 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16240 |{18690}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |16233 |0 |2 |0 | |0 | |1 | |
-ROW |16241 |({18691}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18692} or&eol;{18693}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18692}) and&eol;{18692}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16234 |0 |2 |1 |{18691}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18692} and&eol;{18693}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18692}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16242 |{18694}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18695}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16235 |0 |2 |1 |{18696}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18697}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16243 |{18698}<0 and {18699}>0&eol;and (&eol;{18700}=6 or&eol;{18700}=7 or&eol;{18700}=11 or&eol;{18700}=62 or&eol;{18700}=69 or&eol;{18700}=117&eol;)&eol;and&eol;({18701}<>2)|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. Ack to close. |16236 |0 |2 |1 |({18698}>0 and {18702}>0) or&eol;({18701}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
-ROW |16244 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18703}=2 and {18704}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16237 |0 |2 |1 |{18703}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
-ROW |16274 |{18736}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |16273 |0 |0 |1 |{18736}<65 |0 | |0 | |
-ROW |16278 |{18741}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16275 |0 |0 |0 | |0 | |1 | |
-ROW |16279 |{18742}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16275 |0 |0 |0 | |0 | |1 | |
-ROW |16280 |{18743}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16275 |0 |0 |0 | |0 | |1 | |
-ROW |16284 |{18750}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16277 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16285 |{18751}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16277 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16286 |{18752}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16277 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16290 |{18757}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16291 |{18758}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16292 |{18759}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16293 |{18760}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16294 |{18761}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16295 |{18762}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16296 |{18763}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16297 |{18764}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16298 |{18765}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16299 |{18766}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16300 |{18767}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16301 |{18768}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16302 |{18769}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16303 |{18770}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16304 |{18771}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16305 |{18772}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16306 |{18773}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16307 |{18774}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16308 |{18775}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16309 |{18776}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16310 |{18777}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16311 |{18778}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16312 |{18779}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16313 |{18780}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16314 |{18781}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16315 |{18782}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16316 |{18783}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16317 |{18784}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16318 |{18785}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16348 |{18844}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16349 |{18845}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16350 |{18846}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16351 |{18847}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16352 |{18848}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16353 |{18849}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16354 |{18850}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16355 |{18851}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16356 |{18852}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16357 |{18853}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16358 |{18854}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16359 |{18855}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16360 |{18856}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16361 |{18857}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16362 |{18858}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16363 |{18859}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16364 |{18860}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16365 |{18861}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16366 |{18862}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16367 |{18863}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16368 |{18864}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16369 |{18865}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16370 |{18866}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16371 |{18867}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16372 |{18868}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16373 |{18869}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16374 |{18870}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16375 |{18871}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16376 |{18872}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16381 |({18887}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18888} or&eol;{18889}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18888}) and&eol;{18888}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18887}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18888} and&eol;{18889}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18888}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16382 |({18890}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18891} or&eol;{18892}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18891}) and&eol;{18891}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18890}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18891} and&eol;{18892}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18891}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16383 |({18893}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18894} or&eol;{18895}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18894}) and&eol;{18894}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18893}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18894} and&eol;{18895}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18894}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16384 |({18896}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18897} or&eol;{18898}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18897}) and&eol;{18897}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18896}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18897} and&eol;{18898}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18897}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16385 |({18899}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18900} or&eol;{18901}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18900}) and&eol;{18900}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18899}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18900} and&eol;{18901}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18900}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16386 |({18902}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18903} or&eol;{18904}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18903}) and&eol;{18903}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18902}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18903} and&eol;{18904}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18903}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16387 |({18905}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18906} or&eol;{18907}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18906}) and&eol;{18906}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18905}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18906} and&eol;{18907}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18906}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16388 |({18908}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18909} or&eol;{18910}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18909}) and&eol;{18909}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18908}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18909} and&eol;{18910}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18909}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16389 |({18911}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18912} or&eol;{18913}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18912}) and&eol;{18912}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18911}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18912} and&eol;{18913}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18912}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16390 |({18914}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18915} or&eol;{18916}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18915}) and&eol;{18915}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18914}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18915} and&eol;{18916}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18915}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16391 |({18917}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18918} or&eol;{18919}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18918}) and&eol;{18918}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18917}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18918} and&eol;{18919}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18918}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16392 |({18920}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18921} or&eol;{18922}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18921}) and&eol;{18921}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18920}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18921} and&eol;{18922}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18921}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16393 |({18923}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18924} or&eol;{18925}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18924}) and&eol;{18924}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18923}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18924} and&eol;{18925}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18924}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16394 |({18926}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18927} or&eol;{18928}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18927}) and&eol;{18927}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18926}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18927} and&eol;{18928}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18927}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16395 |({18929}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18930} or&eol;{18931}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18930}) and&eol;{18930}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18929}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18930} and&eol;{18931}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18930}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16396 |({18932}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18933} or&eol;{18934}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18933}) and&eol;{18933}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18932}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18933} and&eol;{18934}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18933}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16397 |({18935}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18936} or&eol;{18937}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18936}) and&eol;{18936}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18935}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18936} and&eol;{18937}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18936}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16398 |({18938}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18939} or&eol;{18940}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18939}) and&eol;{18939}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18938}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18939} and&eol;{18940}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18939}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16399 |({18941}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18942} or&eol;{18943}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18942}) and&eol;{18942}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18941}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18942} and&eol;{18943}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18942}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16400 |({18944}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18945} or&eol;{18946}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18945}) and&eol;{18945}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18944}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18945} and&eol;{18946}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18945}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16401 |({18947}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18948} or&eol;{18949}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18948}) and&eol;{18948}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18947}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18948} and&eol;{18949}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18948}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16402 |{18950}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18951}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18952}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18953}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16403 |{18954}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18955}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18956}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18957}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16404 |{18958}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18959}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18960}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18961}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16405 |{18962}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18963}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18964}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18965}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16406 |{18966}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18967}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18968}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18969}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16407 |{18970}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18971}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18972}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18973}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16408 |{18974}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18975}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18976}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18977}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16409 |{18978}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18979}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18980}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18981}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16410 |{18982}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18983}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18984}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18985}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16411 |{18986}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18987}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18988}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18989}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16412 |{18990}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18991}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18992}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18993}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16413 |{18994}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18995}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18996}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18997}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16414 |{18998}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18999}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19000}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19001}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16415 |{19002}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19003}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19004}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19005}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16416 |{19006}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19007}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19008}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19009}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16417 |{19010}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19011}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19012}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19013}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16418 |{19014}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19015}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19016}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19017}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16419 |{19018}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19019}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19020}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19021}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16420 |{19022}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19023}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19024}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19025}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16421 |{19026}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19027}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19028}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19029}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16422 |{19030}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19031}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19032}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19033}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16425 |({19041}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19042} or&eol;{19043}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19042}) and&eol;{19042}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16423 |0 |2 |1 |{19041}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19042} and&eol;{19043}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19042}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16426 |({19044}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19045} or&eol;{19046}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19045}) and&eol;{19045}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16423 |0 |2 |1 |{19044}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19045} and&eol;{19046}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19045}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16427 |{19047}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19048}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16424 |0 |2 |1 |{19049}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19050}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16428 |{19051}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19052}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16424 |0 |2 |1 |{19053}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19054}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16431 |({19062}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19063} or&eol;{19064}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19063}) and&eol;{19063}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16429 |0 |2 |1 |{19062}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19063} and&eol;{19064}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19063}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16432 |({19065}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19066} or&eol;{19067}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19066}) and&eol;{19066}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16429 |0 |2 |1 |{19065}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19066} and&eol;{19067}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19066}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16433 |{19068}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19069}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16430 |0 |2 |1 |{19070}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19071}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16434 |{19072}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19073}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16430 |0 |2 |1 |{19074}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19075}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16437 |({19083}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19084} or&eol;{19085}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19084}) and&eol;{19084}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16435 |0 |2 |1 |{19083}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19084} and&eol;{19085}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19084}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
-ROW |16438 |{19086}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19087}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16436 |0 |2 |1 |{19088}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19089}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
-ROW |16441 |{19092}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |16197 |0 |0 |0 | |0 | |1 | |
-ROW |16453 |{19106}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
-ROW |16454 |{19107}>{$ICMP_LOSS_WARN} and {19107}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
-ROW |16455 |{19108}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
-ROW |16457 |{19111}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
-ROW |16458 |{19112}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
-ROW |16500 |{19181}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16498 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16501 |{19182}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16498 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16502 |{19183}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16499 |0 |0 |0 | |0 | |0 | |
-ROW |16503 |{19184}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16499 |0 |0 |0 | |0 | |0 | |
-ROW |16509 |{19194}=1 and {19195}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |2 | |0 | |1 | |
-ROW |16510 |{19196}=1 and {19197}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |2 | |0 | |1 | |
-ROW |16511 |{19198}=1 and {19199}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |2 | |0 | |1 | |
-ROW |16512 |{19200}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16508 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16516 |{19204}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16513 |0 |2 |0 | |0 | |0 | |
-ROW |16517 |{19205}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16513 |0 |2 |0 | |0 | |0 | |
-ROW |16518 |{19206}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16513 |0 |2 |0 | |0 | |0 | |
-ROW |16519 |{19207}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16514 |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16520 |{19208}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16515 |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16564 |{19273}/{19274}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19275}>0&eol;and {19276}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16563 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|
-ROW |16565 |{19277}/{19278}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19279}>0&eol;and {19280}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16564 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|
-ROW |16570 |{19291}/{19292}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19293}>0&eol;and {19294}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16569 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|
-ROW |16576 |{19309}/{19310}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19311}>0&eol;and {19312}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16575 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|
-ROW |16580 |{19318}=1 and {19319}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16579 |0 |0 |0 | |0 | |1 | |
-ROW |16581 |{19320}=1 and {19321}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16580 |0 |0 |0 | |0 | |1 | |
-ROW |16583 |{19324}=1 and {19325}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16582 |0 |0 |0 | |0 | |1 | |
-ROW |16586 |{19330}=1 and {19331}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16585 |0 |0 |0 | |0 | |1 | |
-ROW |16588 |{19334}=1 and {19335}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16587 |0 |0 |0 | |0 | |1 | |
-ROW |16590 |{19338}=1 and {19339}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16589 |0 |0 |0 | |0 | |1 | |
-ROW |16591 |{19340}=1 and {19341}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16589 |0 |0 |0 | |0 | |1 | |
-ROW |16592 |{19342}=1 and {19343}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16589 |0 |0 |0 | |0 | |1 | |
-ROW |16594 |{19346}=1 and {19347}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16595 |{19348}=1 and {19349}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16596 |{19350}=1 and {19351}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16597 |{19352}=1 and {19353}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16598 |{19354}=1 and {19355}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16599 |{19356}=1 and {19357}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16600 |{19358}=1 and {19359}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16601 |{19360}=1 and {19361}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16602 |{19362}=1 and {19363}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16603 |{19364}=1 and {19365}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16604 |{19366}=1 and {19367}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16605 |{19368}=1 and {19369}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16606 |{19370}=1 and {19371}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16607 |{19372}=1 and {19373}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16608 |{19374}=1 and {19375}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16609 |{19376}=1 and {19377}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16610 |{19378}=1 and {19379}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16611 |{19380}=1 and {19381}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16612 |{19382}=1 and {19383}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16613 |{19384}=1 and {19385}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16614 |{19386}=1 and {19387}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16615 |{19388}=1 and {19389}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16616 |{19390}=1 and {19391}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16617 |{19392}=1 and {19393}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16618 |{19394}=1 and {19395}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16619 |{19396}=1 and {19397}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16620 |{19398}=1 and {19399}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16621 |{19400}=1 and {19401}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16622 |{19402}=1 and {19403}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16623 |{19404}=1 and {19405}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
-ROW |16625 |{19407}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16624 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16626 |{19408}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16627 |{19409}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16628 |{19410}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16632 |{19420}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16629 |0 |2 |0 | |0 | |0 | |
-ROW |16633 |{19421}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16632 |0 |2 |0 | |0 | |0 | |
-ROW |16634 |{19422}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16632 |0 |2 |0 | |0 | |0 | |
-ROW |16635 |{19423}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16632 |0 |2 |0 | |0 | |0 | |
-ROW |16636 |{19424}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19425}-{19426})<5G or {19427}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16630 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16637 |{19428}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19429}-{19430})<5G or {19431}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16638 |{19432}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19433}-{19434})<5G or {19435}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16639 |{19436}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19437}-{19438})<5G or {19439}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16640 |{19440}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19441}-{19442})<10G or {19443}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16631 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16641 |{19444}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19445}-{19446})<10G or {19447}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16642 |{19448}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19449}-{19450})<10G or {19451}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16643 |{19452}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19453}-{19454})<10G or {19455}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16698 |{19519}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16697 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
-ROW |16702 |{19529}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16699 |0 |2 |0 | |0 | |0 | |
-ROW |16703 |{19530}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19531}-{19532})<5G or {19533}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16700 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16704 |{19534}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19535}-{19536})<10G or {19537}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16701 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
-ROW |16706 |{19540} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19541} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |16705 |0 |2 |0 | |0 | |1 | |
-ROW |16707 |{19542} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19543} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |16706 |0 |2 |0 | |0 | |1 | |
-ROW |16709 |{19546} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19547} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |16708 |0 |2 |0 | |0 | |1 | |
-ROW |16712 |{19551}>{$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. |16711 |0 |0 |0 | |0 | |0 | |
-ROW |16714 |{19553}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |16713 |0 |2 |0 | |0 | |0 | |
-ROW |16716 |{19555}>{$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. |16715 |0 |0 |0 | |0 | |0 | |
-ROW |16718 |{19557}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |16717 |0 |2 |0 | |0 | |0 | |
+FIELDS|triggerid|expression |description |url |status|priority|comments |templateid|type|flags|recovery_mode|recovery_expression |correlation_mode|correlation_tag|manual_close|opdata |
+ROW |13015 |{12641}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13017 |{12651}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13019 |{12649}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13023 |{12653}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13073 |{12645}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13074 |{12646}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13080 |{13164}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13164}<65 |0 | |0 | |
+ROW |13081 |{13170}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13170}<65 |0 | |0 | |
+ROW |13083 |{13172}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13172}<65 |0 | |0 | |
+ROW |13084 |{13174}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13174}<65 |0 | |0 | |
+ROW |13085 |{13176}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13176}<65 |0 | |0 | |
+ROW |13086 |{13178}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13178}<65 |0 | |0 | |
+ROW |13087 |{13180}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13180}<65 |0 | |0 | |
+ROW |13088 |{13182}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13182}<65 |0 | |0 | |
+ROW |13089 |{13184}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13184}<65 |0 | |0 | |
+ROW |13091 |{13188}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13188}<65 |0 | |0 | |
+ROW |13092 |{13190}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13190}<65 |0 | |0 | |
+ROW |13093 |{13192}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13192}<65 |0 | |0 | |
+ROW |13094 |{13198}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13198}<65 |0 | |0 | |
+ROW |13095 |{13200}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13200}<65 |0 | |0 | |
+ROW |13096 |{13202}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13202}<65 |0 | |0 | |
+ROW |13097 |{13204}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13204}<65 |0 | |0 | |
+ROW |13275 |{13186}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13186}<65 |0 | |0 | |
+ROW |13285 |{13159}=0 |Telnet service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13330 |{12717}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13331 |{12718}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13332 |{13089}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13333 |{13088}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13334 |{13087}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13336 |{12723}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13337 |{12724}<50 |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 | |
+ROW |13338 |{12725}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13339 |{12726}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13340 |{12727}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13341 |{12728}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13342 |{12729}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13343 |{12730}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13346 |{12733}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13347 |{12734}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13348 |{13074}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13349 |{13073}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13350 |{13072}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13352 |{12739}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13353 |{12740}<50 |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 | |
+ROW |13354 |{12741}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13355 |{12742}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13356 |{12743}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13357 |{12744}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13358 |{12745}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13359 |{12746}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13364 |{13071}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13365 |{13070}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13366 |{13069}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13367 |{13068}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13368 |{12755}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13370 |{12757}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13371 |{12758}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13372 |{12759}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13373 |{12760}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13374 |{12761}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13375 |{12762}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13382 |{13075}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13384 |{12771}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13386 |{12773}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13388 |{12775}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13389 |{12776}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13390 |{12777}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13391 |{12778}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13395 |{12782}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13396 |{13093}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13397 |{13092}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13398 |{13091}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13399 |{13090}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13400 |{12787}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13401 |{12788}<50 |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 | |
+ROW |13402 |{12789}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13403 |{12790}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13404 |{12791}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13405 |{12792}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13406 |{12793}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13407 |{12794}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13410 |{12797}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13411 |{12798}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13414 |{13086}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13416 |{12803}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13418 |{12805}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13419 |{12806}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13420 |{12807}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13421 |{12808}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13422 |{12809}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13423 |{12810}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |13441 |{13194}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13194}<65 |0 | |0 | |
+ROW |13517 |{12946}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13518 |{12947}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13519 |{12948}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13520 |{12949}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13521 |{13206}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13206}<65 |0 | |0 | |
+ROW |13522 |{13208}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13208}<65 |0 | |0 | |
+ROW |13523 |{13210}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13210}<65 |0 | |0 | |
+ROW |13524 |{13211}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13211}<65 |0 | |0 | |
+ROW |13525 |{13212}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13212}<65 |0 | |0 | |
+ROW |13526 |{13213}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13213}<65 |0 | |0 | |
+ROW |13527 |{13214}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13214}<65 |0 | |0 | |
+ROW |13528 |{13215}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13215}<65 |0 | |0 | |
+ROW |13529 |{13216}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13216}<65 |0 | |0 | |
+ROW |13530 |{13217}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13217}<65 |0 | |0 | |
+ROW |13531 |{13218}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13218}<65 |0 | |0 | |
+ROW |13532 |{13219}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13219}<65 |0 | |0 | |
+ROW |13533 |{13220}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13220}<65 |0 | |0 | |
+ROW |13534 |{13207}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13207}<65 |0 | |0 | |
+ROW |13535 |{13209}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13209}<65 |0 | |0 | |
+ROW |13536 |{12965}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13544 |{12994}=0 |FTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13545 |{12995}=0 |HTTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13546 |{12996}=0 |HTTPS service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13547 |{12997}=0 |IMAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13548 |{12998}=0 |LDAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13549 |{13154}=0 |NNTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13550 |{13156}=0 |NTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13551 |{13152}=0 |POP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13552 |{13157}=0 |SMTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13553 |{13158}=0 |SSH service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13557 |{13160}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |13559 |{13196}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13196}<65 |0 | |0 | |
+ROW |13562 |{13222}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13222}<65 |0 | |0 | |
+ROW |13564 |{13224}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13224}<65 |0 | |0 | |
+ROW |13565 |{13225}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13225}<65 |0 | |0 | |
+ROW |13566 |{13226}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13226}<65 |0 | |0 | |
+ROW |13568 |{13228}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13228}<65 |0 | |0 | |
+ROW |13569 |{13229}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13229}<65 |0 | |0 | |
+ROW |14168 |{14257}>({14258}*0.7) |70% mem Heap Memory used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14169 |{14259}>({14260}*0.7) |70% mem Non-Heap Memory used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14170 |{14261}>({14262}*0.7) |70% mp CMS Old Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14171 |{14263}>({14264}*0.7) |70% mp CMS Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14172 |{14265}>({14266}*0.7) |70% mp Code Cache used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14173 |{14267}>({14268}*0.7) |70% mp Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14174 |{14269}>({14270}*0.7) |70% mp PS Old Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14175 |{14271}>({14272}*0.7) |70% mp PS Perm Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14176 |{14273}>({14274}*0.7) |70% mp Tenured Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14177 |{14275}>({14276}*0.7) |70% os Opened File Descriptor Count used on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14178 |{14277}>70 |70% os Process CPU Load on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14179 |{14278}<{14279} |gc Concurrent Mark Sweep in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14180 |{14280}<{14281} |gc Mark Sweep Compact in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14181 |{14282}<{14283} |gc PS Mark Sweep in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14182 |{14284}={14285} |mem Heap Memory fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14183 |{14286}={14287} |mem Non-Heap Memory fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14184 |{14288}={14289} |mp CMS Old Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14185 |{14290}={14291} |mp CMS Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14186 |{14292}={14293} |mp Code Cache fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14187 |{14294}={14295} |mp Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14188 |{14296}={14297} |mp PS Old Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14189 |{14298}={14299} |mp PS Perm Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14190 |{14300}={14301} |mp Tenured Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14191 |{14302}=1 |{HOST.NAME} is not reachable | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14192 |{14303}<>1 |{HOST.NAME} runs suboptimal VM type | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14193 |{14304}=1 |{HOST.NAME} uses suboptimal JIT compiler | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14195 |{14306}<1.597 or {14306}>2.019 |BB +1.8V SM Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14196 |{14307}<1.646 or {14307}>1.960 |BB +1.8V SM Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14197 |{14308}<2.876 or {14308}>3.729 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14198 |{14309}<2.970 or {14309}>3.618 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14199 |{14310}<2.876 or {14310}>3.729 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14200 |{14311}<2.970 or {14311}>3.618 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14201 |{14312}<4.362 or {14312}>5.663 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14202 |{14313}<4.483 or {14313}>5.495 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14203 |{14314}<5 or {14314}>66 |BB Ambient Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14204 |{14315}<10 or {14315}>61 |BB Ambient Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14205 |{14316}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14206 |{14317}<5 or {14317}>90 |Baseboard Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14207 |{14318}<10 or {14318}>83 |Baseboard Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14208 |{14319}<0.953 or {14319}>1.149 |BB +1.05V PCH Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14209 |{14320}<0.985 or {14320}>1.117 |BB +1.05V PCH Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14210 |{14321}<0.683 or {14321}>1.543 |BB +1.1V P1 Vccp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14211 |{14322}<0.708 or {14322}>1.501 |BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14212 |{14323}<1.362 or {14323}>1.635 |BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14213 |{14324}<1.401 or {14324}>1.589 |BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14214 |{14325}<2.982 or {14325}>3.625 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14215 |{14326}<3.067 or {14326}>3.525 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14216 |{14327}<2.982 or {14327}>3.625 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14217 |{14328}<3.067 or {14328}>3.525 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14218 |{14329}<4.471 or {14329}>5.538 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14219 |{14330}<4.630 or {14330}>5.380 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14220 |{14331}<0 or {14331}>48 |Front Panel Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14221 |{14332}<5 or {14332}>44 |Front Panel Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14222 |{14333}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14223 |{14334}<324 |System Fan 2 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14224 |{14335}<378 |System Fan 2 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14225 |{14336}<324 |System Fan 3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14226 |{14337}<378 |System Fan 3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14251 |{14378}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |14252 |{14379}>{$ICMP_LOSS_WARN} and {14379}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14253 |{14380}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14318 |{14515}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14516}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14319 |{14517}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14518}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14320 |{14519}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14520}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14322 |{14522}=1 and {14523}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14336 |{14545}=1 and {14546}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14337 |{14547}=1 and {14548}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14339 |{14552}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14553}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14340 |{14554}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14555}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14363 |{14594}=1 and {14595}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14364 |{14596}=1 and {14597}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14365 |{14598}=1 and {14599}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14372 |{14606}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14607}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14373 |{14608}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14609}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14374 |{14610}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14611}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14380 |{14620}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14621}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14381 |{14622}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14623}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14382 |{14624}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14625}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14383 |{14626}=1 and {14627}>0 |Unit {#SNMPVALUE}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14409 |{14669}=1 and {14670}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14417 |{14681}=1 and {14682}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14420 |{14689}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14690}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14460 |{14756}>{$TEMP_WARN:""} |Device {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14757}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14461 |{14758}>{$TEMP_CRIT:""} |Device {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14759}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14462 |{14760}<{$TEMP_CRIT_LOW:""} |Device {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14761}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14463 |{14762}=1 and {14763}>0 |#{#SNMPVALUE}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14474 |{14782}=1 and {14783}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14476 |{14785}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14786}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14477 |{14787}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14788}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14478 |{14789}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14790}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14492 |{14812}=1 and {14813}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14493 |{14814}=1 and {14815}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14495 |{14817}>{$TEMP_WARN:""} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14818}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14496 |{14819}>{$TEMP_CRIT:""} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14820}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14497 |{14821}<{$TEMP_CRIT_LOW:""} |#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14822}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14511 |{14844}>{$TEMP_WARN:""} |Device: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{14845}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14513 |{14849}<{$TEMP_CRIT_LOW:""} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |0 |1 |{14850}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14514 |{14851}=1 and {14852}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14515 |{14853}=1 and {14854}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14551 |{14914}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14915}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14552 |{14916}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14917}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14553 |{14918}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14919}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14556 |{14922}=1 and {14923}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14557 |{14924}=1 and {14925}>0 |{#ENT_NAME}: Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14589 |{14979}>{$TEMP_WARN:""} |{#ENT_NAME}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14980}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14590 |{14981}>{$TEMP_CRIT:""} |{#ENT_NAME}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14982}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14591 |{14983}<{$TEMP_CRIT_LOW:""} |{#ENT_NAME}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14984}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14592 |{14985}=1 and {14986}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14603 |{15005}=1 and {15006}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14606 |{15013}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15014}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14607 |{15015}=1 and {15016}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14621 |{15038}=1 and {15039}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14624 |{15042}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15043}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14625 |{15044}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15045}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14626 |{15046}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15047}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14658 |{15100}>{$TEMP_WARN:"Device"} |Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{15101}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14659 |{15102}>{$TEMP_CRIT:"Device"} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{15103}<{$TEMP_CRIT:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14660 |{15104}<{$TEMP_CRIT_LOW:"Device"} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"} | |0 |3 | |NULL |0 |0 |1 |{15105}>{$TEMP_CRIT_LOW:"Device"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14661 |{15106}=1 and {15107}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14662 |{15108}=1 and {15109}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14664 |{15111}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15112}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14665 |{15113}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15114}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14666 |{15115}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{15116}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14680 |{15138}=1 and {15139}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14683 |{15146}<{$TEMP_CRIT_LOW:""} |#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15147}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14698 |{15170}=1 and {15171}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14699 |{15172}=1 and {15173}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14709 |{15191}=1 and {15192}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14710 |{15193}=1 and {15194}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14724 |{15216}=1 and {15217}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14912 |{15684}=1 and {15685}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |14913 |{15686}=1 and {15687}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |14914 |{15688}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15689}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14915 |{15690}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15691}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14916 |{15692}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15693}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14934 |{15721}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15722}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14935 |{15723}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15724}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14937 |{15726}=1 and {15727}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14939 |{15729}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |1 | |
+ROW |14941 |{15731}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |1 | |
+ROW |15330 |{16818}=1 |#{#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15331 |{16819}=1 |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} |
+ROW |15332 |{16820}=1 |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} |
+ROW |15333 |{16821}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15334 |{16822}=1 |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} |
+ROW |15335 |{16823}>{$TEMP_WARN:""}&eol;or&eol;{16824}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16825}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15336 |{16826}>{$TEMP_CRIT:""}&eol;or&eol;{16827}={$TEMP_CRIT_STATUS} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16828}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15337 |{16829}=1 |{#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} |
+ROW |15338 |{16830}=1 |{#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} |
+ROW |15339 |{16831}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15340 |{16832}=1 |#{#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} |
+ROW |15341 |{16833}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15342 |{16834}>{$TEMP_WARN:""}&eol;or&eol;{16835}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16836}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15343 |{16837}>{$TEMP_CRIT:""}&eol;or&eol;{16838}={$TEMP_CRIT_STATUS}&eol;or&eol;{16838}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16839}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15344 |{16840}=1 or {16841}=1 |{#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} |
+ROW |15345 |{16842}=1 or {16843}=1 |{#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} |
+ROW |15346 |{16844}=1 or {16845}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15347 |{16846}=1 or {16847}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15366 |{16890}=1 |{#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} |
+ROW |15367 |{16891}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15368 |{16892}>{$TEMP_CRIT:""}&eol;or&eol;{16893}={$TEMP_CRIT_STATUS} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{16894}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15369 |{16895}=1 |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} |
+ROW |15370 |{16896}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15371 |{16897}=1 or {16898}=1 |{#ENT_NAME}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15372 |{16899}=1 or {16900}=1 or {16901}=1 |{#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} |
+ROW |15373 |{16902}=1 |{#ENT_DESCR}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15374 |{16903}=1 |{#ENT_DESCR}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15375 |{16904}=1 |{#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} |
+ROW |15376 |{16905}=1 |{#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} |
+ROW |15377 |{16906}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15378 |{16907}=1 |{#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} |
+ROW |15379 |{16908}=1 |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} |
+ROW |15380 |{16909}=1 |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} |
+ROW |15381 |{16910}=1 |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} |
+ROW |15382 |{16911}=1 |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} |
+ROW |15383 |{16912}=1 |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} |
+ROW |15384 |{16913}=1 |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} |
+ROW |15385 |{16914}=1 |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} |
+ROW |15386 |{16915}=1 |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} |
+ROW |15387 |{16916}>{$TEMP_WARN:""}&eol;or&eol;{16917}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16918}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15388 |{16919}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15389 |{16920}=1 |{#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} |
+ROW |15390 |{16921}>{$TEMP_WARN:""}&eol;or&eol;{16922}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16923}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15391 |{16924}=1 |{#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} |
+ROW |15392 |{16925}=1 |{#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} |
+ROW |15393 |{16926}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15394 |{16927}=1 |{#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} |
+ROW |15395 |{16928}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15396 |{16929}>{$TEMP_WARN:""}&eol;or&eol;{16930}={$TEMP_WARN_STATUS} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16931}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15397 |{16932}>{$TEMP_CRIT:""}&eol;or&eol;{16933}={$TEMP_CRIT_STATUS} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{16934}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15398 |{16935}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15399 |{16936}=1 |#{#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} |
+ROW |15490 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17237}=2 and {17238}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17237}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15496 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17249}=2 and {17250}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17249}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15502 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17261}=2 and {17262}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17261}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15506 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17269}=2 and {17270}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17269}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15508 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17273}=2 and {17274}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17273}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15640 |{17657}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15641 |{17658}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{17658}<65 |0 | |0 | |
+ROW |15670 |{17687}<0 and {17688}>0&eol;and (&eol;{17689}=6 or&eol;{17689}=7 or&eol;{17689}=11 or&eol;{17689}=62 or&eol;{17689}=69 or&eol;{17689}=117&eol;)&eol;and&eol;({17690}<>2)|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. Ack to close. |NULL |0 |2 |1 |({17687}>0 and {17691}>0) or&eol;({17690}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15671 |{17692}<0 and {17693}>0&eol;and (&eol;{17694}=6 or&eol;{17694}=7 or&eol;{17694}=11 or&eol;{17694}=62 or&eol;{17694}=69 or&eol;{17694}=117&eol;)&eol;and&eol;({17695}<>2)|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. Ack to close. |NULL |0 |2 |1 |({17692}>0 and {17696}>0) or&eol;({17695}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15692 |{17797}<0 and {17798}>0&eol;and (&eol;{17799}=6 or&eol;{17799}=7 or&eol;{17799}=11 or&eol;{17799}=62 or&eol;{17799}=69 or&eol;{17799}=117&eol;)&eol;and&eol;({17800}<>2)|Interface {#IFDESCR}: 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. Ack to close. |NULL |0 |2 |1 |({17797}>0 and {17801}>0) or&eol;({17800}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15695 |{17812}<0 and {17813}>0&eol;and (&eol;{17814}=6 or&eol;{17814}=7 or&eol;{17814}=11 or&eol;{17814}=62 or&eol;{17814}=69 or&eol;{17814}=117&eol;)&eol;and&eol;({17815}<>2)|Interface {#IFDESCR}: 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. Ack to close. |NULL |0 |2 |1 |({17812}>0 and {17816}>0) or&eol;({17815}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15698 |{17827}<0 and {17828}>0&eol;and (&eol;{17829}=6 or&eol;{17829}=7 or&eol;{17829}=11 or&eol;{17829}=62 or&eol;{17829}=69 or&eol;{17829}=117&eol;)&eol;and&eol;({17830}<>2)|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. Ack to close. |NULL |0 |2 |1 |({17827}>0 and {17831}>0) or&eol;({17830}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15714 |{17859}>{$TEMP_WARN:""}&eol;or&eol;{17860}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17861}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15715 |{17862}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17863}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15716 |{17864}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{17865}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15717 |{17866}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15718 |{17867}=1 and {17868}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |15719 |{17869}=1 |{#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} |
+ROW |15720 |{17870}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15721 |{17871}=1 or {17872}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15722 |{17873}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15728 |{17879}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15729 |{17880}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15730 |{17881}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15731 |{17882}=1 and {17883}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15732 |{17884}=1 and {17885}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |
+ROW |15733 |{17886}>{$TEMP_WARN:"CPU"}&eol;or&eol;{17887}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17888}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15734 |{17889}>{$TEMP_CRIT:"CPU"}&eol;or&eol;{17890}={$TEMP_CRIT_STATUS}&eol;or&eol;{17890}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17891}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15735 |{17892}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{17893}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15736 |{17894}>{$TEMP_WARN:"Ambient"}&eol;or&eol;{17895}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17896}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15737 |{17897}>{$TEMP_CRIT:"Ambient"}&eol;or&eol;{17898}={$TEMP_CRIT_STATUS}&eol;or&eol;{17898}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17899}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15738 |{17900}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{17901}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15739 |{17902}=1 or {17903}=1 |{#PSU_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} |
+ROW |15740 |{17904}=1 |{#PSU_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} |
+ROW |15741 |{17905}=1 or {17906}=1 or {17907}=1 or {17908}=1 or {17909}=1 |{#FAN_DESCR}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15742 |{17910}=1 or {17911}=1 |{#FAN_DESCR}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15743 |{17912}=1 or {17913}=1 |{#DISK_NAME}: Physical disk failed | |0 |4 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |
+ROW |15744 |{17914}=1 |{#DISK_NAME}: 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} |
+ROW |15745 |{17915}=1 and {17916}>0 |{#DISK_NAME}: Disk has been replaced (new serial number received) | |0 |1 |Disk serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |15746 |{17917}=1 |{#DISK_NAME}: Physical disk S.M.A.R.T. failed | |0 |4 |Disk probably requires replacement. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15747 |{17918}=1 |Disk {#SNMPVALUE}({#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} |
+ROW |15748 |{17919}=1 |Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk is in warning state | |0 |3 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15749 |{17920}=1 |{#CNTLR_NAME}: Disk array controller is in unrecoverable state! | |0 |5 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15750 |{17921}=1 |{#CNTLR_NAME}: 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} |
+ROW |15751 |{17922}=1 |{#CNTLR_NAME}: 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} |
+ROW |15752 |{17923}=1 |Battery {#BATTERY_NUM}: 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} |
+ROW |15753 |{17924}=1 |Battery {#BATTERY_NUM}: 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} |
+ROW |15754 |{17925}=1 |Battery {#BATTERY_NUM}: 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} |
+ROW |15762 |{17933}=1 and {17934}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15763 |{17935}>{$TEMP_WARN:"{#SNMPINDEX}"} |{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPINDEX}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17936}<{$TEMP_WARN:"{#SNMPINDEX}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15764 |{17937}>{$TEMP_CRIT:"{#SNMPINDEX}"} |{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPINDEX}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17938}<{$TEMP_CRIT:"{#SNMPINDEX}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15765 |{17939}<{$TEMP_CRIT_LOW:"{#SNMPINDEX}"} |{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPINDEX}"} | |0 |3 | |NULL |0 |2 |1 |{17940}>{$TEMP_CRIT_LOW:"{#SNMPINDEX}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15766 |{17941}>{$TEMP_WARN:"Ambient"} |Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17942}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15767 |{17943}>{$TEMP_CRIT:"Ambient"} |Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17944}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15768 |{17945}<{$TEMP_CRIT_LOW:"Ambient"} |Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{17946}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15769 |{17947}>{$TEMP_WARN:"CPU"} |CPU-{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17948}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15770 |{17949}>{$TEMP_CRIT:"CPU"} |CPU-{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17950}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15771 |{17951}<{$TEMP_CRIT_LOW:"CPU"} |CPU-{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{17952}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15772 |{17953}>{$TEMP_WARN:"Memory"} |Memory-{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Memory"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17954}<{$TEMP_WARN:"Memory"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15773 |{17955}>{$TEMP_CRIT:"Memory"} |Memory-{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Memory"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17956}<{$TEMP_CRIT:"Memory"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15774 |{17957}<{$TEMP_CRIT_LOW:"Memory"} |Memory-{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Memory"} | |0 |3 | |NULL |0 |2 |1 |{17958}>{$TEMP_CRIT_LOW:"Memory"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15775 |{17959}>{$TEMP_WARN:"PSU"} |PSU-{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"PSU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17960}<{$TEMP_WARN:"PSU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15776 |{17961}>{$TEMP_CRIT:"PSU"} |PSU-{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"PSU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17962}<{$TEMP_CRIT:"PSU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15777 |{17963}<{$TEMP_CRIT_LOW:"PSU"} |PSU-{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"PSU"} | |0 |3 | |NULL |0 |2 |1 |{17964}>{$TEMP_CRIT_LOW:"PSU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15778 |{17965}>{$TEMP_WARN:"Device"} |System-{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Device"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17966}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15779 |{17967}>{$TEMP_CRIT:"Device"} |System-{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{17968}<{$TEMP_CRIT:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15780 |{17969}<{$TEMP_CRIT_LOW:"Device"} |System-{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"} | |0 |3 | |NULL |0 |2 |1 |{17970}>{$TEMP_CRIT_LOW:"Device"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15781 |{17971}=1 |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} |
+ROW |15782 |{17972}=1 |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} |
+ROW |15783 |{17973}=1 |Fan {#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15784 |{17974}=1 |Fan {#SNMPINDEX}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15785 |{17975}=1 |{#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} |
+ROW |15786 |{17976}=1 |{#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} |
+ROW |15787 |{17977}=1 |#{#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} |
+ROW |15788 |{17978}=1 or {17979}=1 or {17980}=1 or {17981}=1 |#{#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} |
+ROW |15789 |{17982}=1 |#{#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} |
+ROW |15790 |{17983}=1 or {17984}=1 |#{#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} |
+ROW |15791 |{17985}=1 or {17986}=1 |#{#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} |
+ROW |15792 |{17987}=1 |{#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} |
+ROW |15793 |{17988}=1 |{#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} |
+ROW |15794 |{17989}=1 or {17990}=1 |{#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} |
+ROW |15795 |{17991}=1 and {17992}>0 |{#DISK_LOCATION}: Disk has been replaced (new serial number received) | |0 |1 |Disk serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |15796 |{17993}=1 |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} |
+ROW |15797 |{17994}=1 |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} |
+ROW |15803 |{18000}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15804 |{18001}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15805 |{18002}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15806 |{18003}=1 and {18004}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15807 |{18005}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18006}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15808 |{18007}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18008}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15809 |{18009}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18010}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15810 |{18011}>{$TEMP_WARN:"Ambient"} |Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18012}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15811 |{18013}>{$TEMP_CRIT:"Ambient"} |Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18014}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15812 |{18015}<{$TEMP_CRIT_LOW:"Ambient"} |Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{18016}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15813 |{18017}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18018}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15814 |{18019}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18020}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15815 |{18021}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{18022}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15816 |{18023}=1 |{#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} |
+ROW |15817 |{18024}=1 |{#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} |
+ROW |15818 |{18025}=1 |{#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} |
+ROW |15824 |{18031}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15825 |{18032}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15826 |{18033}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15827 |{18034}=1 and {18035}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15828 |{18036}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18037}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15829 |{18038}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18039}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15830 |{18040}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18041}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15831 |{18042}>{$TEMP_WARN:"Ambient"} |Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
+ROW |15832 |{18044}>{$TEMP_CRIT:"Ambient"} |Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
+ROW |15833 |{18046}<{$TEMP_CRIT_LOW:"Ambient"} |Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{18047}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15834 |{18048}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |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} |
+ROW |15835 |{18050}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |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} |
+ROW |15836 |{18052}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{18053}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15837 |{18054}=1 |{#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} |
+ROW |15838 |{18055}=1 |{#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} |
+ROW |15839 |{18056}=1 |{#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} |
+ROW |15845 |{18062}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18063}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15846 |{18064}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18065}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15847 |{18066}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18067}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15848 |{18068} > ({18069} * 0.7) |70% http-8080 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15849 |{18070} > ({18071} * 0.7) |70% http-8443 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15850 |{18072} > ({18073} *0.7) |70% jk-8009 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15851 |{18074} = 1 |gzip compression is off for connector http-8080 on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15852 |{18075} = 1 |gzip compression is off for connector http-8443 on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15853 |{18076}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18076}<65 |0 | |0 | |
+ROW |15855 |{18078}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18078}<65 |0 | |0 | |
+ROW |15857 |{18080}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15858 |{18081}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15859 |{18082}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15860 |{18083}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15861 |{18084}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15862 |{18085}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15863 |{18086}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15864 |{18087}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18087}<65 |0 | |0 | |
+ROW |15865 |{18088}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18088}<65 |0 | |0 | |
+ROW |15866 |{18089}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 |Zabbix configuration syncer processes more than 75% busy |NULL |0 |0 |1 |{18089}<65 |0 | |0 | |
+ROW |15867 |{18090}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18090}<65 |0 | |0 | |
+ROW |15868 |{18091}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18091}<65 |0 | |0 | |
+ROW |15869 |{18092}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18092}<65 |0 | |0 | |
+ROW |15870 |{18093}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18093}<65 |0 | |0 | |
+ROW |15871 |{18094}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18094}<65 |0 | |0 | |
+ROW |15872 |{18095}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18095}<65 |0 | |0 | |
+ROW |15873 |{18096}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18096}<65 |0 | |0 | |
+ROW |15874 |{18097}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18097}<65 |0 | |0 | |
+ROW |15875 |{18098}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18098}<65 |0 | |0 | |
+ROW |15876 |{18099}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18099}<65 |0 | |0 | |
+ROW |15877 |{18100}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18100}<65 |0 | |0 | |
+ROW |15878 |{18101}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18101}<65 |0 | |0 | |
+ROW |15879 |{18102}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18102}<65 |0 | |0 | |
+ROW |15880 |{18103}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18103}<65 |0 | |0 | |
+ROW |15881 |{18104}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18104}<65 |0 | |0 | |
+ROW |15882 |{18105}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18105}<65 |0 | |0 | |
+ROW |15883 |{18106}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18106}<65 |0 | |0 | |
+ROW |15884 |{18107}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18107}<65 |0 | |0 | |
+ROW |15885 |{18108}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18108}<65 |0 | |0 | |
+ROW |15886 |{18109}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15887 |{18110}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18110}<65 |0 | |0 | |
+ROW |15888 |{18111}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18111}<65 |0 | |0 | |
+ROW |15889 |{18112}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18112}<65 |0 | |0 | |
+ROW |15890 |{18113}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15891 |{18114}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15892 |{18115}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15893 |{18116}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15894 |{18117}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15895 |{18118}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18118}<65 |0 | |0 | |
+ROW |15896 |{18119}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18119}<65 |0 | |0 | |
+ROW |15897 |{18120}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18120}<65 |0 | |0 | |
+ROW |15898 |{18121}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18121}<65 |0 | |0 | |
+ROW |15899 |{18122}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18122}<65 |0 | |0 | |
+ROW |15900 |{18123}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18123}<65 |0 | |0 | |
+ROW |15901 |{18124}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18124}<65 |0 | |0 | |
+ROW |15902 |{18125}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18125}<65 |0 | |0 | |
+ROW |15903 |{18126}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18126}<65 |0 | |0 | |
+ROW |15904 |{18127}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18127}<65 |0 | |0 | |
+ROW |15905 |{18128}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18128}<65 |0 | |0 | |
+ROW |15906 |{18129}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18129}<65 |0 | |0 | |
+ROW |15907 |{18130}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18130}<65 |0 | |0 | |
+ROW |15908 |{18131}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18131}<65 |0 | |0 | |
+ROW |15909 |{18132}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18132}<65 |0 | |0 | |
+ROW |15910 |{18133}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18133}<65 |0 | |0 | |
+ROW |15911 |{18134}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18134}<65 |0 | |0 | |
+ROW |15912 |{18135}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18135}<65 |0 | |0 | |
+ROW |15913 |{18136}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18136}<65 |0 | |0 | |
+ROW |15914 |{18137}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18137}<65 |0 | |0 | |
+ROW |15926 |{18150} < {$PG.CACHE_HITRATIO.MIN.WARN} |PostgreSQL: Cache hit ratio too low (under {$PG.CACHE_HITRATIO.MIN.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15927 |{18151}=1 and {18152}>0 |PostgreSQL: Configuration has changed | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15928 |{18153} = 1 |PostgreSQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15929 |{18154}=0 |PostgreSQL: Replication is down | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15930 |{18155} > {$PG.CHECKPOINTS_REQ.MAX.WARN} |PostgreSQL: Required checkpoints occurs too frequently (over {$PG.CHECKPOINTS_REQ.MAX.WARN}) | |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.&eol;https://www.postgresql.org/docs/current/wal-configuration.html |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15931 |{18156} > {$PG.PING_TIME.MAX.WARN} |PostgreSQL: Response too long (over {$PG.PING_TIME.MAX.WARN}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15932 |{18157} < 10m |PostgreSQL: Service has been restarted (uptime < 10m) | |0 |1 |PostgreSQL uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15933 |{18158} = 0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15934 |{18159} > {$PG.REPL_LAG.MAX.WARN} |PostgreSQL: Streaming lag with {#MASTER} is too high (over {$PG.REPL_LAG.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15935 |{18160} > {$PG.CONN_TOTAL_PCT.MAX.WARN} |PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15936 |{18161}=1 and {18162}>0 |PostgreSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15938 |{18164}>{$PG.LOCKS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |15939 |{18165} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m) | |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.&eol;https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT |NULL |0 |2 |0 | |0 | |0 | |
+ROW |15940 |{18166}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |15941 |{18167}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} |Database {#DBNAME}: VACUUM FREEZE is required to prevent wraparound (frozen XID less then {$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} %) | |0 |3 |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |NULL |0 |2 |0 | |0 | |0 | |
+ROW |15942 |{18168}=1 |Apache: Failed to fetch status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15943 |{18169}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15944 |{18170}>{$APACHE.RESPONSE_TIME.MAX.WARN} |Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15945 |{18171}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15946 |{18172}=1 and {18173}>0 |Apache: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Apache version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15947 |{18174}=0 |Apache: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15948 |{18175}=1 |Apache: Failed to fetch status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15949 |{18176}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15950 |{18177}>{$APACHE.RESPONSE_TIME.MAX.WARN} |Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15951 |{18178}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15952 |{18179}=1 and {18180}>0 |Apache: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Apache version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15954 |{18183}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15955 |{18184}>{$NGINX.RESPONSE_TIME.MAX.WARN} |Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15956 |{18185} > {$NGINX.DROP_RATE.MAX.WARN} |Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m) | |0 |2 |The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 |Current rate: {ITEM.LASTVALUE1} |
+ROW |15957 |{18186}=0 |Nginx: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15958 |{18187}=1 and {18188}>0 |Nginx: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Nginx version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15960 |{18191}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15961 |{18192}>{$NGINX.RESPONSE_TIME.MAX.WARN} |Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15962 |{18193} > {$NGINX.DROP_RATE.MAX.WARN} |Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m) | |0 |2 |The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 |Current rate: {ITEM.LASTVALUE1} |
+ROW |15963 |{18194}=1 and {18195}>0 |Nginx: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Nginx version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15978 |{18211}=1 |MySQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15979 |{18212}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15980 |{18213}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |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 | |
+ROW |15981 |{18214}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |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 | |
+ROW |15982 |{18215}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15983 |{18216}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |15984 |{18217}=1 and {18218}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |15985 |{18219}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |15986 |{18220}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |15987 |{18221}=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 | |
+ROW |15988 |{18222}=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 | |
+ROW |15999 |{18241}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16000 |{18242}<{$MEMORY.AVAILABLE.MIN} and {18243}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16001 |{18244}<{$SWAP.PFREE.MIN.WARN} and {18245}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16007 |{18255}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16008 |{18256}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18257}-{18258})<5G or {18259}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16009 |{18260}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18261}-{18262})<10G or {18263}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16010 |{18264}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16011 |{18265}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16031 |{18300}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16032 |{18301}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16033 |{18302}<{$MEMORY.AVAILABLE.MIN} and {18303}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16034 |{18304}<{$SWAP.PFREE.MIN.WARN} and {18305}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16035 |{18306}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16036 |{18307}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16038 |{18310}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16039 |{18311}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16040 |{18312}/{18313}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
+ROW |16041 |{18314}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16042 |{18315}=1 and {18316}>0 |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 |2 | |0 | |1 | |
+ROW |16069 |{18355}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18356}-{18357})<5G or {18358}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16070 |{18359}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18360}-{18361})<10G or {18362}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16071 |{18363}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16072 |{18364}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16074 |{18366}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18367}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18368}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18369}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16075 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18370}=2 and {18371}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18370}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16076 |{18372}<0 and {18373}>0&eol;and&eol;({18373}=6&eol;or {18373}=1)&eol;and&eol;({18374}<>2) |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. Ack to close. |NULL |0 |2 |1 |({18372}>0 and {18375}>0) or&eol;({18374}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16097 |{18423}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16098 |{18424}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16099 |{18425}<{$MEMORY.AVAILABLE.MIN} and {18426}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16100 |{18427}<{$SWAP.PFREE.MIN.WARN} and {18428}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16101 |{18429}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16102 |{18430}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16104 |{18433}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16105 |{18434}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16106 |{18435}/{18436}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
+ROW |16107 |{18437}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16108 |{18438}=1 and {18439}>0 |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 |2 | |0 | |1 | |
+ROW |16122 |{18459}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18460}-{18461})<5G or {18462}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16123 |{18463}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18464}-{18465})<10G or {18466}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16124 |{18467}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16125 |{18468}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16127 |{18470}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18471}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18472}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18473}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16128 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18474}=2 and {18475}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18474}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16129 |{18476}<0 and {18477}>0&eol;and&eol;({18477}=6&eol;or {18477}=1)&eol;and&eol;({18478}<>2) |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. Ack to close. |NULL |0 |2 |1 |({18476}>0 and {18479}>0) or&eol;({18478}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16138 |{18501}=1 |node_exporter is not available (or no data for 30m) | |0 |2 |Failed to fetch system metrics from node_exporter in time. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16139 |{18502}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16141 |{18505}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16142 |{18506}/{18507}*100>80 |Running out of file descriptors (less than < 20% free) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} of {ITEM.LASTVALUE2} file descriptors are in use. |
+ROW |16143 |{18508}=1 and {18509}>0 |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 |2 | |0 | |1 | |
+ROW |16144 |{18510}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16146 |{18513}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16147 |{18514}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16148 |{18515}<{$MEMORY.AVAILABLE.MIN} and {18516}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16149 |{18517}<{$SWAP.PFREE.MIN.WARN} and {18518}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16150 |({18519}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18520} or&eol;{18521}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18520}) and&eol;{18520}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18519}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18520} and&eol;{18521}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18520}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16151 |{18522}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18523}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18524}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18525}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16152 |{18526}<0 and {18527}>0&eol;and (&eol;{18528}=6 or&eol;{18528}=7 or&eol;{18528}=11 or&eol;{18528}=62 or&eol;{18528}=69 or&eol;{18528}=117&eol;)&eol;and&eol;({18529}<>2)|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. Ack to close. |NULL |0 |2 |1 |({18526}>0 and {18530}>0) or&eol;({18529}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16153 |{18531}<0 and {18532}>0&eol;and&eol;({18532}=6&eol;or {18532}=1)&eol;and&eol;({18533}<>2) |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. Ack to close. |NULL |0 |2 |1 |({18531}>0 and {18534}>0) or&eol;({18533}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16154 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18535}=2 and {18536}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18535}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16155 |{18537}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18538}-{18539})<5G or {18540}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16156 |{18541}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18542}-{18543})<10G or {18544}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16157 |{18545}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16158 |{18546}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16160 |{18548}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16161 |{18549}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16162 |{18550}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16164 |{18552}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16165 |{18553}<{$SWAP.PFREE.MIN.WARN} and {18554}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16166 |{18555}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16167 |{18556}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |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 | |
+ROW |16168 |{18557}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16169 |{18558}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16182 |{18574}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18575}-{18576})<5G or {18577}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16183 |{18578}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18579}-{18580})<10G or {18581}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16184 |{18582}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |
+ROW |16185 |({18583}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18584} or&eol;{18585}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18584}) and&eol;{18584}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18583}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18584} and&eol;{18585}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18584}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16186 |{18586}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18587}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18588}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18589}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16187 |{18590}<0 and {18591}>0&eol;and (&eol;{18592}=6 or&eol;{18592}=7 or&eol;{18592}=11 or&eol;{18592}=62 or&eol;{18592}=69 or&eol;{18592}=117&eol;)&eol;and&eol;({18593}<>2)|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. Ack to close. |NULL |0 |2 |1 |({18590}>0 and {18594}>0) or&eol;({18593}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16188 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18595}=2 and {18596}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18595}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16196 |{18620}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16197 |{18621}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16209 |{18633}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16210 |{18634}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16211 |{18635}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16213 |{18637}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16214 |{18638}<{$SWAP.PFREE.MIN.WARN} and {18639}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16215 |{18640}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16216 |{18641}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |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 | |
+ROW |16217 |{18642}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16218 |{18643}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16231 |{18659}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18660}-{18661})<5G or {18662}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16232 |{18663}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18664}-{18665})<10G or {18666}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16233 |{18667}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |
+ROW |16234 |({18668}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18669} or&eol;{18670}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18669}) and&eol;{18669}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18668}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18669} and&eol;{18670}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18669}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16235 |{18671}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18672}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18673}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18674}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16236 |{18675}<0 and {18676}>0&eol;and (&eol;{18677}=6 or&eol;{18677}=7 or&eol;{18677}=11 or&eol;{18677}=62 or&eol;{18677}=69 or&eol;{18677}=117&eol;)&eol;and&eol;({18678}<>2)|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. Ack to close. |NULL |0 |2 |1 |({18675}>0 and {18679}>0) or&eol;({18678}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16237 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18680}=2 and {18681}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{18680}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16250 |{18711}>0 |RabbitMQ: Number of network partitions is too high (more than 0 for 5m) | |0 |2 |https://www.rabbitmq.com/partitions.html#detecting |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16251 |{18712}=0 |RabbitMQ: Node is not running | |0 |3 |RabbitMQ node is not running |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16254 |{18715}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16255 |{18716}=0 |RabbitMQ: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16256 |{18717}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16257 |{18718}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16258 |{18719}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue (over {$RABBITMQ.MESSAGES.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16259 |{18720}=1 |RabbitMQ: Failed to fetch overview data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16264 |{18726}>0 |RabbitMQ: Number of network partitions is too high (more than 0 for 5m) | |0 |2 |https://www.rabbitmq.com/partitions.html#detecting |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16265 |{18727}=0 |RabbitMQ: Node is not running | |0 |3 |RabbitMQ node is not running |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16268 |{18730}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16269 |{18731}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16270 |{18732}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16271 |{18733}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue (over {$RABBITMQ.MESSAGES.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16272 |{18734}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18734}<65 |0 | |0 | |
+ROW |16273 |{18735}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18735}<65 |0 | |0 | |
+ROW |16275 |{18737}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16277 |{18740}=0 |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} |
+ROW |16287 |{18753}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16289 |{18756}=0 |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} |
+ROW |16377 |({18873}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18874} or&eol;{18875}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18874}) and&eol;{18874}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18873}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18874} and&eol;{18875}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18874}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16378 |{18876}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18877}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18878}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18879}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16379 |({18880}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18881} or&eol;{18882}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18881}) and&eol;{18881}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{18880}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18881} and&eol;{18882}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18881}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16380 |{18883}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18884}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{18885}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18886}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16423 |({19034}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19035} or&eol;{19036}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19035}) and&eol;{19035}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{19034}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19035} and&eol;{19036}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19035}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16424 |{19037}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19038}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{19039}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19040}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16429 |({19055}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19056} or&eol;{19057}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19056}) and&eol;{19056}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{19055}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19056} and&eol;{19057}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19056}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16430 |{19058}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19059}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{19060}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19061}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16435 |({19076}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19077} or&eol;{19078}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19077}) and&eol;{19077}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{19076}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19077} and&eol;{19078}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19077}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16436 |{19079}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19080}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{19081}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19082}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16439 |{19090}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16440 |{19091}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16442 |{19093}=1 |RabbitMQ: Failed to fetch overview data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16443 |{19094}=1 |RabbitMQ: Failed to fetch nodes data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16444 |{19095}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16445 |{19096}=1 and {19097}>0 |RabbitMQ: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |RabbitMQ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16446 |{19098}=1 |RabbitMQ: Memory alarm (Memory usage threshold has been reached) | |0 |3 |https://www.rabbitmq.com/memory.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16447 |{19099}=1 |RabbitMQ: Free disk space alarm (Free space threshold has been reached) | |0 |3 |https://www.rabbitmq.com/disk-alarms.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16448 |{19100}=1 |RabbitMQ: Failed to fetch nodes data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16449 |{19101}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16450 |{19102}=1 and {19103}>0 |RabbitMQ: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |RabbitMQ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16451 |{19104}=1 |RabbitMQ: Memory alarm (Memory usage threshold has been reached) | |0 |3 |https://www.rabbitmq.com/memory.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16452 |{19105}=1 |RabbitMQ: Free disk space alarm (Free space threshold has been reached) | |0 |3 |https://www.rabbitmq.com/disk-alarms.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16459 |{19113}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
+ROW |16460 |{19115}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
+ROW |16461 |{19117}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19118}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16462 |{19119}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
+ROW |16463 |{19121}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
+ROW |16464 |{19123}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19124}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16465 |{19125}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
+ROW |16466 |{19127}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
+ROW |16467 |{19129}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19130}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16468 |{19131}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |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} |
+ROW |16469 |{19133}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |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} |
+ROW |16470 |{19135}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19136}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16471 |{19137}>{$TEMP_WARN:"CPU"} |{#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |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} |
+ROW |16472 |{19139}>{$TEMP_CRIT:"CPU"} |{#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |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} |
+ROW |16473 |{19141}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCATION}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{19142}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16474 |{19143}=1 |{#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} |
+ROW |16475 |{19144}=1 |{#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} |
+ROW |16476 |{19145}=1 or {19146}=1 or {19147}=1 or {19148}=1 |{#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} |
+ROW |16477 |{19149}=1 or {19150}=1 or {19151}=1 or {19152}=1 or {19153}=1 |{#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} |
+ROW |16478 |{19154}=1 and {19155}>0 |{#UNIT_LOCATION}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |
+ROW |16479 |{19156}=1 |{#FAN_LOCATION}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16480 |{19157}=1 |{#FAN_LOCATION}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16481 |{19158}=1 |{#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} |
+ROW |16482 |{19159}=1 or {19160}=1 |{#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} |
+ROW |16483 |{19161}=1 |{#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} |
+ROW |16484 |{19162}=1 |{#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} |
+ROW |16485 |{19163}=1 |{#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} |
+ROW |16486 |{19164}=1 |{#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} |
+ROW |16487 |{19165}=1 |{#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} |
+ROW |16488 |{19166}=1 |{#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} |
+ROW |16491 |{19171}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16492 |{19172}=1 and {19173}>0 |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 |2 | |0 | |1 | |
+ROW |16493 |{19174}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16494 |{19175}=1 |#{#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} |
+ROW |16495 |{19176}=1 |#{#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} |
+ROW |16496 |{19177}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16497 |{19178}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16498 |{19179}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16499 |{19180}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16504 |{19185}>{$TEMP_WARN:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Chassis"} | |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} |
+ROW |16505 |{19187}>{$TEMP_CRIT:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Chassis"} | |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} |
+ROW |16506 |{19189}<{$TEMP_CRIT_LOW:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Chassis"} | |0 |3 | |NULL |0 |2 |1 |{19190}>{$TEMP_CRIT_LOW:"Chassis"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16507 |{19191}=1 and {19192}>0 |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 |2 | |0 | |1 | |
+ROW |16508 |{19193}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16513 |{19201}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16514 |{19202}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16515 |{19203}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16521 |{19209}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16522 |{19210}>{$MEMORY.UTIL.MAX} |#{#SNMPINDEX}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16523 |{19211}=1 and {19212}>0 |#{#SNMPVALUE}: 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 |2 |2 | |0 | |1 | |
+ROW |16524 |{19213}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16525 |{19214}=1 and {19215}>0 |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 |2 | |0 | |1 | |
+ROW |16526 |{19216}>{$MEMORY.UTIL.MAX} |{#SNMPINDEX}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16527 |{19217}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16528 |{19218}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16529 |{19219}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16530 |{19220}=1 and {19221}>0 |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 |2 | |0 | |1 | |
+ROW |16531 |{19222}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16532 |{19223}=1 and {19224}>0 |{#ENT_NAME}: 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 |2 |2 | |0 | |1 | |
+ROW |16533 |{19225}>{$CPU.UTIL.CRIT} |{#MODULE_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16534 |{19226}>{$MEMORY.UTIL.MAX} |{#MODULE_NAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16535 |{19227}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16536 |{19228}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16537 |{19229}>{$CPU.UTIL.CRIT} |{#ENT_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16538 |{19230}=1 and {19231}>0 |{#ENT_NAME}: 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 |2 |2 | |0 | |1 | |
+ROW |16539 |{19232}>{$MEMORY.UTIL.MAX} |{#ENT_NAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16540 |{19233}=1 and {19234}>0 |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 |2 | |0 | |1 | |
+ROW |16541 |{19235}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16542 |{19236}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16543 |{19237}=1 and {19238}>0 |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 |2 | |0 | |1 | |
+ROW |16544 |{19239}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16545 |{19240}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16546 |{19241}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and&eol;(({19242}-{19243})<5G or {19244}<1d) |Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16547 |{19245}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and&eol;(({19246}-{19247})<10G or {19248}<1d) |Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16548 |{19249}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16549 |{19250}=1 and {19251}>0 |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 |2 | |0 | |1 | |
+ROW |16550 |{19252}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16551 |{19253}>{$TEMP_WARN:""} |Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{19254}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16552 |{19255}>{$TEMP_CRIT:""} |Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{19256}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16553 |{19257}<{$TEMP_CRIT_LOW:""} |Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |0 |1 |{19258}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |16554 |{19259}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16555 |{19260}=1 and {19261}>0 |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 |2 | |0 | |1 | |
+ROW |16556 |{19262}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16557 |{19263}=1 |{#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16558 |{19264}=1 |{#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} |
+ROW |16559 |{19265}>{$CPU.UTIL.CRIT} |#{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16560 |{19266}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16561 |{19267}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16562 |{19268}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16563 |{19269}/{19270}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19271}>0&eol;and {19272}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your 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}|
+ROW |16569 |{19287}/{19288}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19289}>0&eol;and {19290}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your 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}|
+ROW |16573 |{19299}/{19300}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19301}>0&eol;and {19302}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your 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}|
+ROW |16575 |{19305}/{19306}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19307}>0&eol;and {19308}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your 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}|
+ROW |16577 |{19313}=1 and {19314}>0 |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 |2 | |0 | |1 | |
+ROW |16579 |{19316}=1 and {19317}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16582 |{19322}=1 and {19323}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16584 |{19326}=1 and {19327}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16585 |{19328}=1 and {19329}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16587 |{19332}=1 and {19333}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16589 |{19336}=1 and {19337}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16593 |{19344}=1 and {19345}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16624 |{19406}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16629 |{19411}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16630 |{19412}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19413}-{19414})<5G or {19415}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16631 |{19416}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19417}-{19418})<10G or {19419}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16644 |{19456}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16645 |{19457}=1 and {19458}>0 |HAProxy: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |HAProxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16646 |{19459}>{$HAPROXY.RESPONSE_TIME.MAX.WARN} |HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16647 |{19460}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16648 |{19461}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |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 | |
+ROW |16649 |{19462}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |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 | |
+ROW |16650 |{19463}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |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 | |
+ROW |16651 |{19464}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |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 | |
+ROW |16652 |{19465}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16653 |{19466}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |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 | |
+ROW |16654 |{19467}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16655 |{19468}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |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 | |
+ROW |16656 |{19469}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |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 | |
+ROW |16657 |{19470}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16658 |{19471}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |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 | |
+ROW |16659 |{19472}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |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 | |
+ROW |16660 |{19473}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16661 |{19474}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16662 |{19475}=1 and {19476}>0 |HAProxy: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |HAProxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16663 |{19477}>{$HAPROXY.RESPONSE_TIME.MAX.WARN} |HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16664 |{19478}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16665 |{19479}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |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 | |
+ROW |16666 |{19480}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |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 | |
+ROW |16667 |{19481}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |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 | |
+ROW |16668 |{19482}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |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 | |
+ROW |16669 |{19483}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16670 |{19484}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |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 | |
+ROW |16671 |{19485}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16672 |{19486}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |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 | |
+ROW |16673 |{19487}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |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 | |
+ROW |16674 |{19488}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16675 |{19489}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |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 | |
+ROW |16676 |{19490}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |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 | |
+ROW |16677 |{19491}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16678 |{19492}=0 or&eol; {19493}=1 |Nginx: Failed to fetch stub status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16679 |{19494}=0 or&eol; {19495}=1 |Nginx: Failed to fetch stub status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16680 |{19496} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16681 |{19497}/{19498}*100>{$REDIS.CLIENTS.PRC.MAX.WARN} |Redis: Total number of connected clients is too high (over {$REDIS.CLIENTS.PRC.MAX.WARN}% in 5m) | |0 |2 |When the number of clients reaches the value of the "maxclients" parameter, new connections will be rejected.&eol;&eol;https://redis.io/topics/clients#maximum-number-of-clients |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16682 |{19499}=1 and {19500}>0 |Redis: Configuration has changed | |0 |1 |Redis configuration has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |
+ROW |16683 |{19501}=1 |Redis: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16684 |{19502}>{$REDIS.MEM.FRAG_RATIO.MAX.WARN} |Redis: Memory fragmentation ratio is too high (over {$REDIS.MEM.FRAG_RATIO.MAX.WARN} in 15m) | |0 |2 |This ratio is an indication of memory mapping efficiency:&eol; — 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.&eol; — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.&eol;&eol;Note: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.&eol;&eol;https://redis.io/topics/memory-optimization |NULL |0 |0 |0 | |0 | |0 | |
+ROW |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 | |
+ROW |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 | |
+ROW |16687 |{19505}=0 |Redis: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16688 |{19506}=1 |Redis: Number of slaves has changed | |0 |1 |Redis number of slaves has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |
+ROW |16689 |{19507}=1 and {19508}>0 |Redis: Replication role has changed (new role: {ITEM.VALUE}) | |0 |2 |Redis replication role has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |
+ROW |16690 |{19509}=1 and {19510}>0 |Redis: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Redis version has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |
+ROW |16691 |{19511}<10m |Redis: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16692 |{19512}>{$REDIS.SLOWLOG.COUNT.MAX.WARN} |Redis: Too many entries in the slowlog (over {$REDIS.SLOWLOG.COUNT.MAX.WARN} per second in 5m) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16693 |{19513}>0 |Redis: Connections are rejected | |0 |4 |The number of connections has reached the value of "maxclients".&eol;&eol;https://redis.io/topics/clients |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16694 |{19514}=0 |Redis: Process is not running | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16695 |{19515}/{19516}*100>{$REDIS.MEM.PUSED.MAX.WARN} |Redis: Memory usage is too high (over {$REDIS.MEM.PUSED.MAX.WARN}% in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16696 |{19517}>{$REDIS.REPL.LAG.MAX.WARN} |Redis: Replication lag with master is too high (over {$REDIS.REPL.LAG.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16697 |{19518}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16699 |{19520}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16700 |{19521}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19522}-{19523})<5G or {19524}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - 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}) |
+ROW |16701 |{19525}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19526}-{19527})<10G or {19528}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - 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}) |
+ROW |16705 |{19538} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19539} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |
+ROW |16708 |{19544} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19545} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |
+ROW |16710 |{19548} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19549} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |
+ROW |16711 |{19550}>{$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16713 |{19552}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16715 |{19554}>{$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16717 |{19556}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16719 |{19558}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |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 | |
+ROW |16720 |{19559}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |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 | |
+ROW |16721 |{19560}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16722 |{19561}=1 |MySQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16723 |{19562}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16724 |{19563}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |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 | |
+ROW |16725 |{19564}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16726 |{19565}=1 and {19566}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16727 |{19567}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |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 | |
+ROW |16729 |{19569}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |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 | |
+ROW |16731 |{19571}=1 |MySQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16732 |{19572}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16733 |{19573}=1 and {19574}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16734 |{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |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 | |
+ROW |16735 |{19576}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |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 | |
+ROW |16736 |{19577}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16737 |{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |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 | |
+ROW |16738 |{19579}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16739 |{19580}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |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 | |
+ROW |16741 |{19582}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |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 | |
+ROW |16743 |{19584}=1 |Docker: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16744 |{19585}=0 |Docker: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16745 |{19586}=1 and {19587}>0 |Docker: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Docker version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16746 |{19588}>0 and {19589}=0 |Container {#NAME}: Container has been stopped with error code | |0 |3 | |NULL |0 |2 |0 | |0 | |1 |Exit code: {ITEM.LASTVALUE1} |
+ROW |16747 |{19590}=1 and {19591}>0 |Container {#NAME}: An error has occurred in the container | |0 |2 |Container {#NAME} has an error. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |
+ROW |16748 |{19592}/{19593}*100>{$MEMCACHED.MEM.PUSED.MAX.WARN} |Memcached: Memory usage is too high (over {$MEMCACHED.MEM.PUSED.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16749 |{19594}/{19595}*100>{$MEMCACHED.CONN.PRC.MAX.WARN} |Memcached: Total number of connected clients is too high (over {$MEMCACHED.CONN.PRC.MAX.WARN}% in 5m) | |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 | |
+ROW |16750 |{19596}>{$MEMCACHED.CONN.QUEUED.MAX.WARN} |Memcached: Too many queued connections (over {$MEMCACHED.CONN.QUEUED.MAX.WARN} in 5m) | |0 |2 |The max number of connections is reachedand and a new connection had to wait in the queue as a result. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16751 |{19597}>{$MEMCACHED.CONN.THROTTLED.MAX.WARN} |Memcached: Too many throttled connections (over {$MEMCACHED.CONN.THROTTLED.MAX.WARN} in 5m) | |0 |2 |Number of times a client connection was throttled is too hight.&eol;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 | |
+ROW |16752 |{19598}=1 |Memcached: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16753 |{19599}=0 |Memcached: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16754 |{19600}<10m |Memcached: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16755 |{19601}=1 and {19602}>0 |Memcached: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Memcached version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16756 |{19603}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |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 | |
+ROW |16757 |{19604}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |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 | |
+ROW |16758 |{19605}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16759 |{19606}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16760 |{19607}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |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 | |
+ROW |16761 |{19608}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
+ROW |16762 |{19609}=1 and {19610}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
+ROW |16763 |{19611}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |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 | |
+ROW |16765 |{19613}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
+ROW |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 | |
+ROW |16767 |{19615}=1 |IPMI: {#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 | |
+ROW |16768 |{19616}<{#SENSOR_LO_WARN} |IPMI: {#SENSOR_ID} value is below non-critical low (less than {#SENSOR_LO_WARN} for 5m) | |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 | |
+ROW |16769 |{19617}<{#SENSOR_LO_CRIT} |IPMI: {#SENSOR_ID} value is below critical low (less than {#SENSOR_LO_CRIT} for 5m) | |0 |4 |The trigger is informing that a value less than the lower critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16770 |{19618}<{#SENSOR_LO_DISAST} |IPMI: {#SENSOR_ID} value is below non-recoverable low (less than {#SENSOR_LO_DISAST} for 5m) | |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 | |
+ROW |16771 |{19619}>{#SENSOR_HI_WARN} |IPMI: {#SENSOR_ID} value is above non-critical high (greater than {#SENSOR_HI_WARN} for 5m) | |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 | |
+ROW |16772 |{19620}>{#SENSOR_HI_CRIT} |IPMI: {#SENSOR_ID} value is above critical high (greater than {#SENSOR_HI_CRIT} for 5m) | |0 |4 |The trigger is informing that a value higher than the upper critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |
+ROW |16773 |{19621}>{#SENSOR_HI_DISAST} |IPMI: {#SENSOR_ID} value is above non-recoverable high (greater than {#SENSOR_HI_DISAST} for 5m) | |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 | |
+ROW |13075 |{12648}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |13074 |0 |0 |0 | |0 | |0 | |
+ROW |13436 |{13205}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |13097 |0 |0 |1 |{13205}<65 |0 | |0 | |
+ROW |13467 |{13165}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |13080 |0 |0 |1 |{13165}<65 |0 | |0 | |
+ROW |13468 |{13171}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |13081 |0 |0 |1 |{13171}<65 |0 | |0 | |
+ROW |13470 |{13173}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |13083 |0 |0 |1 |{13173}<65 |0 | |0 | |
+ROW |13471 |{13175}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |13084 |0 |0 |1 |{13175}<65 |0 | |0 | |
+ROW |13472 |{13177}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |13085 |0 |0 |1 |{13177}<65 |0 | |0 | |
+ROW |13473 |{13179}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |13086 |0 |0 |1 |{13179}<65 |0 | |0 | |
+ROW |13474 |{13181}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |13087 |0 |0 |1 |{13181}<65 |0 | |0 | |
+ROW |13475 |{13183}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |13088 |0 |0 |1 |{13183}<65 |0 | |0 | |
+ROW |13476 |{13185}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |13089 |0 |0 |1 |{13185}<65 |0 | |0 | |
+ROW |13477 |{13187}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |13275 |0 |0 |1 |{13187}<65 |0 | |0 | |
+ROW |13479 |{13189}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |13091 |0 |0 |1 |{13189}<65 |0 | |0 | |
+ROW |13480 |{13191}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |13092 |0 |0 |1 |{13191}<65 |0 | |0 | |
+ROW |13481 |{13193}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |13093 |0 |0 |1 |{13193}<65 |0 | |0 | |
+ROW |13482 |{13195}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |13441 |0 |0 |1 |{13195}<65 |0 | |0 | |
+ROW |13483 |{13199}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |13094 |0 |0 |1 |{13199}<65 |0 | |0 | |
+ROW |13484 |{13201}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |13095 |0 |0 |1 |{13201}<65 |0 | |0 | |
+ROW |13485 |{13203}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |13096 |0 |0 |1 |{13203}<65 |0 | |0 | |
+ROW |13486 |{12895}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |13023 |0 |0 |0 | |0 | |0 | |
+ROW |13487 |{12896}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |13015 |0 |0 |0 | |0 | |0 | |
+ROW |13488 |{12897}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |13073 |0 |0 |0 | |0 | |0 | |
+ROW |13489 |{12898}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |13017 |0 |0 |0 | |0 | |0 | |
+ROW |13490 |{12899}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |13019 |0 |0 |0 | |0 | |0 | |
+ROW |13537 |{12966}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |13536 |0 |0 |0 | |0 | |0 | |
+ROW |13558 |{13161}=1 |Zabbix value cache working in low memory mode | |0 |4 | |13557 |0 |0 |0 | |0 | |0 | |
+ROW |13560 |{13197}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |13559 |0 |0 |1 |{13197}<65 |0 | |0 | |
+ROW |13563 |{13223}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |13562 |0 |0 |1 |{13223}<65 |0 | |0 | |
+ROW |13567 |{13227}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |13566 |0 |0 |1 |{13227}<65 |0 | |0 | |
+ROW |13570 |{13230}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |13568 |0 |0 |1 |{13230}<65 |0 | |0 | |
+ROW |13571 |{13231}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |13569 |0 |0 |1 |{13231}<65 |0 | |0 | |
+ROW |14288 |{14463}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14251 |0 |0 |0 | |0 | |0 | |
+ROW |14289 |{14464}>{$ICMP_LOSS_WARN} and {14464}<100 |High ICMP ping loss | |0 |2 | |14252 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14290 |{14465}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14253 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14293 |{14468}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14251 |0 |0 |0 | |0 | |0 | |
+ROW |14294 |{14469}>{$ICMP_LOSS_WARN} and {14469}<100 |High ICMP ping loss | |0 |2 | |14252 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14295 |{14470}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14253 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14311 |{14508}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14312 |{14509}>{$ICMP_LOSS_WARN} and {14509}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14313 |{14510}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14327 |{14536}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14328 |{14537}>{$ICMP_LOSS_WARN} and {14537}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14329 |{14538}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14347 |{14570}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14348 |{14571}>{$ICMP_LOSS_WARN} and {14571}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14349 |{14572}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14356 |{14587}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14357 |{14588}>{$ICMP_LOSS_WARN} and {14588}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14358 |{14589}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14389 |{14641}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14390 |{14642}>{$ICMP_LOSS_WARN} and {14642}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14391 |{14643}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14403 |{14663}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14404 |{14664}>{$ICMP_LOSS_WARN} and {14664}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14405 |{14665}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14411 |{14672}=1 and {14673}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |
+ROW |14413 |{14676}=1 and {14677}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |
+ROW |14428 |{14698}=1 and {14699}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |
+ROW |14430 |{14702}=1 and {14703}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |
+ROW |14437 |{14722}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |14420 |0 |2 |1 |{14723}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14439 |{14726}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |14420 |0 |2 |1 |{14727}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |14451 |{14747}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14452 |{14748}>{$ICMP_LOSS_WARN} and {14748}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14453 |{14749}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14468 |{14776}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14469 |{14777}>{$ICMP_LOSS_WARN} and {14777}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14470 |{14778}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14486 |{14806}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14487 |{14807}>{$ICMP_LOSS_WARN} and {14807}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14488 |{14808}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14505 |{14838}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14506 |{14839}>{$ICMP_LOSS_WARN} and {14839}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14507 |{14840}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14524 |{14871}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14288 |0 |0 |0 | |0 | |0 | |
+ROW |14525 |{14872}>{$ICMP_LOSS_WARN} and {14872}<100 |High ICMP ping loss | |0 |2 | |14289 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14526 |{14873}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14534 |{14889}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14535 |{14890}>{$ICMP_LOSS_WARN} and {14890}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14536 |{14891}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14544 |{14907}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14545 |{14908}>{$ICMP_LOSS_WARN} and {14908}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14546 |{14909}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14582 |{14972}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14583 |{14973}>{$ICMP_LOSS_WARN} and {14973}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14584 |{14974}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14598 |{15000}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14599 |{15001}>{$ICMP_LOSS_WARN} and {15001}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14600 |{15002}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14615 |{15032}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14616 |{15033}>{$ICMP_LOSS_WARN} and {15033}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14617 |{15034}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14652 |{15094}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14653 |{15095}>{$ICMP_LOSS_WARN} and {15095}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14654 |{15096}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14673 |{15131}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14674 |{15132}>{$ICMP_LOSS_WARN} and {15132}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14675 |{15133}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14691 |{15163}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14692 |{15164}>{$ICMP_LOSS_WARN} and {15164}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14693 |{15165}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14704 |{15186}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14705 |{15187}>{$ICMP_LOSS_WARN} and {15187}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14706 |{15188}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14717 |{15209}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14288 |0 |0 |0 | |0 | |0 | |
+ROW |14718 |{15210}>{$ICMP_LOSS_WARN} and {15210}<100 |High ICMP ping loss | |0 |2 | |14289 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14719 |{15211}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14906 |{15678}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14907 |{15679}>{$ICMP_LOSS_WARN} and {15679}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14908 |{15680}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14928 |{15713}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |14929 |{15714}>{$ICMP_LOSS_WARN} and {15714}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |14930 |{15715}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |14940 |{15730}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14939 |0 |2 |0 | |0 | |1 | |
+ROW |14942 |{15732}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14943 |{15733}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14944 |{15734}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14945 |{15735}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14946 |{15736}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14947 |{15737}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14948 |{15738}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14949 |{15739}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14950 |{15740}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14951 |{15741}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |14953 |{15743}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |15208 |{16445}=1 and {16446}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |
+ROW |15209 |{16447}=1 and {16448}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |
+ROW |15214 |{16457}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |14420 |0 |2 |1 |{16458}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15220 |{16472}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |15221 |{16473}>{$ICMP_LOSS_WARN} and {16473}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |15222 |{16474}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |15348 |{16848}>{$TEMP_WARN:""}&eol;or&eol;{16849}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |15342 |0 |2 |1 |{16850}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15349 |{16851}>{$TEMP_WARN:""}&eol;or&eol;{16852}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |15342 |0 |2 |1 |{16853}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15350 |{16854}>{$TEMP_WARN:""}&eol;or&eol;{16855}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |15342 |0 |2 |1 |{16856}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15351 |{16857}>{$TEMP_CRIT:""}&eol;or&eol;{16858}={$TEMP_CRIT_STATUS}&eol;or&eol;{16858}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |15343 |0 |2 |1 |{16859}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15352 |{16860}>{$TEMP_CRIT:""}&eol;or&eol;{16861}={$TEMP_CRIT_STATUS}&eol;or&eol;{16861}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |15343 |0 |2 |1 |{16862}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15353 |{16863}>{$TEMP_CRIT:""}&eol;or&eol;{16864}={$TEMP_CRIT_STATUS}&eol;or&eol;{16864}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |15343 |0 |2 |1 |{16865}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |
+ROW |15354 |{16866}=1 or {16867}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15355 |{16868}=1 or {16869}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15356 |{16870}=1 or {16871}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15357 |{16872}=1 or {16873}=1 |{#SENSOR_INFO}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |15345 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15358 |{16874}=1 or {16875}=1 |{#SENSOR_INFO}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |15345 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15359 |{16876}=1 or {16877}=1 |{#SENSOR_INFO}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |15345 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15360 |{16878}=1 or {16879}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |15346 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15361 |{16880}=1 or {16881}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |15346 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15362 |{16882}=1 or {16883}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |15346 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15363 |{16884}=1 or {16885}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |15347 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15364 |{16886}=1 or {16887}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |15347 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15365 |{16888}=1 or {16889}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |15347 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |15492 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17241}=2 and {17242}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15490 |0 |2 |1 |{17241}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15493 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17243}=2 and {17244}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15490 |0 |2 |1 |{17243}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15498 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17253}=2 and {17254}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15496 |0 |2 |1 |{17253}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15499 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17255}=2 and {17256}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15496 |0 |2 |1 |{17255}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15510 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17277}=2 and {17278}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17277}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15511 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17279}=2 and {17280}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17279}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15512 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17281}=2 and {17282}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17281}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15513 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17283}=2 and {17284}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17283}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15514 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17285}=2 and {17286}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17285}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15515 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17287}=2 and {17288}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17287}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15516 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17289}=2 and {17290}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17289}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15517 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17291}=2 and {17292}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17291}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15518 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17293}=2 and {17294}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17293}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15519 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17295}=2 and {17296}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17295}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15520 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17297}=2 and {17298}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17297}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15521 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17299}=2 and {17300}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17299}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15522 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17301}=2 and {17302}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17301}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15523 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17303}=2 and {17304}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17303}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15524 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17305}=2 and {17306}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17305}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15525 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17307}=2 and {17308}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17307}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15527 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17311}=2 and {17312}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17311}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15528 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17313}=2 and {17314}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17313}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15529 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17315}=2 and {17316}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17315}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15672 |{17697}<0 and {17698}>0&eol;and (&eol;{17699}=6 or&eol;{17699}=7 or&eol;{17699}=11 or&eol;{17699}=62 or&eol;{17699}=69 or&eol;{17699}=117&eol;)&eol;and&eol;({17700}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17697}>0 and {17701}>0) or&eol;({17700}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15673 |{17702}<0 and {17703}>0&eol;and (&eol;{17704}=6 or&eol;{17704}=7 or&eol;{17704}=11 or&eol;{17704}=62 or&eol;{17704}=69 or&eol;{17704}=117&eol;)&eol;and&eol;({17705}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17702}>0 and {17706}>0) or&eol;({17705}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15674 |{17707}<0 and {17708}>0&eol;and (&eol;{17709}=6 or&eol;{17709}=7 or&eol;{17709}=11 or&eol;{17709}=62 or&eol;{17709}=69 or&eol;{17709}=117&eol;)&eol;and&eol;({17710}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17707}>0 and {17711}>0) or&eol;({17710}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15675 |{17712}<0 and {17713}>0&eol;and (&eol;{17714}=6 or&eol;{17714}=7 or&eol;{17714}=11 or&eol;{17714}=62 or&eol;{17714}=69 or&eol;{17714}=117&eol;)&eol;and&eol;({17715}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17712}>0 and {17716}>0) or&eol;({17715}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15676 |{17717}<0 and {17718}>0&eol;and (&eol;{17719}=6 or&eol;{17719}=7 or&eol;{17719}=11 or&eol;{17719}=62 or&eol;{17719}=69 or&eol;{17719}=117&eol;)&eol;and&eol;({17720}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17717}>0 and {17721}>0) or&eol;({17720}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15677 |{17722}<0 and {17723}>0&eol;and (&eol;{17724}=6 or&eol;{17724}=7 or&eol;{17724}=11 or&eol;{17724}=62 or&eol;{17724}=69 or&eol;{17724}=117&eol;)&eol;and&eol;({17725}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17722}>0 and {17726}>0) or&eol;({17725}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15678 |{17727}<0 and {17728}>0&eol;and (&eol;{17729}=6 or&eol;{17729}=7 or&eol;{17729}=11 or&eol;{17729}=62 or&eol;{17729}=69 or&eol;{17729}=117&eol;)&eol;and&eol;({17730}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17727}>0 and {17731}>0) or&eol;({17730}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15679 |{17732}<0 and {17733}>0&eol;and (&eol;{17734}=6 or&eol;{17734}=7 or&eol;{17734}=11 or&eol;{17734}=62 or&eol;{17734}=69 or&eol;{17734}=117&eol;)&eol;and&eol;({17735}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17732}>0 and {17736}>0) or&eol;({17735}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15680 |{17737}<0 and {17738}>0&eol;and (&eol;{17739}=6 or&eol;{17739}=7 or&eol;{17739}=11 or&eol;{17739}=62 or&eol;{17739}=69 or&eol;{17739}=117&eol;)&eol;and&eol;({17740}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17737}>0 and {17741}>0) or&eol;({17740}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15681 |{17742}<0 and {17743}>0&eol;and (&eol;{17744}=6 or&eol;{17744}=7 or&eol;{17744}=11 or&eol;{17744}=62 or&eol;{17744}=69 or&eol;{17744}=117&eol;)&eol;and&eol;({17745}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17742}>0 and {17746}>0) or&eol;({17745}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15682 |{17747}<0 and {17748}>0&eol;and (&eol;{17749}=6 or&eol;{17749}=7 or&eol;{17749}=11 or&eol;{17749}=62 or&eol;{17749}=69 or&eol;{17749}=117&eol;)&eol;and&eol;({17750}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17747}>0 and {17751}>0) or&eol;({17750}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15683 |{17752}<0 and {17753}>0&eol;and (&eol;{17754}=6 or&eol;{17754}=7 or&eol;{17754}=11 or&eol;{17754}=62 or&eol;{17754}=69 or&eol;{17754}=117&eol;)&eol;and&eol;({17755}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17752}>0 and {17756}>0) or&eol;({17755}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15684 |{17757}<0 and {17758}>0&eol;and (&eol;{17759}=6 or&eol;{17759}=7 or&eol;{17759}=11 or&eol;{17759}=62 or&eol;{17759}=69 or&eol;{17759}=117&eol;)&eol;and&eol;({17760}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17757}>0 and {17761}>0) or&eol;({17760}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15685 |{17762}<0 and {17763}>0&eol;and (&eol;{17764}=6 or&eol;{17764}=7 or&eol;{17764}=11 or&eol;{17764}=62 or&eol;{17764}=69 or&eol;{17764}=117&eol;)&eol;and&eol;({17765}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17762}>0 and {17766}>0) or&eol;({17765}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15686 |{17767}<0 and {17768}>0&eol;and (&eol;{17769}=6 or&eol;{17769}=7 or&eol;{17769}=11 or&eol;{17769}=62 or&eol;{17769}=69 or&eol;{17769}=117&eol;)&eol;and&eol;({17770}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17767}>0 and {17771}>0) or&eol;({17770}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15687 |{17772}<0 and {17773}>0&eol;and (&eol;{17774}=6 or&eol;{17774}=7 or&eol;{17774}=11 or&eol;{17774}=62 or&eol;{17774}=69 or&eol;{17774}=117&eol;)&eol;and&eol;({17775}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17772}>0 and {17776}>0) or&eol;({17775}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15689 |{17782}<0 and {17783}>0&eol;and (&eol;{17784}=6 or&eol;{17784}=7 or&eol;{17784}=11 or&eol;{17784}=62 or&eol;{17784}=69 or&eol;{17784}=117&eol;)&eol;and&eol;({17785}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17782}>0 and {17786}>0) or&eol;({17785}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15690 |{17787}<0 and {17788}>0&eol;and (&eol;{17789}=6 or&eol;{17789}=7 or&eol;{17789}=11 or&eol;{17789}=62 or&eol;{17789}=69 or&eol;{17789}=117&eol;)&eol;and&eol;({17790}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17787}>0 and {17791}>0) or&eol;({17790}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15691 |{17792}<0 and {17793}>0&eol;and (&eol;{17794}=6 or&eol;{17794}=7 or&eol;{17794}=11 or&eol;{17794}=62 or&eol;{17794}=69 or&eol;{17794}=117&eol;)&eol;and&eol;({17795}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17792}>0 and {17796}>0) or&eol;({17795}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15693 |{17802}<0 and {17803}>0&eol;and (&eol;{17804}=6 or&eol;{17804}=7 or&eol;{17804}=11 or&eol;{17804}=62 or&eol;{17804}=69 or&eol;{17804}=117&eol;)&eol;and&eol;({17805}<>2)|Interface {#IFDESCR}: 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. Ack to close. |15692 |0 |2 |1 |({17802}>0 and {17806}>0) or&eol;({17805}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15694 |{17807}<0 and {17808}>0&eol;and (&eol;{17809}=6 or&eol;{17809}=7 or&eol;{17809}=11 or&eol;{17809}=62 or&eol;{17809}=69 or&eol;{17809}=117&eol;)&eol;and&eol;({17810}<>2)|Interface {#IFDESCR}: 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. Ack to close. |15692 |0 |2 |1 |({17807}>0 and {17811}>0) or&eol;({17810}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15696 |{17817}<0 and {17818}>0&eol;and (&eol;{17819}=6 or&eol;{17819}=7 or&eol;{17819}=11 or&eol;{17819}=62 or&eol;{17819}=69 or&eol;{17819}=117&eol;)&eol;and&eol;({17820}<>2)|Interface {#IFDESCR}: 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. Ack to close. |15695 |0 |2 |1 |({17817}>0 and {17821}>0) or&eol;({17820}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15697 |{17822}<0 and {17823}>0&eol;and (&eol;{17824}=6 or&eol;{17824}=7 or&eol;{17824}=11 or&eol;{17824}=62 or&eol;{17824}=69 or&eol;{17824}=117&eol;)&eol;and&eol;({17825}<>2)|Interface {#IFDESCR}: 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. Ack to close. |15695 |0 |2 |1 |({17822}>0 and {17826}>0) or&eol;({17825}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15700 |{17837}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |15701 |{17838}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |15702 |{17839}>{$ICMP_LOSS_WARN} and {17839}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |15703 |{17840}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |15708 |{17848}<0 and {17849}>0&eol;and (&eol;{17850}=6 or&eol;{17850}=7 or&eol;{17850}=11 or&eol;{17850}=62 or&eol;{17850}=69 or&eol;{17850}=117&eol;)&eol;and&eol;({17851}<>2)|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. Ack to close. |15671 |0 |2 |1 |({17848}>0 and {17852}>0) or&eol;({17851}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15709 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17853}=2 and {17854}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{17853}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |15723 |{17874}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |15724 |{17875}>{$ICMP_LOSS_WARN} and {17875}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |15725 |{17876}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |15755 |{17926}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |15756 |{17927}>{$ICMP_LOSS_WARN} and {17927}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |15757 |{17928}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |15798 |{17995}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14288 |0 |0 |0 | |0 | |0 | |
+ROW |15799 |{17996}>{$ICMP_LOSS_WARN} and {17996}<100 |High ICMP ping loss | |0 |2 | |14289 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |15800 |{17997}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |15819 |{18026}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |15820 |{18027}>{$ICMP_LOSS_WARN} and {18027}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |15821 |{18028}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |15840 |{18057}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |15841 |{18058}>{$ICMP_LOSS_WARN} and {18058}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |15842 |{18059}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |15854 |{18077}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |15853 |0 |0 |1 |{18077}<65 |0 | |0 | |
+ROW |15856 |{18079}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |15855 |0 |0 |1 |{18079}<65 |0 | |0 | |
+ROW |15989 |{18223}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |
+ROW |15990 |{18224}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |15991 |{18225}>{$ICMP_LOSS_WARN} and {18225}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |15992 |{18226}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |15997 |{18234}<0 and {18235}>0&eol;and (&eol;{18236}=6 or&eol;{18236}=7 or&eol;{18236}=11 or&eol;{18236}=62 or&eol;{18236}=69 or&eol;{18236}=117&eol;)&eol;and&eol;({18237}<>2)|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. Ack to close. |15671 |0 |2 |1 |({18234}>0 and {18238}>0) or&eol;({18237}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |15998 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18239}=2 and {18240}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15508 |0 |2 |1 |{18239}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16003 |{18248}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |15999 |0 |0 |0 | |0 | |0 | |
+ROW |16004 |{18249}<{$MEMORY.AVAILABLE.MIN} and {18250}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |16000 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16005 |{18251}<{$SWAP.PFREE.MIN.WARN} and {18252}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16001 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16012 |{18266}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16007 |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16013 |{18267}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18268}-{18269})<5G or {18270}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16008 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16014 |{18271}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18272}-{18273})<10G or {18274}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16009 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16015 |{18275}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16010 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16016 |{18276}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16011 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16017 |{18277}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |16018 |{18278}>{$ICMP_LOSS_WARN} and {18278}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |16019 |{18279}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |16028 |{18291}<0 and {18292}>0&eol;and (&eol;{18293}=6 or&eol;{18293}=7 or&eol;{18293}=11 or&eol;{18293}=62 or&eol;{18293}=69 or&eol;{18293}=117&eol;)&eol;and&eol;({18294}<>2)|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. Ack to close. |15698 |0 |2 |1 |({18291}>0 and {18295}>0) or&eol;({18294}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16029 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18296}=2 and {18297}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |15502 |0 |2 |1 |{18296}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16045 |{18321}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16031 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16046 |{18322}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16045 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16047 |{18323}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16032 |0 |0 |0 | |0 | |0 | |
+ROW |16048 |{18324}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16047 |0 |0 |0 | |0 | |0 | |
+ROW |16049 |{18325}<{$MEMORY.AVAILABLE.MIN} and {18326}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |16033 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16050 |{18327}<{$MEMORY.AVAILABLE.MIN} and {18328}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |16049 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16051 |{18329}<{$SWAP.PFREE.MIN.WARN} and {18330}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16034 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16052 |{18331}<{$SWAP.PFREE.MIN.WARN} and {18332}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16051 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16053 |{18333}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |16035 |0 |0 |0 | |0 | |1 | |
+ROW |16054 |{18334}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |16053 |0 |0 |0 | |0 | |1 | |
+ROW |16055 |{18335}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16036 |0 |0 |0 | |0 | |1 | |
+ROW |16056 |{18336}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16055 |0 |0 |0 | |0 | |1 | |
+ROW |16059 |{18341}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |16038 |0 |0 |0 | |0 | |0 | |
+ROW |16060 |{18342}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |16059 |0 |0 |0 | |0 | |0 | |
+ROW |16061 |{18343}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |16039 |0 |0 |0 | |0 | |0 | |
+ROW |16062 |{18344}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |16061 |0 |0 |0 | |0 | |0 | |
+ROW |16063 |{18345}/{18346}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |16040 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
+ROW |16064 |{18347}/{18348}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |16063 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
+ROW |16065 |{18349}>0 |/etc/passwd has been changed | |0 |1 | |16041 |0 |0 |0 | |0 | |1 | |
+ROW |16066 |{18350}>0 |/etc/passwd has been changed | |0 |1 | |16065 |0 |0 |0 | |0 | |1 | |
+ROW |16067 |{18351}=1 and {18352}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16042 |0 |0 |2 | |0 | |1 | |
+ROW |16068 |{18353}=1 and {18354}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16067 |0 |0 |2 | |0 | |1 | |
+ROW |16077 |{18376}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18377}-{18378})<5G or {18379}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16069 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16078 |{18380}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18381}-{18382})<5G or {18383}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16077 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16079 |{18384}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18385}-{18386})<10G or {18387}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16070 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16080 |{18388}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18389}-{18390})<10G or {18391}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16079 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16081 |{18392}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16071 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16082 |{18393}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16081 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16083 |{18394}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16072 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16084 |{18395}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16083 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16087 |{18398}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18399}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16074 |0 |2 |1 |{18400}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18401}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16088 |{18402}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18403}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16087 |0 |2 |1 |{18404}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18405}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16089 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18406}=2 and {18407}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16075 |0 |2 |1 |{18406}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16090 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18408}=2 and {18409}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16089 |0 |2 |1 |{18408}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16091 |{18410}<0 and {18411}>0&eol;and&eol;({18411}=6&eol;or {18411}=1)&eol;and&eol;({18412}<>2) |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. Ack to close. |16076 |0 |2 |1 |({18410}>0 and {18413}>0) or&eol;({18412}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16092 |{18414}<0 and {18415}>0&eol;and&eol;({18415}=6&eol;or {18415}=1)&eol;and&eol;({18416}<>2) |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. Ack to close. |16091 |0 |2 |1 |({18414}>0 and {18417}>0) or&eol;({18416}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16110 |{18442}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16097 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16111 |{18443}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16098 |0 |0 |0 | |0 | |0 | |
+ROW |16112 |{18444}<{$MEMORY.AVAILABLE.MIN} and {18445}>0 |Lack of available memory ( < {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |16099 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16113 |{18446}<{$SWAP.PFREE.MIN.WARN} and {18447}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16100 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16114 |{18448}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |16101 |0 |0 |0 | |0 | |1 | |
+ROW |16115 |{18449}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16102 |0 |0 |0 | |0 | |1 | |
+ROW |16117 |{18452}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |16104 |0 |0 |0 | |0 | |0 | |
+ROW |16118 |{18453}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |16105 |0 |0 |0 | |0 | |0 | |
+ROW |16119 |{18454}/{18455}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |16106 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |
+ROW |16120 |{18456}>0 |/etc/passwd has been changed | |0 |1 | |16107 |0 |0 |0 | |0 | |1 | |
+ROW |16121 |{18457}=1 and {18458}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16108 |0 |0 |2 | |0 | |1 | |
+ROW |16130 |{18480}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18481}-{18482})<5G or {18483}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16122 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16131 |{18484}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18485}-{18486})<10G or {18487}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16123 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16132 |{18488}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16124 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16133 |{18489}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16125 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |
+ROW |16135 |{18491}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18492}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16127 |0 |2 |1 |{18493}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18494}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16136 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18495}=2 and {18496}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16128 |0 |2 |1 |{18495}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16137 |{18497}<0 and {18498}>0&eol;and&eol;({18498}=6&eol;or {18498}=1)&eol;and&eol;({18499}<>2) |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. Ack to close. |16129 |0 |2 |1 |({18497}>0 and {18500}>0) or&eol;({18499}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16171 |{18561}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16160 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16172 |{18562}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |16161 |0 |0 |0 | |0 | |0 | |
+ROW |16173 |{18563}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |16162 |0 |0 |0 | |0 | |0 | |
+ROW |16175 |{18565}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16164 |0 |0 |0 | |0 | |0 | |
+ROW |16176 |{18566}<{$SWAP.PFREE.MIN.WARN} and {18567}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16165 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16177 |{18568}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |16166 |0 |0 |0 | |0 | |0 | |
+ROW |16178 |{18569}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |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. |16167 |0 |0 |0 | |0 | |0 | |
+ROW |16179 |{18570}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |16168 |0 |0 |0 | |0 | |1 | |
+ROW |16180 |{18571}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16169 |0 |0 |0 | |0 | |1 | |
+ROW |16189 |{18597}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18598}-{18599})<5G or {18600}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16182 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16190 |{18601}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18602}-{18603})<10G or {18604}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16183 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16191 |{18605}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |16184 |0 |2 |0 | |0 | |1 | |
+ROW |16192 |({18606}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18607} or&eol;{18608}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18607}) and&eol;{18607}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16185 |0 |2 |1 |{18606}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18607} and&eol;{18608}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18607}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16193 |{18609}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18610}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16186 |0 |2 |1 |{18611}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18612}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16194 |{18613}<0 and {18614}>0&eol;and (&eol;{18615}=6 or&eol;{18615}=7 or&eol;{18615}=11 or&eol;{18615}=62 or&eol;{18615}=69 or&eol;{18615}=117&eol;)&eol;and&eol;({18616}<>2)|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. Ack to close. |16187 |0 |2 |1 |({18613}>0 and {18617}>0) or&eol;({18616}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16195 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18618}=2 and {18619}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16188 |0 |2 |1 |{18618}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16198 |{18622}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
+ROW |16199 |{18623}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16198 |0 |0 |0 | |0 | |1 | |
+ROW |16200 |{18624}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
+ROW |16201 |{18625}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
+ROW |16202 |{18626}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
+ROW |16203 |{18627}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
+ROW |16204 |{18628}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
+ROW |16205 |{18629}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
+ROW |16206 |{18630}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |
+ROW |16208 |{18632}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |16197 |0 |0 |0 | |0 | |1 | |
+ROW |16220 |{18646}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16209 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16221 |{18647}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |16210 |0 |0 |0 | |0 | |0 | |
+ROW |16222 |{18648}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |16211 |0 |0 |0 | |0 | |0 | |
+ROW |16224 |{18650}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16213 |0 |0 |0 | |0 | |0 | |
+ROW |16225 |{18651}<{$SWAP.PFREE.MIN.WARN} and {18652}>0 |High swap space usage ( less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |16214 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |
+ROW |16226 |{18653}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |16215 |0 |0 |0 | |0 | |0 | |
+ROW |16227 |{18654}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |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. |16216 |0 |0 |0 | |0 | |0 | |
+ROW |16228 |{18655}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |16217 |0 |0 |0 | |0 | |1 | |
+ROW |16229 |{18656}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |16218 |0 |0 |0 | |0 | |1 | |
+ROW |16238 |{18682}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18683}-{18684})<5G or {18685}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16231 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16239 |{18686}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18687}-{18688})<10G or {18689}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16232 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16240 |{18690}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |16233 |0 |2 |0 | |0 | |1 | |
+ROW |16241 |({18691}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18692} or&eol;{18693}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18692}) and&eol;{18692}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16234 |0 |2 |1 |{18691}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18692} and&eol;{18693}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18692}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16242 |{18694}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18695}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16235 |0 |2 |1 |{18696}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18697}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16243 |{18698}<0 and {18699}>0&eol;and (&eol;{18700}=6 or&eol;{18700}=7 or&eol;{18700}=11 or&eol;{18700}=62 or&eol;{18700}=69 or&eol;{18700}=117&eol;)&eol;and&eol;({18701}<>2)|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. Ack to close. |16236 |0 |2 |1 |({18698}>0 and {18702}>0) or&eol;({18701}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |
+ROW |16244 |{$IFCONTROL:"{#IFNAME}"}=1 and ({18703}=2 and {18704}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - 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.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16237 |0 |2 |1 |{18703}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |
+ROW |16274 |{18736}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |16273 |0 |0 |1 |{18736}<65 |0 | |0 | |
+ROW |16278 |{18741}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16275 |0 |0 |0 | |0 | |1 | |
+ROW |16279 |{18742}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16275 |0 |0 |0 | |0 | |1 | |
+ROW |16280 |{18743}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16275 |0 |0 |0 | |0 | |1 | |
+ROW |16284 |{18750}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16277 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16285 |{18751}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16277 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16286 |{18752}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16277 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16290 |{18757}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16291 |{18758}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16292 |{18759}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16293 |{18760}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16294 |{18761}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16295 |{18762}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16296 |{18763}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16297 |{18764}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16298 |{18765}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16299 |{18766}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16300 |{18767}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16301 |{18768}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16302 |{18769}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16303 |{18770}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16304 |{18771}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16305 |{18772}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16306 |{18773}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16307 |{18774}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16308 |{18775}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16309 |{18776}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16310 |{18777}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16311 |{18778}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16312 |{18779}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16313 |{18780}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16314 |{18781}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16315 |{18782}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16316 |{18783}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16317 |{18784}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16318 |{18785}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16348 |{18844}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16349 |{18845}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16350 |{18846}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16351 |{18847}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16352 |{18848}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16353 |{18849}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16354 |{18850}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16355 |{18851}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16356 |{18852}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16357 |{18853}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16358 |{18854}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16359 |{18855}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16360 |{18856}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16361 |{18857}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16362 |{18858}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16363 |{18859}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16364 |{18860}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16365 |{18861}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16366 |{18862}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16367 |{18863}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16368 |{18864}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16369 |{18865}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16370 |{18866}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16371 |{18867}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16372 |{18868}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16373 |{18869}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16374 |{18870}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16375 |{18871}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16376 |{18872}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16381 |({18887}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18888} or&eol;{18889}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18888}) and&eol;{18888}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18887}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18888} and&eol;{18889}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18888}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16382 |({18890}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18891} or&eol;{18892}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18891}) and&eol;{18891}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18890}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18891} and&eol;{18892}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18891}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16383 |({18893}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18894} or&eol;{18895}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18894}) and&eol;{18894}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18893}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18894} and&eol;{18895}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18894}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16384 |({18896}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18897} or&eol;{18898}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18897}) and&eol;{18897}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18896}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18897} and&eol;{18898}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18897}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16385 |({18899}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18900} or&eol;{18901}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18900}) and&eol;{18900}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18899}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18900} and&eol;{18901}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18900}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16386 |({18902}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18903} or&eol;{18904}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18903}) and&eol;{18903}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18902}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18903} and&eol;{18904}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18903}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16387 |({18905}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18906} or&eol;{18907}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18906}) and&eol;{18906}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18905}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18906} and&eol;{18907}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18906}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16388 |({18908}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18909} or&eol;{18910}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18909}) and&eol;{18909}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18908}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18909} and&eol;{18910}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18909}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16389 |({18911}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18912} or&eol;{18913}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18912}) and&eol;{18912}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18911}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18912} and&eol;{18913}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18912}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16390 |({18914}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18915} or&eol;{18916}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18915}) and&eol;{18915}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18914}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18915} and&eol;{18916}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18915}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16391 |({18917}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18918} or&eol;{18919}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18918}) and&eol;{18918}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18917}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18918} and&eol;{18919}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18918}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16392 |({18920}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18921} or&eol;{18922}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18921}) and&eol;{18921}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18920}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18921} and&eol;{18922}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18921}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16393 |({18923}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18924} or&eol;{18925}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18924}) and&eol;{18924}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18923}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18924} and&eol;{18925}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18924}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16394 |({18926}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18927} or&eol;{18928}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18927}) and&eol;{18927}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18926}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18927} and&eol;{18928}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18927}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16395 |({18929}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18930} or&eol;{18931}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18930}) and&eol;{18930}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18929}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18930} and&eol;{18931}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18930}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16396 |({18932}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18933} or&eol;{18934}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18933}) and&eol;{18933}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18932}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18933} and&eol;{18934}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18933}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16397 |({18935}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18936} or&eol;{18937}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18936}) and&eol;{18936}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18935}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18936} and&eol;{18937}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18936}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16398 |({18938}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18939} or&eol;{18940}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18939}) and&eol;{18939}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18938}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18939} and&eol;{18940}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18939}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16399 |({18941}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18942} or&eol;{18943}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18942}) and&eol;{18942}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18941}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18942} and&eol;{18943}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18942}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16400 |({18944}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18945} or&eol;{18946}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18945}) and&eol;{18945}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18944}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18945} and&eol;{18946}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18945}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16401 |({18947}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18948} or&eol;{18949}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{18948}) and&eol;{18948}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16379 |0 |2 |1 |{18947}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18948} and&eol;{18949}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{18948}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16402 |{18950}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18951}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18952}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18953}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16403 |{18954}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18955}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18956}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18957}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16404 |{18958}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18959}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18960}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18961}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16405 |{18962}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18963}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18964}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18965}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16406 |{18966}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18967}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18968}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18969}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16407 |{18970}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18971}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18972}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18973}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16408 |{18974}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18975}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18976}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18977}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16409 |{18978}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18979}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18980}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18981}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16410 |{18982}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18983}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18984}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18985}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16411 |{18986}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18987}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18988}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18989}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16412 |{18990}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18991}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18992}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18993}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16413 |{18994}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18995}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{18996}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {18997}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16414 |{18998}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {18999}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19000}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19001}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16415 |{19002}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19003}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19004}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19005}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16416 |{19006}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19007}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19008}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19009}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16417 |{19010}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19011}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19012}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19013}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16418 |{19014}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19015}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19016}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19017}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16419 |{19018}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19019}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19020}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19021}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16420 |{19022}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19023}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19024}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19025}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16421 |{19026}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19027}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19028}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19029}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16422 |{19030}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19031}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16380 |0 |2 |1 |{19032}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19033}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16425 |({19041}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19042} or&eol;{19043}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19042}) and&eol;{19042}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16423 |0 |2 |1 |{19041}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19042} and&eol;{19043}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19042}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16426 |({19044}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19045} or&eol;{19046}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19045}) and&eol;{19045}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16423 |0 |2 |1 |{19044}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19045} and&eol;{19046}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19045}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16427 |{19047}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19048}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16424 |0 |2 |1 |{19049}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19050}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16428 |{19051}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19052}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16424 |0 |2 |1 |{19053}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19054}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16431 |({19062}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19063} or&eol;{19064}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19063}) and&eol;{19063}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16429 |0 |2 |1 |{19062}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19063} and&eol;{19064}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19063}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16432 |({19065}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19066} or&eol;{19067}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19066}) and&eol;{19066}>0 |Interface {#IFDESCR}: High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16429 |0 |2 |1 |{19065}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19066} and&eol;{19067}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19066}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16433 |{19068}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19069}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16430 |0 |2 |1 |{19070}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19071}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16434 |{19072}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19073}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16430 |0 |2 |1 |{19074}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19075}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16437 |({19083}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19084} or&eol;{19085}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{19084}) and&eol;{19084}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |16435 |0 |2 |1 |{19083}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19084} and&eol;{19085}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{19084}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |
+ROW |16438 |{19086}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {19087}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |16436 |0 |2 |1 |{19088}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {19089}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |
+ROW |16441 |{19092}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |16197 |0 |0 |0 | |0 | |1 | |
+ROW |16453 |{19106}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |
+ROW |16454 |{19107}>{$ICMP_LOSS_WARN} and {19107}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |
+ROW |16455 |{19108}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |
+ROW |16457 |{19111}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |
+ROW |16458 |{19112}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |
+ROW |16500 |{19181}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16498 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16501 |{19182}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16498 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16502 |{19183}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16499 |0 |0 |0 | |0 | |0 | |
+ROW |16503 |{19184}>{$MEMORY.UTIL.MAX} |High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16499 |0 |0 |0 | |0 | |0 | |
+ROW |16509 |{19194}=1 and {19195}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |2 | |0 | |1 | |
+ROW |16510 |{19196}=1 and {19197}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |2 | |0 | |1 | |
+ROW |16511 |{19198}=1 and {19199}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |2 | |0 | |1 | |
+ROW |16512 |{19200}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16508 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16516 |{19204}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16513 |0 |2 |0 | |0 | |0 | |
+ROW |16517 |{19205}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16513 |0 |2 |0 | |0 | |0 | |
+ROW |16518 |{19206}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16513 |0 |2 |0 | |0 | |0 | |
+ROW |16519 |{19207}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16514 |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16520 |{19208}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16515 |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16564 |{19273}/{19274}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19275}>0&eol;and {19276}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16563 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|
+ROW |16565 |{19277}/{19278}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19279}>0&eol;and {19280}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16564 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|
+ROW |16570 |{19291}/{19292}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19293}>0&eol;and {19294}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16569 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|
+ROW |16576 |{19309}/{19310}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19311}>0&eol;and {19312}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16575 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|
+ROW |16580 |{19318}=1 and {19319}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16579 |0 |0 |0 | |0 | |1 | |
+ROW |16581 |{19320}=1 and {19321}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16580 |0 |0 |0 | |0 | |1 | |
+ROW |16583 |{19324}=1 and {19325}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16582 |0 |0 |0 | |0 | |1 | |
+ROW |16586 |{19330}=1 and {19331}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16585 |0 |0 |0 | |0 | |1 | |
+ROW |16588 |{19334}=1 and {19335}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16587 |0 |0 |0 | |0 | |1 | |
+ROW |16590 |{19338}=1 and {19339}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16589 |0 |0 |0 | |0 | |1 | |
+ROW |16591 |{19340}=1 and {19341}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16589 |0 |0 |0 | |0 | |1 | |
+ROW |16592 |{19342}=1 and {19343}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16589 |0 |0 |0 | |0 | |1 | |
+ROW |16594 |{19346}=1 and {19347}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16595 |{19348}=1 and {19349}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16596 |{19350}=1 and {19351}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16597 |{19352}=1 and {19353}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16598 |{19354}=1 and {19355}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16599 |{19356}=1 and {19357}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16600 |{19358}=1 and {19359}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16601 |{19360}=1 and {19361}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16602 |{19362}=1 and {19363}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16603 |{19364}=1 and {19365}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16604 |{19366}=1 and {19367}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16605 |{19368}=1 and {19369}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16606 |{19370}=1 and {19371}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16607 |{19372}=1 and {19373}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16608 |{19374}=1 and {19375}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16609 |{19376}=1 and {19377}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16610 |{19378}=1 and {19379}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16611 |{19380}=1 and {19381}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16612 |{19382}=1 and {19383}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16613 |{19384}=1 and {19385}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16614 |{19386}=1 and {19387}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16615 |{19388}=1 and {19389}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16616 |{19390}=1 and {19391}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16617 |{19392}=1 and {19393}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16618 |{19394}=1 and {19395}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16619 |{19396}=1 and {19397}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16620 |{19398}=1 and {19399}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16621 |{19400}=1 and {19401}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16622 |{19402}=1 and {19403}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16623 |{19404}=1 and {19405}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |
+ROW |16625 |{19407}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16624 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16626 |{19408}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16627 |{19409}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16628 |{19410}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16632 |{19420}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16629 |0 |2 |0 | |0 | |0 | |
+ROW |16633 |{19421}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16632 |0 |2 |0 | |0 | |0 | |
+ROW |16634 |{19422}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16632 |0 |2 |0 | |0 | |0 | |
+ROW |16635 |{19423}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16632 |0 |2 |0 | |0 | |0 | |
+ROW |16636 |{19424}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19425}-{19426})<5G or {19427}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16630 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16637 |{19428}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19429}-{19430})<5G or {19431}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16638 |{19432}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19433}-{19434})<5G or {19435}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16639 |{19436}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19437}-{19438})<5G or {19439}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16640 |{19440}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19441}-{19442})<10G or {19443}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16631 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16641 |{19444}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19445}-{19446})<10G or {19447}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16642 |{19448}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19449}-{19450})<10G or {19451}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16643 |{19452}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19453}-{19454})<10G or {19455}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16698 |{19519}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16697 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |
+ROW |16702 |{19529}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |16699 |0 |2 |0 | |0 | |0 | |
+ROW |16703 |{19530}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19531}-{19532})<5G or {19533}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16700 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16704 |{19534}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19535}-{19536})<10G or {19537}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16701 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |
+ROW |16706 |{19540} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19541} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |16705 |0 |2 |0 | |0 | |1 | |
+ROW |16707 |{19542} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19543} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |16706 |0 |2 |0 | |0 | |1 | |
+ROW |16709 |{19546} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19547} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#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)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |16708 |0 |2 |0 | |0 | |1 | |
+ROW |16712 |{19551}>{$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. |16711 |0 |0 |0 | |0 | |0 | |
+ROW |16714 |{19553}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |16713 |0 |2 |0 | |0 | |0 | |
+ROW |16716 |{19555}>{$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. |16715 |0 |0 |0 | |0 | |0 | |
+ROW |16718 |{19557}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |16717 |0 |2 |0 | |0 | |0 | |
TABLE |trigger_depends
FIELDS|triggerdepid|triggerid_down|triggerid_up|
@@ -5987,604 +5987,604 @@ ROW |10546 |15978 |15983 |
ROW |10547 |15980 |15979 |
ROW |10548 |15986 |15987 |
ROW |10549 |15988 |15987 |
-ROW |12235 |15944 |15947 |
-ROW |12236 |15944 |15943 |
-ROW |12237 |15943 |15947 |
-ROW |12238 |15942 |15947 |
-ROW |12239 |15942 |15943 |
-ROW |12240 |15948 |15949 |
-ROW |12241 |15950 |15949 |
-ROW |12242 |16743 |16744 |
-ROW |12243 |16646 |16647 |
-ROW |12244 |16663 |16664 |
-ROW |12245 |16752 |16753 |
-ROW |12246 |15955 |15957 |
-ROW |12247 |15955 |15954 |
-ROW |12248 |15954 |15957 |
-ROW |12249 |15956 |15957 |
-ROW |12250 |15956 |15954 |
-ROW |12251 |16678 |15957 |
-ROW |12252 |16678 |15954 |
-ROW |12253 |15961 |15960 |
-ROW |12254 |15962 |15960 |
-ROW |12255 |16679 |15960 |
-ROW |12256 |16257 |16255 |
-ROW |12257 |16257 |16256 |
-ROW |12258 |16256 |16255 |
-ROW |12259 |16251 |16255 |
-ROW |12260 |16251 |16256 |
-ROW |12261 |16443 |16255 |
-ROW |12262 |16443 |16256 |
-ROW |12263 |16270 |16269 |
-ROW |12264 |16448 |16269 |
-ROW |12265 |16265 |16269 |
-ROW |12266 |14195 |14205 |
-ROW |12267 |14196 |14195 |
-ROW |12268 |14196 |14205 |
-ROW |12269 |14197 |14205 |
-ROW |12270 |14198 |14197 |
-ROW |12271 |14198 |14205 |
-ROW |12272 |14200 |14199 |
-ROW |12273 |14201 |14205 |
-ROW |12274 |14202 |14201 |
-ROW |12275 |14202 |14205 |
-ROW |12276 |14204 |14203 |
-ROW |12277 |14206 |14222 |
-ROW |12278 |14207 |14206 |
-ROW |12279 |14207 |14222 |
-ROW |12280 |14208 |14222 |
-ROW |12281 |14209 |14208 |
-ROW |12282 |14209 |14222 |
-ROW |12283 |14210 |14222 |
-ROW |12284 |14211 |14210 |
-ROW |12285 |14211 |14222 |
-ROW |12286 |14212 |14222 |
-ROW |12287 |14213 |14212 |
-ROW |12288 |14213 |14222 |
-ROW |12289 |14214 |14222 |
-ROW |12290 |14215 |14214 |
-ROW |12291 |14215 |14222 |
-ROW |12292 |14217 |14216 |
-ROW |12293 |14218 |14222 |
-ROW |12294 |14219 |14218 |
-ROW |12295 |14219 |14222 |
-ROW |12296 |14220 |14222 |
-ROW |12297 |14221 |14220 |
-ROW |12298 |14221 |14222 |
-ROW |12299 |14223 |14222 |
-ROW |12300 |14224 |14222 |
-ROW |12301 |14224 |14223 |
-ROW |12302 |14225 |14222 |
-ROW |12303 |14226 |14222 |
-ROW |12304 |14226 |14225 |
-ROW |12305 |16719 |16721 |
-ROW |12306 |16722 |16723 |
-ROW |12307 |16729 |16728 |
-ROW |12308 |16730 |16728 |
-ROW |12309 |16756 |16758 |
-ROW |12310 |16765 |16764 |
-ROW |12311 |16766 |16764 |
-ROW |12312 |16731 |16732 |
-ROW |12313 |16734 |16736 |
-ROW |12314 |16741 |16740 |
-ROW |12315 |16742 |16740 |
-ROW |12316 |15928 |15933 |
-ROW |12317 |15931 |15933 |
-ROW |12318 |16683 |16687 |
-ROW |12319 |14252 |14251 |
-ROW |12320 |14289 |14288 |
-ROW |12321 |14525 |14524 |
-ROW |12322 |14718 |14717 |
-ROW |12323 |15799 |15798 |
-ROW |12324 |14294 |14293 |
-ROW |12325 |14312 |14311 |
-ROW |12326 |14328 |14327 |
-ROW |12327 |14348 |14347 |
-ROW |12328 |14357 |14356 |
-ROW |12329 |14390 |14389 |
-ROW |12330 |14404 |14403 |
-ROW |12331 |14452 |14451 |
-ROW |12332 |14469 |14468 |
-ROW |12333 |14487 |14486 |
-ROW |12334 |14506 |14505 |
-ROW |12335 |14535 |14534 |
-ROW |12336 |14545 |14544 |
-ROW |12337 |14583 |14582 |
-ROW |12338 |14599 |14598 |
-ROW |12339 |14616 |14615 |
-ROW |12340 |14653 |14652 |
-ROW |12341 |14674 |14673 |
-ROW |12342 |14692 |14691 |
-ROW |12343 |14705 |14704 |
-ROW |12344 |14907 |14906 |
-ROW |12345 |14929 |14928 |
-ROW |12346 |15221 |15220 |
-ROW |12347 |15702 |15701 |
-ROW |12348 |15724 |15723 |
-ROW |12349 |15756 |15755 |
-ROW |12350 |15820 |15819 |
-ROW |12351 |15841 |15840 |
-ROW |12352 |15991 |15990 |
-ROW |12353 |16018 |16017 |
-ROW |12354 |16454 |16453 |
-ROW |12355 |14253 |14252 |
-ROW |12356 |14290 |14289 |
-ROW |12357 |14526 |14525 |
-ROW |12358 |14719 |14718 |
-ROW |12359 |15800 |15799 |
-ROW |12360 |14295 |14294 |
-ROW |12361 |14313 |14312 |
-ROW |12362 |14329 |14328 |
-ROW |12363 |14349 |14348 |
-ROW |12364 |14358 |14357 |
-ROW |12365 |14391 |14390 |
-ROW |12366 |14405 |14404 |
-ROW |12367 |14453 |14452 |
-ROW |12368 |14470 |14469 |
-ROW |12369 |14488 |14487 |
-ROW |12370 |14507 |14506 |
-ROW |12371 |14536 |14535 |
-ROW |12372 |14546 |14545 |
-ROW |12373 |14584 |14583 |
-ROW |12374 |14600 |14599 |
-ROW |12375 |14617 |14616 |
-ROW |12376 |14654 |14653 |
-ROW |12377 |14675 |14674 |
-ROW |12378 |14693 |14692 |
-ROW |12379 |14706 |14705 |
-ROW |12380 |14908 |14907 |
-ROW |12381 |14930 |14929 |
-ROW |12382 |15222 |15221 |
-ROW |12383 |15703 |15702 |
-ROW |12384 |15725 |15724 |
-ROW |12385 |15757 |15756 |
-ROW |12386 |15821 |15820 |
-ROW |12387 |15842 |15841 |
-ROW |12388 |15992 |15991 |
-ROW |12389 |16019 |16018 |
-ROW |12390 |16455 |16454 |
-ROW |12391 |14253 |14251 |
-ROW |12392 |14290 |14288 |
-ROW |12393 |14526 |14524 |
-ROW |12394 |14719 |14717 |
-ROW |12395 |15800 |15798 |
-ROW |12396 |14295 |14293 |
-ROW |12397 |14313 |14311 |
-ROW |12398 |14329 |14327 |
-ROW |12399 |14349 |14347 |
-ROW |12400 |14358 |14356 |
-ROW |12401 |14391 |14389 |
-ROW |12402 |14405 |14403 |
-ROW |12403 |14453 |14451 |
-ROW |12404 |14470 |14468 |
-ROW |12405 |14488 |14486 |
-ROW |12406 |14507 |14505 |
-ROW |12407 |14536 |14534 |
-ROW |12408 |14546 |14544 |
-ROW |12409 |14584 |14582 |
-ROW |12410 |14600 |14598 |
-ROW |12411 |14617 |14615 |
-ROW |12412 |14654 |14652 |
-ROW |12413 |14675 |14673 |
-ROW |12414 |14693 |14691 |
-ROW |12415 |14706 |14704 |
-ROW |12416 |14908 |14906 |
-ROW |12417 |14930 |14928 |
-ROW |12418 |15222 |15220 |
-ROW |12419 |15703 |15701 |
-ROW |12420 |15725 |15723 |
-ROW |12421 |15757 |15755 |
-ROW |12422 |15821 |15819 |
-ROW |12423 |15842 |15840 |
-ROW |12424 |15992 |15990 |
-ROW |12425 |16019 |16017 |
-ROW |12426 |16455 |16453 |
-ROW |12427 |16275 |16277 |
-ROW |12428 |16278 |16284 |
-ROW |12429 |16279 |16285 |
-ROW |12430 |16280 |16286 |
-ROW |12431 |16277 |14288 |
-ROW |12432 |16284 |14524 |
-ROW |12433 |16285 |14717 |
-ROW |12434 |16286 |15798 |
-ROW |12435 |16287 |16289 |
-ROW |12436 |16290 |16348 |
-ROW |12437 |16291 |16349 |
-ROW |12438 |16292 |16350 |
-ROW |12439 |16293 |16351 |
-ROW |12440 |16294 |16352 |
-ROW |12441 |16295 |16353 |
-ROW |12442 |16296 |16354 |
-ROW |12443 |16297 |16355 |
-ROW |12444 |16298 |16356 |
-ROW |12445 |16299 |16357 |
-ROW |12446 |16300 |16358 |
-ROW |12447 |16301 |16359 |
-ROW |12448 |16302 |16360 |
-ROW |12449 |16303 |16361 |
-ROW |12450 |16304 |16362 |
-ROW |12451 |16305 |16363 |
-ROW |12452 |16306 |16364 |
-ROW |12453 |16307 |16365 |
-ROW |12454 |16308 |16366 |
-ROW |12455 |16309 |16367 |
-ROW |12456 |16310 |16368 |
-ROW |12457 |16311 |16369 |
-ROW |12458 |16312 |16370 |
-ROW |12459 |16313 |16371 |
-ROW |12460 |16314 |16372 |
-ROW |12461 |16315 |16373 |
-ROW |12462 |16316 |16374 |
-ROW |12463 |16317 |16375 |
-ROW |12464 |16318 |16376 |
-ROW |12465 |16457 |16458 |
-ROW |12466 |16289 |14293 |
-ROW |12467 |16348 |14311 |
-ROW |12468 |16349 |14327 |
-ROW |12469 |16350 |14347 |
-ROW |12470 |16351 |14356 |
-ROW |12471 |16352 |14389 |
-ROW |12472 |16353 |14403 |
-ROW |12473 |16354 |14451 |
-ROW |12474 |16355 |14468 |
-ROW |12475 |16356 |14486 |
-ROW |12476 |16357 |14505 |
-ROW |12477 |16358 |14534 |
-ROW |12478 |16359 |14544 |
-ROW |12479 |16360 |14582 |
-ROW |12480 |16361 |14598 |
-ROW |12481 |16362 |14615 |
-ROW |12482 |16363 |14652 |
-ROW |12483 |16364 |14673 |
-ROW |12484 |16365 |14691 |
-ROW |12485 |16366 |14704 |
-ROW |12486 |16367 |14906 |
-ROW |12487 |16368 |14928 |
-ROW |12488 |16369 |15220 |
-ROW |12489 |16370 |15701 |
-ROW |12490 |16371 |15723 |
-ROW |12491 |16372 |15755 |
-ROW |12492 |16373 |15819 |
-ROW |12493 |16374 |15840 |
-ROW |12494 |16375 |15990 |
-ROW |12495 |16376 |16017 |
-ROW |12496 |16458 |16453 |
-ROW |12497 |16701 |16700 |
-ROW |12498 |16704 |16703 |
-ROW |12499 |16631 |16630 |
-ROW |12500 |16640 |16636 |
-ROW |12501 |16641 |16637 |
-ROW |12502 |16642 |16638 |
-ROW |12503 |16643 |16639 |
-ROW |12504 |15692 |15490 |
-ROW |12505 |16423 |15490 |
-ROW |12506 |16424 |15490 |
-ROW |12507 |15693 |15492 |
-ROW |12508 |15694 |15493 |
-ROW |12509 |16425 |15492 |
-ROW |12510 |16426 |15493 |
-ROW |12511 |16427 |15492 |
-ROW |12512 |16428 |15493 |
-ROW |12513 |15695 |15496 |
-ROW |12514 |16429 |15496 |
-ROW |12515 |16430 |15496 |
-ROW |12516 |15696 |15498 |
-ROW |12517 |15697 |15499 |
-ROW |12518 |16431 |15498 |
-ROW |12519 |16432 |15499 |
-ROW |12520 |16433 |15498 |
-ROW |12521 |16434 |15499 |
-ROW |12522 |15670 |15506 |
-ROW |12523 |16377 |15506 |
-ROW |12524 |16378 |15506 |
-ROW |12525 |15671 |15508 |
-ROW |12526 |16379 |15508 |
-ROW |12527 |16380 |15508 |
-ROW |12528 |15672 |15510 |
-ROW |12529 |15673 |15511 |
-ROW |12530 |15674 |15512 |
-ROW |12531 |15675 |15513 |
-ROW |12532 |15676 |15514 |
-ROW |12533 |15677 |15515 |
-ROW |12534 |15678 |15516 |
-ROW |12535 |15679 |15517 |
-ROW |12536 |15680 |15518 |
-ROW |12537 |15681 |15519 |
-ROW |12538 |15682 |15520 |
-ROW |12539 |15683 |15521 |
-ROW |12540 |15684 |15522 |
-ROW |12541 |15685 |15523 |
-ROW |12542 |15686 |15524 |
-ROW |12543 |15687 |15525 |
-ROW |12544 |15689 |15527 |
-ROW |12545 |15690 |15528 |
-ROW |12546 |15691 |15529 |
-ROW |12547 |15708 |15709 |
-ROW |12548 |15997 |15998 |
-ROW |12549 |16381 |15510 |
-ROW |12550 |16382 |15511 |
-ROW |12551 |16383 |15512 |
-ROW |12552 |16384 |15513 |
-ROW |12553 |16385 |15514 |
-ROW |12554 |16386 |15515 |
-ROW |12555 |16387 |15516 |
-ROW |12556 |16388 |15517 |
-ROW |12557 |16389 |15518 |
-ROW |12558 |16390 |15519 |
-ROW |12559 |16391 |15520 |
-ROW |12560 |16392 |15521 |
-ROW |12561 |16393 |15522 |
-ROW |12562 |16394 |15523 |
-ROW |12563 |16395 |15524 |
-ROW |12564 |16396 |15525 |
-ROW |12565 |16397 |15527 |
-ROW |12566 |16398 |15528 |
-ROW |12567 |16399 |15529 |
-ROW |12568 |16400 |15709 |
-ROW |12569 |16401 |15998 |
-ROW |12570 |16402 |15510 |
-ROW |12571 |16403 |15511 |
-ROW |12572 |16404 |15512 |
-ROW |12573 |16405 |15513 |
-ROW |12574 |16406 |15514 |
-ROW |12575 |16407 |15515 |
-ROW |12576 |16408 |15516 |
-ROW |12577 |16409 |15517 |
-ROW |12578 |16410 |15518 |
-ROW |12579 |16411 |15519 |
-ROW |12580 |16412 |15520 |
-ROW |12581 |16413 |15521 |
-ROW |12582 |16414 |15522 |
-ROW |12583 |16415 |15523 |
-ROW |12584 |16416 |15524 |
-ROW |12585 |16417 |15525 |
-ROW |12586 |16418 |15527 |
-ROW |12587 |16419 |15528 |
-ROW |12588 |16420 |15529 |
-ROW |12589 |16421 |15709 |
-ROW |12590 |16422 |15998 |
-ROW |12591 |15698 |15502 |
-ROW |12592 |16435 |15502 |
-ROW |12593 |16436 |15502 |
-ROW |12594 |16028 |16029 |
-ROW |12595 |16437 |16029 |
-ROW |12596 |16438 |16029 |
-ROW |12597 |14318 |14319 |
-ROW |12598 |15714 |15715 |
-ROW |12599 |15721 |15720 |
-ROW |12600 |15394 |15393 |
-ROW |12601 |15392 |15391 |
-ROW |12602 |15390 |14339 |
-ROW |12603 |15382 |15381 |
-ROW |12604 |15380 |15379 |
-ROW |12605 |16504 |16505 |
-ROW |12606 |14372 |14373 |
-ROW |12607 |15386 |15385 |
-ROW |12608 |15384 |15383 |
-ROW |12609 |14380 |14381 |
-ROW |12610 |15347 |15346 |
-ROW |12611 |15345 |15344 |
-ROW |12612 |15342 |15343 |
-ROW |12613 |15363 |15360 |
-ROW |12614 |15364 |15361 |
-ROW |12615 |15365 |15362 |
-ROW |12616 |15357 |15354 |
-ROW |12617 |15358 |15355 |
-ROW |12618 |15359 |15356 |
-ROW |12619 |15348 |15351 |
-ROW |12620 |15349 |15352 |
-ROW |12621 |15350 |15353 |
-ROW |12622 |15334 |15333 |
-ROW |12623 |15332 |15331 |
-ROW |12624 |14460 |14461 |
-ROW |12625 |14476 |14477 |
-ROW |12626 |14495 |14496 |
-ROW |12627 |14511 |15368 |
-ROW |12628 |14551 |14552 |
-ROW |12629 |15374 |15373 |
-ROW |12630 |15376 |15375 |
-ROW |12631 |14914 |14915 |
-ROW |12632 |14589 |14590 |
-ROW |12633 |15338 |15337 |
-ROW |12634 |15335 |15336 |
-ROW |12635 |14624 |14625 |
-ROW |12636 |15387 |14934 |
-ROW |12637 |14658 |14659 |
-ROW |12638 |14664 |14665 |
-ROW |12639 |16547 |16546 |
-ROW |12640 |15396 |15397 |
-ROW |12641 |16551 |16552 |
-ROW |12642 |16034 |16032 |
-ROW |12643 |16051 |16047 |
-ROW |12644 |16052 |16048 |
-ROW |12645 |16034 |16033 |
-ROW |12646 |16051 |16049 |
-ROW |12647 |16052 |16050 |
-ROW |12648 |16031 |16563 |
-ROW |12649 |16045 |16564 |
-ROW |12650 |16046 |16565 |
-ROW |12651 |16039 |16040 |
-ROW |12652 |16061 |16063 |
-ROW |12653 |16062 |16064 |
-ROW |12654 |16042 |16579 |
-ROW |12655 |16067 |16580 |
-ROW |12656 |16068 |16581 |
-ROW |12657 |16041 |16042 |
-ROW |12658 |16065 |16067 |
-ROW |12659 |16066 |16068 |
-ROW |12660 |16041 |16579 |
-ROW |12661 |16065 |16580 |
-ROW |12662 |16066 |16581 |
-ROW |12663 |16032 |16033 |
-ROW |12664 |16047 |16049 |
-ROW |12665 |16048 |16050 |
-ROW |12666 |16070 |16069 |
-ROW |12667 |16072 |16071 |
-ROW |12668 |16076 |16075 |
-ROW |12669 |16074 |16075 |
-ROW |12670 |16079 |16077 |
-ROW |12671 |16080 |16078 |
-ROW |12672 |16083 |16081 |
-ROW |12673 |16084 |16082 |
-ROW |12674 |16091 |16089 |
-ROW |12675 |16092 |16090 |
-ROW |12676 |16087 |16089 |
-ROW |12677 |16088 |16090 |
-ROW |12678 |16100 |16098 |
-ROW |12679 |16113 |16111 |
-ROW |12680 |16100 |16099 |
-ROW |12681 |16113 |16112 |
-ROW |12682 |16097 |16569 |
-ROW |12683 |16110 |16570 |
-ROW |12684 |16105 |16106 |
-ROW |12685 |16118 |16119 |
-ROW |12686 |16108 |16582 |
-ROW |12687 |16121 |16583 |
-ROW |12688 |16107 |16108 |
-ROW |12689 |16120 |16121 |
-ROW |12690 |16107 |16582 |
-ROW |12691 |16120 |16583 |
-ROW |12692 |16098 |16099 |
-ROW |12693 |16111 |16112 |
-ROW |12694 |16123 |16122 |
-ROW |12695 |16125 |16124 |
-ROW |12696 |16129 |16128 |
-ROW |12697 |16127 |16128 |
-ROW |12698 |16131 |16130 |
-ROW |12699 |16133 |16132 |
-ROW |12700 |16137 |16136 |
-ROW |12701 |16135 |16136 |
-ROW |12702 |16149 |16147 |
-ROW |12703 |16149 |16148 |
-ROW |12704 |16141 |16142 |
-ROW |12705 |16146 |16573 |
-ROW |12706 |16143 |16584 |
-ROW |12707 |16147 |16148 |
-ROW |12708 |16152 |16154 |
-ROW |12709 |16153 |16154 |
-ROW |12710 |16150 |16154 |
-ROW |12711 |16151 |16154 |
-ROW |12712 |16156 |16155 |
-ROW |12713 |16158 |16157 |
-ROW |12714 |16001 |15999 |
-ROW |12715 |16005 |16003 |
-ROW |12716 |16001 |16000 |
-ROW |12717 |16005 |16004 |
-ROW |12718 |15999 |16000 |
-ROW |12719 |16003 |16004 |
-ROW |12720 |16009 |16008 |
-ROW |12721 |16011 |16010 |
-ROW |12722 |16014 |16013 |
-ROW |12723 |16016 |16015 |
-ROW |12724 |16165 |16164 |
-ROW |12725 |16176 |16175 |
-ROW |12726 |16161 |16160 |
-ROW |12727 |16172 |16171 |
-ROW |12728 |16162 |16161 |
-ROW |12729 |16173 |16172 |
-ROW |12730 |16162 |16160 |
-ROW |12731 |16173 |16171 |
-ROW |12732 |16711 |16160 |
-ROW |12733 |16712 |16171 |
-ROW |12734 |16166 |16164 |
-ROW |12735 |16177 |16175 |
-ROW |12736 |16167 |16164 |
-ROW |12737 |16178 |16175 |
-ROW |12738 |16183 |16182 |
-ROW |12739 |16187 |16188 |
-ROW |12740 |16185 |16188 |
-ROW |12741 |16186 |16188 |
-ROW |12742 |16190 |16189 |
-ROW |12743 |16194 |16195 |
-ROW |12744 |16192 |16195 |
-ROW |12745 |16193 |16195 |
-ROW |12746 |16214 |16213 |
-ROW |12747 |16225 |16224 |
-ROW |12748 |16210 |16209 |
-ROW |12749 |16221 |16220 |
-ROW |12750 |16211 |16210 |
-ROW |12751 |16222 |16221 |
-ROW |12752 |16211 |16209 |
-ROW |12753 |16222 |16220 |
-ROW |12754 |16715 |16209 |
-ROW |12755 |16716 |16220 |
-ROW |12756 |16215 |16213 |
-ROW |12757 |16226 |16224 |
-ROW |12758 |16216 |16213 |
-ROW |12759 |16227 |16224 |
-ROW |12760 |16232 |16231 |
-ROW |12761 |16236 |16237 |
-ROW |12762 |16234 |16237 |
-ROW |12763 |16235 |16237 |
-ROW |12764 |16239 |16238 |
-ROW |12765 |16243 |16244 |
-ROW |12766 |16241 |16244 |
-ROW |12767 |16242 |16244 |
-ROW |12768 |16768 |16769 |
-ROW |12769 |16768 |16770 |
-ROW |12770 |16769 |16770 |
-ROW |12771 |16771 |16772 |
-ROW |12772 |16771 |16773 |
-ROW |12773 |16772 |16773 |
-ROW |12774 |16488 |16487 |
-ROW |12775 |16485 |16484 |
-ROW |12776 |16486 |16484 |
-ROW |12777 |16486 |16485 |
-ROW |12778 |16480 |16479 |
-ROW |12779 |16482 |16481 |
-ROW |12780 |16475 |16474 |
-ROW |12781 |16471 |16472 |
-ROW |12782 |16468 |16469 |
-ROW |12783 |16459 |16460 |
-ROW |12784 |16462 |16463 |
-ROW |12785 |16465 |16466 |
-ROW |12786 |16477 |16476 |
-ROW |12787 |15729 |15728 |
-ROW |12788 |15730 |15728 |
-ROW |12789 |15730 |15729 |
-ROW |12790 |15752 |15754 |
-ROW |12791 |15753 |15754 |
-ROW |12792 |15753 |15752 |
-ROW |12793 |15742 |15741 |
-ROW |12794 |15750 |15749 |
-ROW |12795 |15751 |15750 |
-ROW |12796 |15751 |15749 |
-ROW |12797 |15746 |15743 |
-ROW |12798 |15744 |15743 |
-ROW |12799 |15740 |15739 |
-ROW |12800 |15736 |15737 |
-ROW |12801 |15733 |15734 |
-ROW |12802 |15748 |15747 |
-ROW |12803 |16440 |16439 |
-ROW |12804 |15791 |15790 |
-ROW |12805 |15788 |15787 |
-ROW |12806 |15789 |15787 |
-ROW |12807 |15789 |15788 |
-ROW |12808 |15786 |15785 |
-ROW |12809 |15784 |15783 |
-ROW |12810 |15794 |15792 |
-ROW |12811 |15793 |15792 |
-ROW |12812 |15782 |15781 |
-ROW |12813 |15763 |15764 |
-ROW |12814 |15766 |15767 |
-ROW |12815 |15769 |15770 |
-ROW |12816 |15778 |15779 |
-ROW |12817 |15772 |15773 |
-ROW |12818 |15775 |15776 |
-ROW |12819 |15797 |15796 |
-ROW |12820 |15804 |15803 |
-ROW |12821 |15805 |15803 |
-ROW |12822 |15805 |15804 |
-ROW |12823 |15807 |15808 |
-ROW |12824 |15810 |15811 |
-ROW |12825 |15813 |15814 |
-ROW |12826 |15825 |15824 |
-ROW |12827 |15826 |15824 |
-ROW |12828 |15826 |15825 |
-ROW |12829 |15828 |15829 |
-ROW |12830 |15831 |15832 |
-ROW |12831 |15834 |15835 |
-ROW |12832 |15845 |15846 |
+ROW |12833 |15944 |15947 |
+ROW |12834 |15944 |15943 |
+ROW |12835 |15943 |15947 |
+ROW |12836 |15942 |15947 |
+ROW |12837 |15942 |15943 |
+ROW |12838 |15948 |15949 |
+ROW |12839 |15950 |15949 |
+ROW |12840 |16743 |16744 |
+ROW |12841 |16646 |16647 |
+ROW |12842 |16663 |16664 |
+ROW |12843 |16752 |16753 |
+ROW |12844 |15955 |15957 |
+ROW |12845 |15955 |15954 |
+ROW |12846 |15954 |15957 |
+ROW |12847 |15956 |15957 |
+ROW |12848 |15956 |15954 |
+ROW |12849 |16678 |15957 |
+ROW |12850 |16678 |15954 |
+ROW |12851 |15961 |15960 |
+ROW |12852 |15962 |15960 |
+ROW |12853 |16679 |15960 |
+ROW |12854 |16257 |16255 |
+ROW |12855 |16257 |16256 |
+ROW |12856 |16256 |16255 |
+ROW |12857 |16251 |16255 |
+ROW |12858 |16251 |16256 |
+ROW |12859 |16443 |16255 |
+ROW |12860 |16443 |16256 |
+ROW |12861 |16270 |16269 |
+ROW |12862 |16448 |16269 |
+ROW |12863 |16265 |16269 |
+ROW |12864 |14195 |14205 |
+ROW |12865 |14196 |14195 |
+ROW |12866 |14196 |14205 |
+ROW |12867 |14197 |14205 |
+ROW |12868 |14198 |14197 |
+ROW |12869 |14198 |14205 |
+ROW |12870 |14200 |14199 |
+ROW |12871 |14201 |14205 |
+ROW |12872 |14202 |14201 |
+ROW |12873 |14202 |14205 |
+ROW |12874 |14204 |14203 |
+ROW |12875 |14206 |14222 |
+ROW |12876 |14207 |14206 |
+ROW |12877 |14207 |14222 |
+ROW |12878 |14208 |14222 |
+ROW |12879 |14209 |14208 |
+ROW |12880 |14209 |14222 |
+ROW |12881 |14210 |14222 |
+ROW |12882 |14211 |14210 |
+ROW |12883 |14211 |14222 |
+ROW |12884 |14212 |14222 |
+ROW |12885 |14213 |14212 |
+ROW |12886 |14213 |14222 |
+ROW |12887 |14214 |14222 |
+ROW |12888 |14215 |14214 |
+ROW |12889 |14215 |14222 |
+ROW |12890 |14217 |14216 |
+ROW |12891 |14218 |14222 |
+ROW |12892 |14219 |14218 |
+ROW |12893 |14219 |14222 |
+ROW |12894 |14220 |14222 |
+ROW |12895 |14221 |14220 |
+ROW |12896 |14221 |14222 |
+ROW |12897 |14223 |14222 |
+ROW |12898 |14224 |14222 |
+ROW |12899 |14224 |14223 |
+ROW |12900 |14225 |14222 |
+ROW |12901 |14226 |14222 |
+ROW |12902 |14226 |14225 |
+ROW |12903 |16719 |16721 |
+ROW |12904 |16722 |16723 |
+ROW |12905 |16729 |16728 |
+ROW |12906 |16730 |16728 |
+ROW |12907 |16756 |16758 |
+ROW |12908 |16765 |16764 |
+ROW |12909 |16766 |16764 |
+ROW |12910 |16731 |16732 |
+ROW |12911 |16734 |16736 |
+ROW |12912 |16741 |16740 |
+ROW |12913 |16742 |16740 |
+ROW |12914 |15928 |15933 |
+ROW |12915 |15931 |15933 |
+ROW |12916 |16683 |16687 |
+ROW |12917 |14252 |14251 |
+ROW |12918 |14289 |14288 |
+ROW |12919 |14525 |14524 |
+ROW |12920 |14718 |14717 |
+ROW |12921 |15799 |15798 |
+ROW |12922 |14294 |14293 |
+ROW |12923 |14312 |14311 |
+ROW |12924 |14328 |14327 |
+ROW |12925 |14348 |14347 |
+ROW |12926 |14357 |14356 |
+ROW |12927 |14390 |14389 |
+ROW |12928 |14404 |14403 |
+ROW |12929 |14452 |14451 |
+ROW |12930 |14469 |14468 |
+ROW |12931 |14487 |14486 |
+ROW |12932 |14506 |14505 |
+ROW |12933 |14535 |14534 |
+ROW |12934 |14545 |14544 |
+ROW |12935 |14583 |14582 |
+ROW |12936 |14599 |14598 |
+ROW |12937 |14616 |14615 |
+ROW |12938 |14653 |14652 |
+ROW |12939 |14674 |14673 |
+ROW |12940 |14692 |14691 |
+ROW |12941 |14705 |14704 |
+ROW |12942 |14907 |14906 |
+ROW |12943 |14929 |14928 |
+ROW |12944 |15221 |15220 |
+ROW |12945 |15702 |15701 |
+ROW |12946 |15724 |15723 |
+ROW |12947 |15756 |15755 |
+ROW |12948 |15820 |15819 |
+ROW |12949 |15841 |15840 |
+ROW |12950 |15991 |15990 |
+ROW |12951 |16018 |16017 |
+ROW |12952 |16454 |16453 |
+ROW |12953 |14253 |14252 |
+ROW |12954 |14290 |14289 |
+ROW |12955 |14526 |14525 |
+ROW |12956 |14719 |14718 |
+ROW |12957 |15800 |15799 |
+ROW |12958 |14295 |14294 |
+ROW |12959 |14313 |14312 |
+ROW |12960 |14329 |14328 |
+ROW |12961 |14349 |14348 |
+ROW |12962 |14358 |14357 |
+ROW |12963 |14391 |14390 |
+ROW |12964 |14405 |14404 |
+ROW |12965 |14453 |14452 |
+ROW |12966 |14470 |14469 |
+ROW |12967 |14488 |14487 |
+ROW |12968 |14507 |14506 |
+ROW |12969 |14536 |14535 |
+ROW |12970 |14546 |14545 |
+ROW |12971 |14584 |14583 |
+ROW |12972 |14600 |14599 |
+ROW |12973 |14617 |14616 |
+ROW |12974 |14654 |14653 |
+ROW |12975 |14675 |14674 |
+ROW |12976 |14693 |14692 |
+ROW |12977 |14706 |14705 |
+ROW |12978 |14908 |14907 |
+ROW |12979 |14930 |14929 |
+ROW |12980 |15222 |15221 |
+ROW |12981 |15703 |15702 |
+ROW |12982 |15725 |15724 |
+ROW |12983 |15757 |15756 |
+ROW |12984 |15821 |15820 |
+ROW |12985 |15842 |15841 |
+ROW |12986 |15992 |15991 |
+ROW |12987 |16019 |16018 |
+ROW |12988 |16455 |16454 |
+ROW |12989 |14253 |14251 |
+ROW |12990 |14290 |14288 |
+ROW |12991 |14526 |14524 |
+ROW |12992 |14719 |14717 |
+ROW |12993 |15800 |15798 |
+ROW |12994 |14295 |14293 |
+ROW |12995 |14313 |14311 |
+ROW |12996 |14329 |14327 |
+ROW |12997 |14349 |14347 |
+ROW |12998 |14358 |14356 |
+ROW |12999 |14391 |14389 |
+ROW |13000 |14405 |14403 |
+ROW |13001 |14453 |14451 |
+ROW |13002 |14470 |14468 |
+ROW |13003 |14488 |14486 |
+ROW |13004 |14507 |14505 |
+ROW |13005 |14536 |14534 |
+ROW |13006 |14546 |14544 |
+ROW |13007 |14584 |14582 |
+ROW |13008 |14600 |14598 |
+ROW |13009 |14617 |14615 |
+ROW |13010 |14654 |14652 |
+ROW |13011 |14675 |14673 |
+ROW |13012 |14693 |14691 |
+ROW |13013 |14706 |14704 |
+ROW |13014 |14908 |14906 |
+ROW |13015 |14930 |14928 |
+ROW |13016 |15222 |15220 |
+ROW |13017 |15703 |15701 |
+ROW |13018 |15725 |15723 |
+ROW |13019 |15757 |15755 |
+ROW |13020 |15821 |15819 |
+ROW |13021 |15842 |15840 |
+ROW |13022 |15992 |15990 |
+ROW |13023 |16019 |16017 |
+ROW |13024 |16455 |16453 |
+ROW |13025 |16275 |16277 |
+ROW |13026 |16278 |16284 |
+ROW |13027 |16279 |16285 |
+ROW |13028 |16280 |16286 |
+ROW |13029 |16277 |14288 |
+ROW |13030 |16284 |14524 |
+ROW |13031 |16285 |14717 |
+ROW |13032 |16286 |15798 |
+ROW |13033 |16287 |16289 |
+ROW |13034 |16290 |16348 |
+ROW |13035 |16291 |16349 |
+ROW |13036 |16292 |16350 |
+ROW |13037 |16293 |16351 |
+ROW |13038 |16294 |16352 |
+ROW |13039 |16295 |16353 |
+ROW |13040 |16296 |16354 |
+ROW |13041 |16297 |16355 |
+ROW |13042 |16298 |16356 |
+ROW |13043 |16299 |16357 |
+ROW |13044 |16300 |16358 |
+ROW |13045 |16301 |16359 |
+ROW |13046 |16302 |16360 |
+ROW |13047 |16303 |16361 |
+ROW |13048 |16304 |16362 |
+ROW |13049 |16305 |16363 |
+ROW |13050 |16306 |16364 |
+ROW |13051 |16307 |16365 |
+ROW |13052 |16308 |16366 |
+ROW |13053 |16309 |16367 |
+ROW |13054 |16310 |16368 |
+ROW |13055 |16311 |16369 |
+ROW |13056 |16312 |16370 |
+ROW |13057 |16313 |16371 |
+ROW |13058 |16314 |16372 |
+ROW |13059 |16315 |16373 |
+ROW |13060 |16316 |16374 |
+ROW |13061 |16317 |16375 |
+ROW |13062 |16318 |16376 |
+ROW |13063 |16457 |16458 |
+ROW |13064 |16289 |14293 |
+ROW |13065 |16348 |14311 |
+ROW |13066 |16349 |14327 |
+ROW |13067 |16350 |14347 |
+ROW |13068 |16351 |14356 |
+ROW |13069 |16352 |14389 |
+ROW |13070 |16353 |14403 |
+ROW |13071 |16354 |14451 |
+ROW |13072 |16355 |14468 |
+ROW |13073 |16356 |14486 |
+ROW |13074 |16357 |14505 |
+ROW |13075 |16358 |14534 |
+ROW |13076 |16359 |14544 |
+ROW |13077 |16360 |14582 |
+ROW |13078 |16361 |14598 |
+ROW |13079 |16362 |14615 |
+ROW |13080 |16363 |14652 |
+ROW |13081 |16364 |14673 |
+ROW |13082 |16365 |14691 |
+ROW |13083 |16366 |14704 |
+ROW |13084 |16367 |14906 |
+ROW |13085 |16368 |14928 |
+ROW |13086 |16369 |15220 |
+ROW |13087 |16370 |15701 |
+ROW |13088 |16371 |15723 |
+ROW |13089 |16372 |15755 |
+ROW |13090 |16373 |15819 |
+ROW |13091 |16374 |15840 |
+ROW |13092 |16375 |15990 |
+ROW |13093 |16376 |16017 |
+ROW |13094 |16458 |16453 |
+ROW |13095 |16701 |16700 |
+ROW |13096 |16704 |16703 |
+ROW |13097 |16631 |16630 |
+ROW |13098 |16640 |16636 |
+ROW |13099 |16641 |16637 |
+ROW |13100 |16642 |16638 |
+ROW |13101 |16643 |16639 |
+ROW |13102 |15692 |15490 |
+ROW |13103 |16423 |15490 |
+ROW |13104 |16424 |15490 |
+ROW |13105 |15693 |15492 |
+ROW |13106 |15694 |15493 |
+ROW |13107 |16425 |15492 |
+ROW |13108 |16426 |15493 |
+ROW |13109 |16427 |15492 |
+ROW |13110 |16428 |15493 |
+ROW |13111 |15695 |15496 |
+ROW |13112 |16429 |15496 |
+ROW |13113 |16430 |15496 |
+ROW |13114 |15696 |15498 |
+ROW |13115 |15697 |15499 |
+ROW |13116 |16431 |15498 |
+ROW |13117 |16432 |15499 |
+ROW |13118 |16433 |15498 |
+ROW |13119 |16434 |15499 |
+ROW |13120 |15670 |15506 |
+ROW |13121 |16377 |15506 |
+ROW |13122 |16378 |15506 |
+ROW |13123 |15671 |15508 |
+ROW |13124 |16379 |15508 |
+ROW |13125 |16380 |15508 |
+ROW |13126 |15672 |15510 |
+ROW |13127 |15673 |15511 |
+ROW |13128 |15674 |15512 |
+ROW |13129 |15675 |15513 |
+ROW |13130 |15676 |15514 |
+ROW |13131 |15677 |15515 |
+ROW |13132 |15678 |15516 |
+ROW |13133 |15679 |15517 |
+ROW |13134 |15680 |15518 |
+ROW |13135 |15681 |15519 |
+ROW |13136 |15682 |15520 |
+ROW |13137 |15683 |15521 |
+ROW |13138 |15684 |15522 |
+ROW |13139 |15685 |15523 |
+ROW |13140 |15686 |15524 |
+ROW |13141 |15687 |15525 |
+ROW |13142 |15689 |15527 |
+ROW |13143 |15690 |15528 |
+ROW |13144 |15691 |15529 |
+ROW |13145 |15708 |15709 |
+ROW |13146 |15997 |15998 |
+ROW |13147 |16381 |15510 |
+ROW |13148 |16382 |15511 |
+ROW |13149 |16383 |15512 |
+ROW |13150 |16384 |15513 |
+ROW |13151 |16385 |15514 |
+ROW |13152 |16386 |15515 |
+ROW |13153 |16387 |15516 |
+ROW |13154 |16388 |15517 |
+ROW |13155 |16389 |15518 |
+ROW |13156 |16390 |15519 |
+ROW |13157 |16391 |15520 |
+ROW |13158 |16392 |15521 |
+ROW |13159 |16393 |15522 |
+ROW |13160 |16394 |15523 |
+ROW |13161 |16395 |15524 |
+ROW |13162 |16396 |15525 |
+ROW |13163 |16397 |15527 |
+ROW |13164 |16398 |15528 |
+ROW |13165 |16399 |15529 |
+ROW |13166 |16400 |15709 |
+ROW |13167 |16401 |15998 |
+ROW |13168 |16402 |15510 |
+ROW |13169 |16403 |15511 |
+ROW |13170 |16404 |15512 |
+ROW |13171 |16405 |15513 |
+ROW |13172 |16406 |15514 |
+ROW |13173 |16407 |15515 |
+ROW |13174 |16408 |15516 |
+ROW |13175 |16409 |15517 |
+ROW |13176 |16410 |15518 |
+ROW |13177 |16411 |15519 |
+ROW |13178 |16412 |15520 |
+ROW |13179 |16413 |15521 |
+ROW |13180 |16414 |15522 |
+ROW |13181 |16415 |15523 |
+ROW |13182 |16416 |15524 |
+ROW |13183 |16417 |15525 |
+ROW |13184 |16418 |15527 |
+ROW |13185 |16419 |15528 |
+ROW |13186 |16420 |15529 |
+ROW |13187 |16421 |15709 |
+ROW |13188 |16422 |15998 |
+ROW |13189 |15698 |15502 |
+ROW |13190 |16435 |15502 |
+ROW |13191 |16436 |15502 |
+ROW |13192 |16028 |16029 |
+ROW |13193 |16437 |16029 |
+ROW |13194 |16438 |16029 |
+ROW |13195 |14318 |14319 |
+ROW |13196 |15714 |15715 |
+ROW |13197 |15721 |15720 |
+ROW |13198 |15394 |15393 |
+ROW |13199 |15392 |15391 |
+ROW |13200 |15390 |14339 |
+ROW |13201 |15382 |15381 |
+ROW |13202 |15380 |15379 |
+ROW |13203 |16504 |16505 |
+ROW |13204 |14372 |14373 |
+ROW |13205 |15386 |15385 |
+ROW |13206 |15384 |15383 |
+ROW |13207 |14380 |14381 |
+ROW |13208 |15347 |15346 |
+ROW |13209 |15345 |15344 |
+ROW |13210 |15342 |15343 |
+ROW |13211 |15363 |15360 |
+ROW |13212 |15364 |15361 |
+ROW |13213 |15365 |15362 |
+ROW |13214 |15357 |15354 |
+ROW |13215 |15358 |15355 |
+ROW |13216 |15359 |15356 |
+ROW |13217 |15348 |15351 |
+ROW |13218 |15349 |15352 |
+ROW |13219 |15350 |15353 |
+ROW |13220 |15334 |15333 |
+ROW |13221 |15332 |15331 |
+ROW |13222 |14460 |14461 |
+ROW |13223 |14476 |14477 |
+ROW |13224 |14495 |14496 |
+ROW |13225 |14511 |15368 |
+ROW |13226 |14551 |14552 |
+ROW |13227 |15374 |15373 |
+ROW |13228 |15376 |15375 |
+ROW |13229 |14914 |14915 |
+ROW |13230 |14589 |14590 |
+ROW |13231 |15338 |15337 |
+ROW |13232 |15335 |15336 |
+ROW |13233 |14624 |14625 |
+ROW |13234 |15387 |14934 |
+ROW |13235 |14658 |14659 |
+ROW |13236 |14664 |14665 |
+ROW |13237 |16547 |16546 |
+ROW |13238 |15396 |15397 |
+ROW |13239 |16551 |16552 |
+ROW |13240 |16034 |16032 |
+ROW |13241 |16051 |16047 |
+ROW |13242 |16052 |16048 |
+ROW |13243 |16034 |16033 |
+ROW |13244 |16051 |16049 |
+ROW |13245 |16052 |16050 |
+ROW |13246 |16031 |16563 |
+ROW |13247 |16045 |16564 |
+ROW |13248 |16046 |16565 |
+ROW |13249 |16039 |16040 |
+ROW |13250 |16061 |16063 |
+ROW |13251 |16062 |16064 |
+ROW |13252 |16042 |16579 |
+ROW |13253 |16067 |16580 |
+ROW |13254 |16068 |16581 |
+ROW |13255 |16041 |16042 |
+ROW |13256 |16065 |16067 |
+ROW |13257 |16066 |16068 |
+ROW |13258 |16041 |16579 |
+ROW |13259 |16065 |16580 |
+ROW |13260 |16066 |16581 |
+ROW |13261 |16032 |16033 |
+ROW |13262 |16047 |16049 |
+ROW |13263 |16048 |16050 |
+ROW |13264 |16070 |16069 |
+ROW |13265 |16072 |16071 |
+ROW |13266 |16076 |16075 |
+ROW |13267 |16074 |16075 |
+ROW |13268 |16079 |16077 |
+ROW |13269 |16080 |16078 |
+ROW |13270 |16083 |16081 |
+ROW |13271 |16084 |16082 |
+ROW |13272 |16091 |16089 |
+ROW |13273 |16092 |16090 |
+ROW |13274 |16087 |16089 |
+ROW |13275 |16088 |16090 |
+ROW |13276 |16100 |16098 |
+ROW |13277 |16113 |16111 |
+ROW |13278 |16100 |16099 |
+ROW |13279 |16113 |16112 |
+ROW |13280 |16097 |16569 |
+ROW |13281 |16110 |16570 |
+ROW |13282 |16105 |16106 |
+ROW |13283 |16118 |16119 |
+ROW |13284 |16108 |16582 |
+ROW |13285 |16121 |16583 |
+ROW |13286 |16107 |16108 |
+ROW |13287 |16120 |16121 |
+ROW |13288 |16107 |16582 |
+ROW |13289 |16120 |16583 |
+ROW |13290 |16098 |16099 |
+ROW |13291 |16111 |16112 |
+ROW |13292 |16123 |16122 |
+ROW |13293 |16125 |16124 |
+ROW |13294 |16129 |16128 |
+ROW |13295 |16127 |16128 |
+ROW |13296 |16131 |16130 |
+ROW |13297 |16133 |16132 |
+ROW |13298 |16137 |16136 |
+ROW |13299 |16135 |16136 |
+ROW |13300 |16149 |16147 |
+ROW |13301 |16149 |16148 |
+ROW |13302 |16141 |16142 |
+ROW |13303 |16146 |16573 |
+ROW |13304 |16143 |16584 |
+ROW |13305 |16147 |16148 |
+ROW |13306 |16152 |16154 |
+ROW |13307 |16153 |16154 |
+ROW |13308 |16150 |16154 |
+ROW |13309 |16151 |16154 |
+ROW |13310 |16156 |16155 |
+ROW |13311 |16158 |16157 |
+ROW |13312 |16001 |15999 |
+ROW |13313 |16005 |16003 |
+ROW |13314 |16001 |16000 |
+ROW |13315 |16005 |16004 |
+ROW |13316 |15999 |16000 |
+ROW |13317 |16003 |16004 |
+ROW |13318 |16009 |16008 |
+ROW |13319 |16011 |16010 |
+ROW |13320 |16014 |16013 |
+ROW |13321 |16016 |16015 |
+ROW |13322 |16165 |16164 |
+ROW |13323 |16176 |16175 |
+ROW |13324 |16161 |16160 |
+ROW |13325 |16172 |16171 |
+ROW |13326 |16162 |16161 |
+ROW |13327 |16173 |16172 |
+ROW |13328 |16162 |16160 |
+ROW |13329 |16173 |16171 |
+ROW |13330 |16711 |16160 |
+ROW |13331 |16712 |16171 |
+ROW |13332 |16166 |16164 |
+ROW |13333 |16177 |16175 |
+ROW |13334 |16167 |16164 |
+ROW |13335 |16178 |16175 |
+ROW |13336 |16183 |16182 |
+ROW |13337 |16187 |16188 |
+ROW |13338 |16185 |16188 |
+ROW |13339 |16186 |16188 |
+ROW |13340 |16190 |16189 |
+ROW |13341 |16194 |16195 |
+ROW |13342 |16192 |16195 |
+ROW |13343 |16193 |16195 |
+ROW |13344 |16214 |16213 |
+ROW |13345 |16225 |16224 |
+ROW |13346 |16210 |16209 |
+ROW |13347 |16221 |16220 |
+ROW |13348 |16211 |16210 |
+ROW |13349 |16222 |16221 |
+ROW |13350 |16211 |16209 |
+ROW |13351 |16222 |16220 |
+ROW |13352 |16715 |16209 |
+ROW |13353 |16716 |16220 |
+ROW |13354 |16215 |16213 |
+ROW |13355 |16226 |16224 |
+ROW |13356 |16216 |16213 |
+ROW |13357 |16227 |16224 |
+ROW |13358 |16232 |16231 |
+ROW |13359 |16236 |16237 |
+ROW |13360 |16234 |16237 |
+ROW |13361 |16235 |16237 |
+ROW |13362 |16239 |16238 |
+ROW |13363 |16243 |16244 |
+ROW |13364 |16241 |16244 |
+ROW |13365 |16242 |16244 |
+ROW |13366 |16768 |16769 |
+ROW |13367 |16768 |16770 |
+ROW |13368 |16769 |16770 |
+ROW |13369 |16771 |16772 |
+ROW |13370 |16771 |16773 |
+ROW |13371 |16772 |16773 |
+ROW |13372 |16488 |16487 |
+ROW |13373 |16485 |16484 |
+ROW |13374 |16486 |16484 |
+ROW |13375 |16486 |16485 |
+ROW |13376 |16480 |16479 |
+ROW |13377 |16482 |16481 |
+ROW |13378 |16475 |16474 |
+ROW |13379 |16471 |16472 |
+ROW |13380 |16468 |16469 |
+ROW |13381 |16459 |16460 |
+ROW |13382 |16462 |16463 |
+ROW |13383 |16465 |16466 |
+ROW |13384 |16477 |16476 |
+ROW |13385 |15729 |15728 |
+ROW |13386 |15730 |15728 |
+ROW |13387 |15730 |15729 |
+ROW |13388 |15752 |15754 |
+ROW |13389 |15753 |15754 |
+ROW |13390 |15753 |15752 |
+ROW |13391 |15742 |15741 |
+ROW |13392 |15750 |15749 |
+ROW |13393 |15751 |15750 |
+ROW |13394 |15751 |15749 |
+ROW |13395 |15746 |15743 |
+ROW |13396 |15744 |15743 |
+ROW |13397 |15740 |15739 |
+ROW |13398 |15736 |15737 |
+ROW |13399 |15733 |15734 |
+ROW |13400 |15748 |15747 |
+ROW |13401 |16440 |16439 |
+ROW |13402 |15791 |15790 |
+ROW |13403 |15788 |15787 |
+ROW |13404 |15789 |15787 |
+ROW |13405 |15789 |15788 |
+ROW |13406 |15786 |15785 |
+ROW |13407 |15784 |15783 |
+ROW |13408 |15794 |15792 |
+ROW |13409 |15793 |15792 |
+ROW |13410 |15782 |15781 |
+ROW |13411 |15763 |15764 |
+ROW |13412 |15766 |15767 |
+ROW |13413 |15769 |15770 |
+ROW |13414 |15778 |15779 |
+ROW |13415 |15772 |15773 |
+ROW |13416 |15775 |15776 |
+ROW |13417 |15797 |15796 |
+ROW |13418 |15804 |15803 |
+ROW |13419 |15805 |15803 |
+ROW |13420 |15805 |15804 |
+ROW |13421 |15807 |15808 |
+ROW |13422 |15810 |15811 |
+ROW |13423 |15813 |15814 |
+ROW |13424 |15825 |15824 |
+ROW |13425 |15826 |15824 |
+ROW |13426 |15826 |15825 |
+ROW |13427 |15828 |15829 |
+ROW |13428 |15831 |15832 |
+ROW |13429 |15834 |15835 |
+ROW |13430 |15845 |15846 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -9445,1317 +9445,1317 @@ ROW |18847 |864 |28923 |0 |0 |1A7C11|0 |2 |0 |
ROW |18848 |864 |28924 |0 |1 |F63100|0 |2 |0 |
ROW |18849 |864 |28925 |0 |2 |2774A4|0 |2 |0 |
ROW |18850 |864 |28926 |0 |3 |A54F10|0 |2 |0 |
-ROW |22056 |830 |28769 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22057 |830 |28770 |0 |1 |2774A4|0 |2 |0 |
-ROW |22058 |830 |28771 |0 |2 |F63100|0 |2 |0 |
-ROW |22059 |830 |28772 |2 |3 |A54F10|0 |2 |0 |
-ROW |22060 |831 |28774 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22061 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22062 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |22063 |832 |28761 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22064 |834 |28762 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22065 |834 |28760 |0 |1 |2774A4|0 |2 |0 |
-ROW |22066 |834 |28757 |0 |2 |F63100|0 |2 |0 |
-ROW |22067 |834 |28750 |0 |3 |A54F10|0 |2 |0 |
-ROW |22068 |834 |28756 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22069 |834 |28754 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22070 |834 |28763 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22071 |834 |28767 |0 |7 |611F27|0 |2 |0 |
-ROW |22072 |834 |28759 |0 |8 |F230E0|0 |2 |0 |
-ROW |22073 |834 |28755 |0 |9 |FFAD40|0 |2 |0 |
-ROW |22074 |834 |28753 |0 |10 |40CDFF|0 |2 |0 |
-ROW |22075 |833 |28765 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22076 |833 |28764 |0 |1 |2774A4|0 |2 |0 |
-ROW |22077 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22078 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |22079 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |22080 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |22081 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22082 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22083 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22084 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |22085 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |22086 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |22087 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22088 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22089 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22090 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |22091 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |22092 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |22093 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |22094 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22095 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |22096 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22097 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |22098 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |22099 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22100 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |22101 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22102 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |22103 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |22104 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |22105 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |22106 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |22107 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22108 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |22109 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22110 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |22111 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |22112 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |22113 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22114 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22115 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |22116 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22117 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22118 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |22119 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |22120 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |22121 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22122 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |22123 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22124 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |22125 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22126 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |22127 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22128 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |22129 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22130 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |22131 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |22132 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |22133 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22134 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22135 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |22136 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22137 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |22138 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22139 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |22140 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22141 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |22142 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22143 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |22144 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22145 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |22146 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |22147 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |22148 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22149 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22150 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |22151 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22152 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |22153 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |22154 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22155 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |22156 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |22157 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22158 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |22159 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |22160 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22161 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |22162 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22163 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |22164 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22165 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22166 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |22167 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |22168 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |22169 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22170 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |22171 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |22172 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22173 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |22174 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22175 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22176 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |22177 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |22178 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |22179 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22180 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |22181 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |22182 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22183 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22184 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
-ROW |22185 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
-ROW |22186 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
-ROW |22187 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22188 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22189 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22190 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
-ROW |22191 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22192 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
-ROW |22193 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
-ROW |22194 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
-ROW |22195 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22196 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22197 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22198 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
-ROW |22199 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22200 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
-ROW |22201 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
-ROW |22202 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22203 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
-ROW |22204 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22205 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22206 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
-ROW |22207 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22208 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
-ROW |22209 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22210 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
-ROW |22211 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
-ROW |22212 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22213 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
-ROW |22214 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
-ROW |22215 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
-ROW |22216 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22217 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22218 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22219 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
-ROW |22220 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22221 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
-ROW |22222 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
-ROW |22223 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
-ROW |22224 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22225 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22226 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22227 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
-ROW |22228 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22229 |1011 |29662 |2 |1 |2774A4|0 |2 |0 |
-ROW |22230 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22231 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22232 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
-ROW |22233 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22234 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22235 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
-ROW |22236 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
-ROW |22237 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
-ROW |22238 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22239 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22240 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22241 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
-ROW |22242 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22243 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
-ROW |22244 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
-ROW |22245 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
-ROW |22246 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22247 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22248 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22249 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
-ROW |22250 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22251 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
-ROW |22252 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
-ROW |22253 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22254 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
-ROW |22255 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22256 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22257 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
-ROW |22258 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22259 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
-ROW |22260 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
-ROW |22261 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22262 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
-ROW |22263 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
-ROW |22264 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
-ROW |22265 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22266 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22267 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22268 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
-ROW |22269 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22270 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
-ROW |22271 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
-ROW |22272 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
-ROW |22273 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22274 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22275 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
-ROW |22276 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
-ROW |22277 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22278 |1025 |29744 |2 |1 |2774A4|0 |2 |0 |
-ROW |22279 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22280 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22281 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
-ROW |22282 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22283 |793 |28532 |0 |0 |C80000|0 |2 |0 |
-ROW |22284 |793 |28503 |0 |1 |00C800|0 |2 |0 |
-ROW |22285 |793 |28504 |0 |2 |0000C8|0 |2 |0 |
-ROW |22286 |794 |28505 |0 |0 |C80000|0 |2 |0 |
-ROW |22287 |794 |28506 |0 |1 |00C800|0 |2 |0 |
-ROW |22288 |794 |28507 |0 |2 |0000C8|0 |2 |0 |
-ROW |22289 |795 |28508 |0 |0 |C80000|0 |2 |0 |
-ROW |22290 |795 |28509 |0 |1 |00C800|0 |2 |0 |
-ROW |22291 |795 |28510 |0 |2 |0000C8|0 |2 |0 |
-ROW |22292 |796 |28515 |0 |0 |C80000|0 |2 |0 |
-ROW |22293 |796 |28518 |0 |1 |00C800|0 |2 |0 |
-ROW |22294 |796 |28516 |0 |2 |0000C8|0 |2 |0 |
-ROW |22295 |638 |26892 |0 |0 |C80000|0 |2 |0 |
-ROW |22296 |638 |26891 |0 |1 |00C800|0 |2 |0 |
-ROW |22297 |638 |26910 |0 |2 |0000C8|0 |2 |0 |
-ROW |22298 |639 |26879 |0 |0 |C80000|0 |2 |0 |
-ROW |22299 |639 |26880 |0 |1 |00C800|0 |2 |0 |
-ROW |22300 |640 |26906 |0 |0 |C80000|0 |2 |0 |
-ROW |22301 |640 |26895 |0 |1 |00C800|0 |2 |0 |
-ROW |22302 |640 |26889 |0 |2 |0000C8|0 |2 |0 |
-ROW |22303 |640 |26884 |0 |3 |C8C800|0 |2 |0 |
-ROW |22304 |640 |26896 |0 |4 |00C8C9|0 |2 |0 |
-ROW |22305 |640 |26887 |0 |5 |C800C8|0 |2 |0 |
-ROW |22306 |641 |26900 |0 |0 |C80000|0 |2 |0 |
-ROW |22307 |641 |26901 |0 |1 |00C800|0 |2 |0 |
-ROW |22308 |641 |26902 |0 |2 |0000C8|0 |2 |0 |
-ROW |22309 |642 |26883 |0 |0 |C80000|0 |2 |0 |
-ROW |22310 |642 |26882 |0 |1 |00C800|0 |2 |0 |
-ROW |22311 |642 |26864 |0 |2 |0000C8|0 |2 |0 |
-ROW |22312 |643 |26863 |0 |0 |C80000|0 |2 |0 |
-ROW |22313 |643 |26865 |0 |1 |00C800|0 |2 |0 |
-ROW |22314 |643 |26866 |0 |2 |0000C8|0 |2 |0 |
-ROW |22315 |644 |26867 |0 |0 |C80000|0 |2 |0 |
-ROW |22316 |644 |26862 |0 |1 |00C800|0 |2 |0 |
-ROW |22317 |644 |26861 |0 |2 |0000C8|0 |2 |0 |
-ROW |22318 |645 |26857 |0 |0 |C80000|0 |2 |0 |
-ROW |22319 |645 |26856 |0 |1 |00C800|0 |2 |0 |
-ROW |22320 |645 |26858 |0 |2 |0000C8|0 |2 |0 |
-ROW |22321 |646 |26859 |0 |0 |0000C8|0 |2 |0 |
-ROW |22322 |646 |26860 |0 |1 |C80000|0 |2 |0 |
-ROW |22323 |646 |26868 |0 |2 |00C800|0 |2 |0 |
-ROW |22324 |647 |26869 |0 |0 |C80000|0 |2 |0 |
-ROW |22325 |647 |26878 |0 |1 |00C800|0 |2 |0 |
-ROW |22326 |647 |26877 |0 |2 |0000C8|0 |2 |0 |
-ROW |22327 |648 |26872 |0 |0 |C80000|0 |2 |0 |
-ROW |22328 |648 |26870 |0 |1 |00C800|0 |2 |0 |
-ROW |22329 |648 |26873 |0 |2 |0000C8|0 |2 |0 |
-ROW |22330 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |22331 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |22332 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |22333 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |22334 |804 |28602 |0 |0 |990099|0 |2 |0 |
-ROW |22335 |804 |28606 |0 |1 |990000|0 |2 |0 |
-ROW |22336 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
-ROW |22337 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
-ROW |22338 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
-ROW |22339 |804 |28611 |0 |5 |003300|0 |2 |0 |
-ROW |22340 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
-ROW |22341 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
-ROW |22342 |804 |28604 |0 |8 |000099|0 |2 |0 |
-ROW |22343 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
-ROW |22344 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
-ROW |22345 |805 |28600 |0 |1 |990099|0 |2 |0 |
-ROW |22346 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
-ROW |22347 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
-ROW |22348 |805 |28614 |0 |4 |960000|0 |2 |0 |
-ROW |22349 |805 |28601 |0 |5 |009600|0 |2 |0 |
-ROW |22350 |805 |28603 |0 |6 |009999|0 |2 |0 |
-ROW |22351 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
-ROW |22352 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |22353 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |22354 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |22355 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |22356 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |22357 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |22358 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |22359 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |22360 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |22361 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |22362 |799 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |22363 |799 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |22364 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |22365 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |22366 |799 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |22367 |799 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |22368 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |22369 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |22370 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |22371 |799 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |22372 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |22373 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |22374 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |22375 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |22376 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |22377 |800 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |22378 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |22379 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |22380 |800 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |22381 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |22382 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |22383 |800 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |22384 |800 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |22385 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |22386 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |22387 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |22388 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |22389 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |22390 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |22391 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |22392 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |22393 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |22394 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |22395 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |22396 |530 |23345 |0 |0 |990099|0 |2 |0 |
-ROW |22397 |530 |23348 |0 |1 |990000|0 |2 |0 |
-ROW |22398 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
-ROW |22399 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
-ROW |22400 |530 |23356 |0 |4 |007700|0 |2 |0 |
-ROW |22401 |530 |23354 |0 |5 |003300|0 |2 |0 |
-ROW |22402 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
-ROW |22403 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
-ROW |22404 |530 |23344 |0 |8 |000099|0 |7 |0 |
-ROW |22405 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
-ROW |22406 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
-ROW |22407 |531 |23347 |0 |1 |990099|0 |2 |0 |
-ROW |22408 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
-ROW |22409 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
-ROW |22410 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
-ROW |22411 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
-ROW |22412 |531 |25369 |0 |6 |009999|0 |2 |0 |
-ROW |22413 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
-ROW |22414 |531 |28618 |0 |8 |990000|0 |2 |0 |
-ROW |22415 |531 |28619 |0 |9 |008800|0 |2 |0 |
-ROW |22416 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |22417 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |22418 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |22419 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |22420 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |22421 |528 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |22422 |528 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |22423 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |22424 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |22425 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |22426 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |22427 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |22428 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |22429 |520 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |22430 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |22431 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |22432 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |22433 |520 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |22434 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |22435 |404 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |22436 |404 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |22437 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |22438 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |22439 |404 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |22440 |404 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |22441 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |22442 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |22443 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |22444 |404 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |22445 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |22446 |518 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |22447 |518 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |22448 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |22449 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
-ROW |22450 |518 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |22451 |518 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |22452 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
-ROW |22453 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
-ROW |22454 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
-ROW |22455 |518 |23267 |0 |9 |000099|0 |2 |0 |
-ROW |22456 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
-ROW |22457 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |22458 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |22459 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |22460 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |22461 |406 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |22462 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |22463 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |22464 |406 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |22465 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |22466 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |22467 |406 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |22468 |406 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |22469 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |22470 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |22471 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |22472 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |22473 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
-ROW |22474 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
-ROW |22475 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
-ROW |22476 |517 |23253 |0 |4 |990099|0 |2 |0 |
-ROW |22477 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
-ROW |22478 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
-ROW |22479 |517 |23664 |0 |7 |009999|0 |2 |0 |
-ROW |22480 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
-ROW |22481 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
-ROW |22482 |517 |25667 |0 |10 |990000|0 |2 |0 |
-ROW |22483 |517 |25668 |0 |11 |008800|0 |2 |0 |
-ROW |22484 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
-ROW |22485 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
-ROW |22486 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
-ROW |22487 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |22488 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |22489 |789 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |22490 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |22491 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |22492 |392 |23251 |5 |1 |C80000|1 |2 |0 |
-ROW |22493 |519 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |22494 |519 |23272 |5 |1 |C80000|1 |2 |0 |
-ROW |22495 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |22496 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |22497 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |22498 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |22499 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |22500 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |22501 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |22502 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |22503 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |22504 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |22505 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |22506 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |22507 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |22508 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |22509 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |22510 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |22511 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |22512 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |22513 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |22514 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |22515 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |22516 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |22517 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |22518 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |22519 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |22520 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |22521 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |22522 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |22523 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |22524 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |22525 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |22526 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |22527 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |22528 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |22529 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |22530 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |22531 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |22532 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |22533 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |22534 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |22535 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |22536 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |22537 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |22538 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |22539 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |22540 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |22541 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |22542 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |22543 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |22544 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |22545 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |22546 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |22547 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |22548 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |22549 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |22550 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |22551 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |22552 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |22553 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |22554 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |22555 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |22556 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |22557 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |22558 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |22559 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |22560 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |22561 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |22562 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |22563 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |22564 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |22565 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |22566 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |22567 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |22568 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |22569 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |22570 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |22571 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |22572 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |22573 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |22574 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |22575 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |22576 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |22577 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |22578 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |22579 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |22580 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |22581 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |22582 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |22583 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |22584 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |22585 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |22586 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |22587 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |22588 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |22589 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |22590 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |22591 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |22592 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |22593 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |22594 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |22595 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |22596 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |22597 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |22598 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22599 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |22600 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22601 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |22602 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |22603 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |22604 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22605 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |22606 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |22607 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |22608 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22609 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |22610 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |22611 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |22612 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22613 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |22614 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |22615 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22616 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |22617 |1114 |30448 |0 |2 |F63100|0 |2 |0 |
-ROW |22618 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |22619 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22620 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |22621 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22622 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |22623 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |22624 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |22625 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22626 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |22627 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |22628 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |22629 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22630 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |22631 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |22632 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |22633 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22634 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |22635 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |22636 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22637 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |22638 |1141 |30654 |0 |2 |F63100|0 |2 |0 |
-ROW |22639 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |22640 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22641 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |22642 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22643 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |22644 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |22645 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |22646 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22647 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |22648 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |22649 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |22650 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22651 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |22652 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |22653 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |22654 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22655 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |22656 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |22657 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22658 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |22659 |1120 |30498 |0 |2 |F63100|0 |2 |0 |
-ROW |22660 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |22661 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
-ROW |22662 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
-ROW |22663 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
-ROW |22664 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22665 |816 |28715 |0 |1 |F63100|0 |2 |0 |
-ROW |22666 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
-ROW |22667 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
-ROW |22668 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
-ROW |22669 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
-ROW |22670 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
-ROW |22671 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
-ROW |22672 |818 |28725 |5 |3 |81C784|0 |2 |0 |
-ROW |22673 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
-ROW |22674 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
-ROW |22675 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22676 |819 |28724 |0 |1 |F63100|0 |2 |0 |
-ROW |22677 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
-ROW |22678 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
-ROW |22679 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
-ROW |22680 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22681 |821 |28737 |0 |1 |F63100|0 |2 |0 |
-ROW |22682 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
-ROW |22683 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
-ROW |22684 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22685 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
-ROW |22686 |822 |28698 |0 |1 |F63100|1 |2 |0 |
-ROW |22687 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
-ROW |22688 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
-ROW |22689 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |22690 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
-ROW |22691 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22692 |823 |28699 |0 |1 |F63100|0 |2 |0 |
-ROW |22693 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
-ROW |22694 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
-ROW |22695 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
-ROW |22696 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
-ROW |22697 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
-ROW |22698 |824 |28705 |0 |3 |F63100|1 |2 |0 |
-ROW |22699 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
-ROW |22700 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
-ROW |22701 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
-ROW |22702 |825 |28674 |5 |0 |A5D6A7|0 |2 |0 |
-ROW |22703 |825 |28673 |0 |1 |039BE5|1 |2 |0 |
-ROW |22704 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
-ROW |22705 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
-ROW |22706 |827 |28688 |0 |1 |F63100|1 |2 |0 |
-ROW |22707 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
-ROW |22708 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
-ROW |22709 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
-ROW |22710 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
-ROW |22711 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
-ROW |22712 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
-ROW |22713 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22714 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |22715 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22716 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |22717 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22718 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22719 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22720 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |22721 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22722 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22723 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |22724 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |22725 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |22726 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22727 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |22728 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22729 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |22730 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22731 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |22732 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |22733 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22734 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22735 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |22736 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22737 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |22738 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22739 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22740 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |22741 |1103 |30413 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22742 |1104 |30419 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22743 |1105 |30415 |0 |0 |969696|0 |9 |2 |
-ROW |22744 |1105 |30416 |0 |1 |C80000|0 |9 |0 |
-ROW |22745 |1106 |30421 |0 |0 |969696|0 |9 |2 |
-ROW |22746 |1106 |30422 |0 |1 |C80000|0 |9 |0 |
-ROW |22747 |1107 |30405 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22748 |1108 |30406 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22749 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22750 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22751 |1062 |30171 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22752 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22753 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22754 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |22755 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |22756 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |22757 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |22758 |1067 |30173 |0 |0 |969696|0 |9 |2 |
-ROW |22759 |1067 |30174 |0 |1 |C80000|0 |9 |0 |
-ROW |22760 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |22761 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |22762 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |22763 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |22764 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22765 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22766 |1072 |30144 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22767 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22768 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22769 |738 |27074 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22770 |738 |27075 |2 |1 |2774A4|0 |2 |0 |
-ROW |22771 |738 |27073 |0 |2 |F63100|1 |2 |0 |
-ROW |22772 |738 |27076 |0 |3 |A54F10|1 |2 |0 |
-ROW |22773 |738 |27072 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22774 |738 |27069 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22775 |739 |27599 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22776 |739 |27602 |2 |1 |2774A4|0 |2 |0 |
-ROW |22777 |739 |27601 |0 |2 |F63100|1 |2 |0 |
-ROW |22778 |739 |27598 |0 |3 |A54F10|1 |2 |0 |
-ROW |22779 |739 |27600 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22780 |739 |27597 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22781 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22782 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |22783 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |22784 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |22785 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22786 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22787 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22788 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |22789 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |22790 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |22791 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22792 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22793 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22794 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |22795 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |22796 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |22797 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22798 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22799 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22800 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |22801 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |22802 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |22803 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22804 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22805 |744 |27094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22806 |744 |27095 |2 |1 |2774A4|0 |2 |0 |
-ROW |22807 |744 |27093 |0 |2 |F63100|1 |2 |0 |
-ROW |22808 |744 |27096 |0 |3 |A54F10|1 |2 |0 |
-ROW |22809 |744 |27092 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22810 |744 |27089 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22811 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22812 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |22813 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |22814 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |22815 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22816 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22817 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22818 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |22819 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |22820 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |22821 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22822 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22823 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22824 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |22825 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |22826 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |22827 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22828 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22829 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22830 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |22831 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |22832 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |22833 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22834 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22835 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22836 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |22837 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |22838 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |22839 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22840 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22841 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22842 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |22843 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |22844 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |22845 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22846 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22847 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22848 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |22849 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |22850 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |22851 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22852 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22853 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22854 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |22855 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |22856 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |22857 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22858 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22859 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22860 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |22861 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |22862 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |22863 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22864 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22865 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22866 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |22867 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |22868 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |22869 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22870 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22871 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22872 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |22873 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |22874 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |22875 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22876 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22877 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22878 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |22879 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |22880 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |22881 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22882 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22883 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22884 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |22885 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |22886 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |22887 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22888 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22889 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22890 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |22891 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |22892 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |22893 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22894 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22895 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22896 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |22897 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |22898 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |22899 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22900 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22901 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22902 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |22903 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |22904 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |22905 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22906 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22907 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22908 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |22909 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |22910 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |22911 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22912 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22913 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22914 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |22915 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |22916 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |22917 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22918 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22919 |778 |28178 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22920 |778 |28181 |2 |1 |2774A4|0 |2 |0 |
-ROW |22921 |778 |28180 |0 |2 |F63100|1 |2 |0 |
-ROW |22922 |778 |28177 |0 |3 |A54F10|1 |2 |0 |
-ROW |22923 |778 |28179 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22924 |778 |28176 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22925 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22926 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |22927 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |22928 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |22929 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22930 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22931 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22932 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |22933 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |22934 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |22935 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22936 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22937 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22938 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |22939 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |22940 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |22941 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22942 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22943 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22944 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |22945 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |22946 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |22947 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22948 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22949 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22950 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |22951 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |22952 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |22953 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |22954 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |22955 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22956 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22957 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |22958 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22959 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22960 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22961 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22962 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22963 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22964 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22965 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22966 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22967 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22968 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22969 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22970 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22971 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22972 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22973 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22974 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22975 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22976 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22977 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22978 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22979 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22980 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22981 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22982 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22983 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22984 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |22985 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22986 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22987 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22988 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22989 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |22990 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |22991 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22992 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22993 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22994 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22995 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22996 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22997 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |22998 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |22999 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |23000 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23001 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23002 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23003 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |23004 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23005 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23006 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23007 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23008 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23009 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23010 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23011 |893 |29214 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23012 |893 |29215 |5 |1 |2774A4|0 |2 |0 |
-ROW |23013 |894 |29228 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23014 |894 |29229 |5 |1 |2774A4|0 |2 |0 |
-ROW |23015 |895 |29242 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23016 |895 |29243 |5 |1 |2774A4|0 |2 |0 |
-ROW |23017 |890 |29252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23018 |890 |29253 |5 |1 |2774A4|0 |2 |0 |
-ROW |23019 |891 |29258 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23020 |891 |29259 |5 |1 |2774A4|0 |2 |0 |
-ROW |23021 |892 |29264 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23022 |892 |29265 |5 |1 |2774A4|0 |2 |0 |
-ROW |23023 |896 |29256 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23024 |896 |29257 |5 |1 |2774A4|0 |2 |0 |
-ROW |23025 |897 |29262 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23026 |897 |29263 |5 |1 |2774A4|0 |2 |0 |
-ROW |23027 |898 |29268 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23028 |898 |29269 |5 |1 |2774A4|0 |2 |0 |
-ROW |23029 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |23030 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |23031 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |23032 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |23033 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |23034 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |23035 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23036 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |23037 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |23038 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |23039 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23040 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23041 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23042 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |23043 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |23044 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |23045 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23046 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23047 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23048 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |23049 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |23050 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |23051 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23052 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23053 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23054 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |23055 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23056 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |23057 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23058 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |23059 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23060 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |23061 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |23062 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |23063 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |23064 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |23065 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |23066 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |23067 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |23068 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23069 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |23070 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |23071 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |23072 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |23073 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |23074 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |23075 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |23076 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |23077 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23078 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |23079 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |23080 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |23081 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |23082 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |23083 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |23084 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |23085 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |23086 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23087 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23088 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23089 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23090 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |23091 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23092 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |23093 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23094 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |23095 |914 |29103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23096 |915 |29140 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23097 |916 |29177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23098 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23099 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |23100 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |23101 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23102 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |23103 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |23104 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23105 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |23106 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |23107 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23108 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |23109 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23110 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |23111 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23112 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |23113 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23114 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |23115 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |23116 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |23117 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23118 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |23119 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |23120 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |23121 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23122 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |23123 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |23124 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |23125 |930 |29359 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23126 |930 |29360 |5 |1 |2774A4|0 |2 |0 |
-ROW |23127 |931 |29373 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23128 |931 |29374 |5 |1 |2774A4|0 |2 |0 |
-ROW |23129 |928 |29383 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23130 |928 |29384 |5 |1 |2774A4|0 |2 |0 |
-ROW |23131 |929 |29389 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23132 |929 |29390 |5 |1 |2774A4|0 |2 |0 |
-ROW |23133 |932 |29387 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23134 |932 |29388 |5 |1 |2774A4|0 |2 |0 |
-ROW |23135 |933 |29393 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23136 |933 |29394 |5 |1 |2774A4|0 |2 |0 |
-ROW |23137 |926 |29356 |0 |0 |969696|0 |9 |2 |
-ROW |23138 |926 |29355 |0 |1 |C80000|0 |9 |0 |
-ROW |23139 |927 |29370 |0 |0 |969696|0 |9 |2 |
-ROW |23140 |927 |29369 |0 |1 |C80000|0 |9 |0 |
-ROW |23141 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23142 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
-ROW |23143 |934 |29363 |0 |2 |F63100|1 |2 |0 |
-ROW |23144 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
-ROW |23145 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23146 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23147 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23148 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
-ROW |23149 |935 |29377 |0 |2 |F63100|1 |2 |0 |
-ROW |23150 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
-ROW |23151 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23152 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23153 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23154 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
-ROW |23155 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23156 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
-ROW |23157 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23158 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
-ROW |23159 |940 |29281 |0 |2 |F63100|0 |2 |0 |
-ROW |23160 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
-ROW |23161 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |23162 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
-ROW |23163 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
-ROW |23164 |940 |29277 |0 |7 |611F27|0 |2 |0 |
-ROW |23165 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
-ROW |23166 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23167 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
-ROW |23168 |941 |29318 |0 |2 |F63100|0 |2 |0 |
-ROW |23169 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
-ROW |23170 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |23171 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
-ROW |23172 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
-ROW |23173 |941 |29314 |0 |7 |611F27|0 |2 |0 |
-ROW |23174 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
-ROW |23175 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23176 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23177 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23178 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
-ROW |23179 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23180 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
-ROW |23181 |944 |29289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23182 |945 |29326 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23183 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23184 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
-ROW |23185 |950 |29303 |0 |2 |F63100|0 |2 |0 |
-ROW |23186 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23187 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
-ROW |23188 |951 |29340 |0 |2 |F63100|0 |2 |0 |
-ROW |23189 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23190 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
-ROW |23191 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23192 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
-ROW |23193 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23194 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
-ROW |23195 |936 |29286 |0 |2 |F63100|0 |2 |0 |
-ROW |23196 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
-ROW |23197 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23198 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
-ROW |23199 |937 |29323 |0 |2 |F63100|0 |2 |0 |
-ROW |23200 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
-ROW |23201 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23202 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |23203 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |23204 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |23205 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23206 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23207 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23208 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |23209 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23210 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |23211 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23212 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |23213 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |23214 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |23215 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23216 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |23217 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23218 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |23219 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |23220 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |23221 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |23222 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |23223 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |23224 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |23225 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |23226 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23227 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23228 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |23229 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23230 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23231 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |23232 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23233 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |23234 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |23235 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |23236 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23237 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |23238 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23239 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |23240 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23241 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |23242 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |23243 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |23244 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |23245 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |23246 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |23247 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |23248 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |23249 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23250 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |23251 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |23252 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |23253 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |23254 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |23255 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |23256 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |23257 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |23258 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23259 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23260 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |23261 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |23262 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |23263 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |23264 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23265 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |23266 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23267 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |23268 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23269 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |23270 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |23271 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |23272 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23273 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23274 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23275 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |23276 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23277 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |23278 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23279 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |23280 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |23281 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |23282 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23283 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |23284 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |23285 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |23286 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |23287 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |23288 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |23289 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |23290 |970 |29515 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23291 |970 |29516 |2 |1 |2774A4|0 |2 |0 |
-ROW |23292 |970 |29520 |0 |2 |F63100|1 |2 |0 |
-ROW |23293 |970 |29519 |0 |3 |A54F10|1 |2 |0 |
-ROW |23294 |970 |29518 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23295 |970 |29517 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23296 |971 |29524 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23297 |971 |29525 |2 |1 |2774A4|0 |2 |0 |
-ROW |23298 |971 |29529 |0 |2 |F63100|1 |2 |0 |
-ROW |23299 |971 |29528 |0 |3 |A54F10|1 |2 |0 |
-ROW |23300 |971 |29527 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23301 |971 |29526 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23302 |966 |29530 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23303 |966 |29531 |5 |1 |2774A4|0 |2 |0 |
-ROW |23304 |967 |29537 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23305 |967 |29538 |5 |1 |2774A4|0 |2 |0 |
-ROW |23306 |968 |29532 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23307 |968 |29533 |5 |1 |2774A4|0 |2 |0 |
-ROW |23308 |969 |29539 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23309 |969 |29540 |5 |1 |2774A4|0 |2 |0 |
-ROW |23310 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23311 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |23312 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23313 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |23314 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23315 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |23316 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23317 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |23318 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23319 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23320 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23321 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23322 |980 |29464 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23323 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |23324 |981 |29490 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23325 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |23326 |982 |29620 |0 |0 |969696|0 |9 |2 |
-ROW |23327 |982 |29619 |0 |1 |C80000|0 |9 |0 |
-ROW |23328 |983 |29629 |0 |0 |969696|0 |9 |2 |
-ROW |23329 |983 |29628 |0 |1 |C80000|0 |9 |0 |
-ROW |23330 |988 |29622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23331 |988 |29623 |2 |1 |2774A4|0 |2 |0 |
-ROW |23332 |988 |29627 |0 |2 |F63100|1 |2 |0 |
-ROW |23333 |988 |29626 |0 |3 |A54F10|1 |2 |0 |
-ROW |23334 |988 |29625 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23335 |988 |29624 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23336 |989 |29631 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23337 |989 |29632 |2 |1 |2774A4|0 |2 |0 |
-ROW |23338 |989 |29636 |0 |2 |F63100|1 |2 |0 |
-ROW |23339 |989 |29635 |0 |3 |A54F10|1 |2 |0 |
-ROW |23340 |989 |29634 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |23341 |989 |29633 |0 |5 |6C59DC|1 |2 |0 |
-ROW |23342 |984 |29637 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23343 |984 |29638 |5 |1 |2774A4|0 |2 |0 |
-ROW |23344 |985 |29644 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23345 |985 |29645 |5 |1 |2774A4|0 |2 |0 |
-ROW |23346 |986 |29639 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23347 |986 |29640 |5 |1 |2774A4|0 |2 |0 |
-ROW |23348 |987 |29646 |0 |0 |1A7C11|1 |2 |0 |
-ROW |23349 |987 |29647 |5 |1 |2774A4|0 |2 |0 |
-ROW |23350 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23351 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
-ROW |23352 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23353 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
-ROW |23354 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23355 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
-ROW |23356 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23357 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
-ROW |23358 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23359 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23360 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23361 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
-ROW |23362 |998 |29571 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23363 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
-ROW |23364 |999 |29597 |0 |0 |1A7C11|0 |2 |0 |
-ROW |23365 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
-ROW |23366 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23367 |830 |28769 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23368 |830 |28770 |0 |1 |2774A4|0 |2 |0 |
+ROW |23369 |830 |28771 |0 |2 |F63100|0 |2 |0 |
+ROW |23370 |830 |28772 |2 |3 |A54F10|0 |2 |0 |
+ROW |23371 |831 |28774 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23372 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23373 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |23374 |832 |28761 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23375 |834 |28762 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23376 |834 |28760 |0 |1 |2774A4|0 |2 |0 |
+ROW |23377 |834 |28757 |0 |2 |F63100|0 |2 |0 |
+ROW |23378 |834 |28750 |0 |3 |A54F10|0 |2 |0 |
+ROW |23379 |834 |28756 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23380 |834 |28754 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23381 |834 |28763 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23382 |834 |28767 |0 |7 |611F27|0 |2 |0 |
+ROW |23383 |834 |28759 |0 |8 |F230E0|0 |2 |0 |
+ROW |23384 |834 |28755 |0 |9 |FFAD40|0 |2 |0 |
+ROW |23385 |834 |28753 |0 |10 |40CDFF|0 |2 |0 |
+ROW |23386 |833 |28765 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23387 |833 |28764 |0 |1 |2774A4|0 |2 |0 |
+ROW |23388 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23389 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |23390 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |23391 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |23392 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23393 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23394 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23395 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |23396 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |23397 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |23398 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23399 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23400 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23401 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |23402 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |23403 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |23404 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |23405 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23406 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |23407 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23408 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |23409 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |23410 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23411 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |23412 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23413 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |23414 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |23415 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |23416 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |23417 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |23418 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23419 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |23420 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23421 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |23422 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |23423 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |23424 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23425 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23426 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |23427 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23428 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23429 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |23430 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |23431 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |23432 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23433 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |23434 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23435 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |23436 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23437 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |23438 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23439 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |23440 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23441 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |23442 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |23443 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |23444 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23445 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23446 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |23447 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23448 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |23449 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23450 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |23451 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23452 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |23453 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23454 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |23455 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23456 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |23457 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |23458 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |23459 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23460 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23461 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |23462 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23463 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |23464 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |23465 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23466 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |23467 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |23468 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23469 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |23470 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |23471 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23472 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |23473 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23474 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |23475 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23476 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23477 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |23478 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |23479 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |23480 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23481 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |23482 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |23483 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23484 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |23485 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23486 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23487 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |23488 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |23489 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |23490 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23491 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |23492 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |23493 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23494 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23495 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
+ROW |23496 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
+ROW |23497 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
+ROW |23498 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23499 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23500 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23501 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
+ROW |23502 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23503 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
+ROW |23504 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
+ROW |23505 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
+ROW |23506 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23507 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23508 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23509 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
+ROW |23510 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23511 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
+ROW |23512 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
+ROW |23513 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23514 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
+ROW |23515 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23516 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23517 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
+ROW |23518 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23519 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
+ROW |23520 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23521 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
+ROW |23522 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
+ROW |23523 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23524 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
+ROW |23525 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
+ROW |23526 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
+ROW |23527 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23528 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23529 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23530 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
+ROW |23531 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23532 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
+ROW |23533 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
+ROW |23534 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
+ROW |23535 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23536 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23537 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23538 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
+ROW |23539 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23540 |1011 |29662 |2 |1 |2774A4|0 |2 |0 |
+ROW |23541 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23542 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23543 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
+ROW |23544 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23545 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23546 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
+ROW |23547 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
+ROW |23548 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
+ROW |23549 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23550 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23551 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23552 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
+ROW |23553 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23554 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
+ROW |23555 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
+ROW |23556 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
+ROW |23557 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23558 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23559 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23560 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
+ROW |23561 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23562 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
+ROW |23563 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
+ROW |23564 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23565 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
+ROW |23566 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23567 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23568 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
+ROW |23569 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23570 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
+ROW |23571 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
+ROW |23572 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23573 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
+ROW |23574 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
+ROW |23575 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
+ROW |23576 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23577 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23578 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23579 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
+ROW |23580 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23581 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
+ROW |23582 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
+ROW |23583 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
+ROW |23584 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23585 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
+ROW |23586 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
+ROW |23587 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
+ROW |23588 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
+ROW |23589 |1025 |29744 |2 |1 |2774A4|0 |2 |0 |
+ROW |23590 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23591 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23592 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
+ROW |23593 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23594 |793 |28532 |0 |0 |C80000|0 |2 |0 |
+ROW |23595 |793 |28503 |0 |1 |00C800|0 |2 |0 |
+ROW |23596 |793 |28504 |0 |2 |0000C8|0 |2 |0 |
+ROW |23597 |794 |28505 |0 |0 |C80000|0 |2 |0 |
+ROW |23598 |794 |28506 |0 |1 |00C800|0 |2 |0 |
+ROW |23599 |794 |28507 |0 |2 |0000C8|0 |2 |0 |
+ROW |23600 |795 |28508 |0 |0 |C80000|0 |2 |0 |
+ROW |23601 |795 |28509 |0 |1 |00C800|0 |2 |0 |
+ROW |23602 |795 |28510 |0 |2 |0000C8|0 |2 |0 |
+ROW |23603 |796 |28515 |0 |0 |C80000|0 |2 |0 |
+ROW |23604 |796 |28518 |0 |1 |00C800|0 |2 |0 |
+ROW |23605 |796 |28516 |0 |2 |0000C8|0 |2 |0 |
+ROW |23606 |638 |26892 |0 |0 |C80000|0 |2 |0 |
+ROW |23607 |638 |26891 |0 |1 |00C800|0 |2 |0 |
+ROW |23608 |638 |26910 |0 |2 |0000C8|0 |2 |0 |
+ROW |23609 |639 |26879 |0 |0 |C80000|0 |2 |0 |
+ROW |23610 |639 |26880 |0 |1 |00C800|0 |2 |0 |
+ROW |23611 |640 |26906 |0 |0 |C80000|0 |2 |0 |
+ROW |23612 |640 |26895 |0 |1 |00C800|0 |2 |0 |
+ROW |23613 |640 |26889 |0 |2 |0000C8|0 |2 |0 |
+ROW |23614 |640 |26884 |0 |3 |C8C800|0 |2 |0 |
+ROW |23615 |640 |26896 |0 |4 |00C8C9|0 |2 |0 |
+ROW |23616 |640 |26887 |0 |5 |C800C8|0 |2 |0 |
+ROW |23617 |641 |26900 |0 |0 |C80000|0 |2 |0 |
+ROW |23618 |641 |26901 |0 |1 |00C800|0 |2 |0 |
+ROW |23619 |641 |26902 |0 |2 |0000C8|0 |2 |0 |
+ROW |23620 |642 |26883 |0 |0 |C80000|0 |2 |0 |
+ROW |23621 |642 |26882 |0 |1 |00C800|0 |2 |0 |
+ROW |23622 |642 |26864 |0 |2 |0000C8|0 |2 |0 |
+ROW |23623 |643 |26863 |0 |0 |C80000|0 |2 |0 |
+ROW |23624 |643 |26865 |0 |1 |00C800|0 |2 |0 |
+ROW |23625 |643 |26866 |0 |2 |0000C8|0 |2 |0 |
+ROW |23626 |644 |26867 |0 |0 |C80000|0 |2 |0 |
+ROW |23627 |644 |26862 |0 |1 |00C800|0 |2 |0 |
+ROW |23628 |644 |26861 |0 |2 |0000C8|0 |2 |0 |
+ROW |23629 |645 |26857 |0 |0 |C80000|0 |2 |0 |
+ROW |23630 |645 |26856 |0 |1 |00C800|0 |2 |0 |
+ROW |23631 |645 |26858 |0 |2 |0000C8|0 |2 |0 |
+ROW |23632 |646 |26859 |0 |0 |0000C8|0 |2 |0 |
+ROW |23633 |646 |26860 |0 |1 |C80000|0 |2 |0 |
+ROW |23634 |646 |26868 |0 |2 |00C800|0 |2 |0 |
+ROW |23635 |647 |26869 |0 |0 |C80000|0 |2 |0 |
+ROW |23636 |647 |26878 |0 |1 |00C800|0 |2 |0 |
+ROW |23637 |647 |26877 |0 |2 |0000C8|0 |2 |0 |
+ROW |23638 |648 |26872 |0 |0 |C80000|0 |2 |0 |
+ROW |23639 |648 |26870 |0 |1 |00C800|0 |2 |0 |
+ROW |23640 |648 |26873 |0 |2 |0000C8|0 |2 |0 |
+ROW |23641 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |23642 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |23643 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |23644 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |23645 |804 |28602 |0 |0 |990099|0 |2 |0 |
+ROW |23646 |804 |28606 |0 |1 |990000|0 |2 |0 |
+ROW |23647 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
+ROW |23648 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
+ROW |23649 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
+ROW |23650 |804 |28611 |0 |5 |003300|0 |2 |0 |
+ROW |23651 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
+ROW |23652 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
+ROW |23653 |804 |28604 |0 |8 |000099|0 |2 |0 |
+ROW |23654 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
+ROW |23655 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
+ROW |23656 |805 |28600 |0 |1 |990099|0 |2 |0 |
+ROW |23657 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
+ROW |23658 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
+ROW |23659 |805 |28614 |0 |4 |960000|0 |2 |0 |
+ROW |23660 |805 |28601 |0 |5 |009600|0 |2 |0 |
+ROW |23661 |805 |28603 |0 |6 |009999|0 |2 |0 |
+ROW |23662 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
+ROW |23663 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |23664 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |23665 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |23666 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |23667 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |23668 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |23669 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |23670 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |23671 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |23672 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |23673 |799 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |23674 |799 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |23675 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |23676 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |23677 |799 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |23678 |799 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |23679 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |23680 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |23681 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |23682 |799 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |23683 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |23684 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |23685 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |23686 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |23687 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |23688 |800 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |23689 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |23690 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |23691 |800 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |23692 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |23693 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |23694 |800 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |23695 |800 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |23696 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |23697 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |23698 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |23699 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |23700 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |23701 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |23702 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |23703 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |23704 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |23705 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |23706 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |23707 |530 |23345 |0 |0 |990099|0 |2 |0 |
+ROW |23708 |530 |23348 |0 |1 |990000|0 |2 |0 |
+ROW |23709 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
+ROW |23710 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
+ROW |23711 |530 |23356 |0 |4 |007700|0 |2 |0 |
+ROW |23712 |530 |23354 |0 |5 |003300|0 |2 |0 |
+ROW |23713 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
+ROW |23714 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
+ROW |23715 |530 |23344 |0 |8 |000099|0 |7 |0 |
+ROW |23716 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
+ROW |23717 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
+ROW |23718 |531 |23347 |0 |1 |990099|0 |2 |0 |
+ROW |23719 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
+ROW |23720 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
+ROW |23721 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
+ROW |23722 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
+ROW |23723 |531 |25369 |0 |6 |009999|0 |2 |0 |
+ROW |23724 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
+ROW |23725 |531 |28618 |0 |8 |990000|0 |2 |0 |
+ROW |23726 |531 |28619 |0 |9 |008800|0 |2 |0 |
+ROW |23727 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |23728 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |23729 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |23730 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |23731 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |23732 |528 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |23733 |528 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |23734 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |23735 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |23736 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |23737 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |23738 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |23739 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |23740 |520 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |23741 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |23742 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |23743 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |23744 |520 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |23745 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |23746 |404 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |23747 |404 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |23748 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |23749 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |23750 |404 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |23751 |404 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |23752 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |23753 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |23754 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |23755 |404 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |23756 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |23757 |518 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |23758 |518 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |23759 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |23760 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
+ROW |23761 |518 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |23762 |518 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |23763 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
+ROW |23764 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
+ROW |23765 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
+ROW |23766 |518 |23267 |0 |9 |000099|0 |2 |0 |
+ROW |23767 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
+ROW |23768 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |23769 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |23770 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |23771 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |23772 |406 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |23773 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |23774 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |23775 |406 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |23776 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |23777 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |23778 |406 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |23779 |406 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |23780 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |23781 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |23782 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |23783 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |23784 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
+ROW |23785 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
+ROW |23786 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
+ROW |23787 |517 |23253 |0 |4 |990099|0 |2 |0 |
+ROW |23788 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
+ROW |23789 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
+ROW |23790 |517 |23664 |0 |7 |009999|0 |2 |0 |
+ROW |23791 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
+ROW |23792 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
+ROW |23793 |517 |25667 |0 |10 |990000|0 |2 |0 |
+ROW |23794 |517 |25668 |0 |11 |008800|0 |2 |0 |
+ROW |23795 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
+ROW |23796 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
+ROW |23797 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
+ROW |23798 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |23799 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |23800 |789 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |23801 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |23802 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |23803 |392 |23251 |5 |1 |C80000|1 |2 |0 |
+ROW |23804 |519 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |23805 |519 |23272 |5 |1 |C80000|1 |2 |0 |
+ROW |23806 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |23807 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |23808 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |23809 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |23810 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |23811 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |23812 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |23813 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |23814 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |23815 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |23816 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |23817 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |23818 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |23819 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |23820 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |23821 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |23822 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |23823 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |23824 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |23825 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |23826 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |23827 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |23828 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |23829 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |23830 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |23831 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |23832 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |23833 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |23834 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |23835 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |23836 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |23837 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |23838 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |23839 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |23840 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |23841 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |23842 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |23843 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |23844 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |23845 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |23846 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |23847 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |23848 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |23849 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |23850 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |23851 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |23852 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |23853 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |23854 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |23855 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |23856 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |23857 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |23858 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |23859 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |23860 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |23861 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |23862 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |23863 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |23864 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |23865 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |23866 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |23867 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |23868 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |23869 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |23870 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |23871 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |23872 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |23873 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |23874 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |23875 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |23876 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |23877 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |23878 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |23879 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |23880 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |23881 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |23882 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |23883 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |23884 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |23885 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |23886 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |23887 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |23888 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |23889 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |23890 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |23891 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |23892 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |23893 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |23894 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |23895 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |23896 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |23897 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |23898 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |23899 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |23900 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |23901 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |23902 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |23903 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |23904 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |23905 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |23906 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |23907 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |23908 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |23909 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23910 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |23911 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23912 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |23913 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |23914 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |23915 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23916 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |23917 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |23918 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |23919 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23920 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |23921 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |23922 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |23923 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23924 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |23925 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |23926 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23927 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |23928 |1114 |30448 |0 |2 |F63100|0 |2 |0 |
+ROW |23929 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |23930 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23931 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |23932 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23933 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |23934 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |23935 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |23936 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23937 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |23938 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |23939 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |23940 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23941 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |23942 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |23943 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |23944 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23945 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |23946 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |23947 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23948 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |23949 |1141 |30654 |0 |2 |F63100|0 |2 |0 |
+ROW |23950 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |23951 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23952 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |23953 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23954 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |23955 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |23956 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |23957 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23958 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |23959 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |23960 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |23961 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23962 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |23963 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |23964 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |23965 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23966 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |23967 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |23968 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23969 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |23970 |1120 |30498 |0 |2 |F63100|0 |2 |0 |
+ROW |23971 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |23972 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
+ROW |23973 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
+ROW |23974 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
+ROW |23975 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
+ROW |23976 |816 |28715 |0 |1 |F63100|0 |2 |0 |
+ROW |23977 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
+ROW |23978 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
+ROW |23979 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
+ROW |23980 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
+ROW |23981 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
+ROW |23982 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
+ROW |23983 |818 |28725 |5 |3 |81C784|0 |2 |0 |
+ROW |23984 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
+ROW |23985 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
+ROW |23986 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23987 |819 |28724 |0 |1 |F63100|0 |2 |0 |
+ROW |23988 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
+ROW |23989 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
+ROW |23990 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
+ROW |23991 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
+ROW |23992 |821 |28737 |0 |1 |F63100|0 |2 |0 |
+ROW |23993 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
+ROW |23994 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
+ROW |23995 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |23996 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
+ROW |23997 |822 |28698 |0 |1 |F63100|1 |2 |0 |
+ROW |23998 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
+ROW |23999 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
+ROW |24000 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24001 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24002 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24003 |823 |28699 |0 |1 |F63100|0 |2 |0 |
+ROW |24004 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
+ROW |24005 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
+ROW |24006 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
+ROW |24007 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
+ROW |24008 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
+ROW |24009 |824 |28705 |0 |3 |F63100|1 |2 |0 |
+ROW |24010 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
+ROW |24011 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
+ROW |24012 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
+ROW |24013 |825 |28674 |5 |0 |A5D6A7|0 |2 |0 |
+ROW |24014 |825 |28673 |0 |1 |039BE5|1 |2 |0 |
+ROW |24015 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
+ROW |24016 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24017 |827 |28688 |0 |1 |F63100|1 |2 |0 |
+ROW |24018 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
+ROW |24019 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
+ROW |24020 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
+ROW |24021 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
+ROW |24022 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
+ROW |24023 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
+ROW |24024 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24025 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |24026 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24027 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |24028 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24029 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24030 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24031 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |24032 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24033 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24034 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |24035 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |24036 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |24037 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24038 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |24039 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24040 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |24041 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24042 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |24043 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |24044 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24045 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24046 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |24047 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24048 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |24049 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24050 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24051 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24052 |1103 |30413 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24053 |1104 |30419 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24054 |1105 |30415 |0 |0 |969696|0 |9 |2 |
+ROW |24055 |1105 |30416 |0 |1 |C80000|0 |9 |0 |
+ROW |24056 |1106 |30421 |0 |0 |969696|0 |9 |2 |
+ROW |24057 |1106 |30422 |0 |1 |C80000|0 |9 |0 |
+ROW |24058 |1107 |30405 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24059 |1108 |30406 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24060 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24061 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24062 |1062 |30171 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24063 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24064 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24065 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |24066 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |24067 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |24068 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |24069 |1067 |30173 |0 |0 |969696|0 |9 |2 |
+ROW |24070 |1067 |30174 |0 |1 |C80000|0 |9 |0 |
+ROW |24071 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |24072 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |24073 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |24074 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |24075 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24076 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24077 |1072 |30144 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24078 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24079 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24080 |738 |27074 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24081 |738 |27075 |2 |1 |2774A4|0 |2 |0 |
+ROW |24082 |738 |27073 |0 |2 |F63100|1 |2 |0 |
+ROW |24083 |738 |27076 |0 |3 |A54F10|1 |2 |0 |
+ROW |24084 |738 |27072 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24085 |738 |27069 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24086 |739 |27599 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24087 |739 |27602 |2 |1 |2774A4|0 |2 |0 |
+ROW |24088 |739 |27601 |0 |2 |F63100|1 |2 |0 |
+ROW |24089 |739 |27598 |0 |3 |A54F10|1 |2 |0 |
+ROW |24090 |739 |27600 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24091 |739 |27597 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24092 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24093 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |24094 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |24095 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |24096 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24097 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24098 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24099 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |24100 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |24101 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |24102 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24103 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24104 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24105 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |24106 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |24107 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |24108 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24109 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24110 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24111 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |24112 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |24113 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |24114 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24115 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24116 |744 |27094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24117 |744 |27095 |2 |1 |2774A4|0 |2 |0 |
+ROW |24118 |744 |27093 |0 |2 |F63100|1 |2 |0 |
+ROW |24119 |744 |27096 |0 |3 |A54F10|1 |2 |0 |
+ROW |24120 |744 |27092 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24121 |744 |27089 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24122 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24123 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |24124 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |24125 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |24126 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24127 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24128 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24129 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |24130 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |24131 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |24132 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24133 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24134 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24135 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |24136 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |24137 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |24138 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24139 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24140 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24141 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |24142 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |24143 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |24144 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24145 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24146 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24147 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |24148 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |24149 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |24150 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24151 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24152 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24153 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |24154 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |24155 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |24156 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24157 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24158 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24159 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |24160 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |24161 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |24162 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24163 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24164 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24165 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |24166 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |24167 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |24168 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24169 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24170 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24171 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |24172 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |24173 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |24174 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24175 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24176 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24177 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |24178 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |24179 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |24180 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24181 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24182 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24183 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |24184 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |24185 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |24186 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24187 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24188 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24189 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |24190 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |24191 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |24192 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24193 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24194 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24195 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |24196 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |24197 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |24198 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24199 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24200 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24201 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |24202 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |24203 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |24204 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24205 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24206 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24207 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |24208 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |24209 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |24210 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24211 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24212 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24213 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |24214 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |24215 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |24216 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24217 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24218 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24219 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |24220 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |24221 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |24222 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24223 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24224 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24225 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |24226 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |24227 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |24228 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24229 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24230 |778 |28178 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24231 |778 |28181 |2 |1 |2774A4|0 |2 |0 |
+ROW |24232 |778 |28180 |0 |2 |F63100|1 |2 |0 |
+ROW |24233 |778 |28177 |0 |3 |A54F10|1 |2 |0 |
+ROW |24234 |778 |28179 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24235 |778 |28176 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24236 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24237 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |24238 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |24239 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |24240 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24241 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24242 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24243 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |24244 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |24245 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |24246 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24247 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24248 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24249 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |24250 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |24251 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |24252 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24253 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24254 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24255 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |24256 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |24257 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |24258 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24259 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24260 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24261 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |24262 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |24263 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |24264 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24265 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24266 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24267 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24268 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |24269 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24270 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24271 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24272 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24273 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24274 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24275 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24276 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24277 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24278 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24279 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24280 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24281 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24282 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24283 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24284 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24285 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24286 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24287 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24288 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24289 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24290 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24291 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24292 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24293 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24294 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24295 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |24296 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24297 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24298 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24299 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24300 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24301 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |24302 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24303 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24304 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24305 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24306 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24307 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24308 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24309 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |24310 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |24311 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24312 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24313 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24314 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |24315 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24316 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24317 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24318 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24319 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24320 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24321 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24322 |893 |29214 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24323 |893 |29215 |5 |1 |2774A4|0 |2 |0 |
+ROW |24324 |894 |29228 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24325 |894 |29229 |5 |1 |2774A4|0 |2 |0 |
+ROW |24326 |895 |29242 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24327 |895 |29243 |5 |1 |2774A4|0 |2 |0 |
+ROW |24328 |890 |29252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24329 |890 |29253 |5 |1 |2774A4|0 |2 |0 |
+ROW |24330 |891 |29258 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24331 |891 |29259 |5 |1 |2774A4|0 |2 |0 |
+ROW |24332 |892 |29264 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24333 |892 |29265 |5 |1 |2774A4|0 |2 |0 |
+ROW |24334 |896 |29256 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24335 |896 |29257 |5 |1 |2774A4|0 |2 |0 |
+ROW |24336 |897 |29262 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24337 |897 |29263 |5 |1 |2774A4|0 |2 |0 |
+ROW |24338 |898 |29268 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24339 |898 |29269 |5 |1 |2774A4|0 |2 |0 |
+ROW |24340 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |24341 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |24342 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |24343 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |24344 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |24345 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |24346 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24347 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |24348 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |24349 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |24350 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24351 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24352 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24353 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |24354 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |24355 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |24356 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24357 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24358 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24359 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |24360 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |24361 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |24362 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24363 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24364 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24365 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |24366 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24367 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |24368 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24369 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |24370 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24371 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |24372 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |24373 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |24374 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24375 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24376 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |24377 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |24378 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |24379 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24380 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |24381 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |24382 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |24383 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24384 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24385 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |24386 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |24387 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |24388 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24389 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |24390 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |24391 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |24392 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24393 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24394 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |24395 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |24396 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |24397 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24398 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24399 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24400 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24401 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |24402 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24403 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |24404 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24405 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |24406 |914 |29103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24407 |915 |29140 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24408 |916 |29177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24409 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24410 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |24411 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |24412 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24413 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |24414 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |24415 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24416 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |24417 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |24418 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24419 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |24420 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24421 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |24422 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24423 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |24424 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24425 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |24426 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |24427 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |24428 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24429 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |24430 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |24431 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |24432 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24433 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |24434 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |24435 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |24436 |930 |29359 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24437 |930 |29360 |5 |1 |2774A4|0 |2 |0 |
+ROW |24438 |931 |29373 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24439 |931 |29374 |5 |1 |2774A4|0 |2 |0 |
+ROW |24440 |928 |29383 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24441 |928 |29384 |5 |1 |2774A4|0 |2 |0 |
+ROW |24442 |929 |29389 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24443 |929 |29390 |5 |1 |2774A4|0 |2 |0 |
+ROW |24444 |932 |29387 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24445 |932 |29388 |5 |1 |2774A4|0 |2 |0 |
+ROW |24446 |933 |29393 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24447 |933 |29394 |5 |1 |2774A4|0 |2 |0 |
+ROW |24448 |926 |29356 |0 |0 |969696|0 |9 |2 |
+ROW |24449 |926 |29355 |0 |1 |C80000|0 |9 |0 |
+ROW |24450 |927 |29370 |0 |0 |969696|0 |9 |2 |
+ROW |24451 |927 |29369 |0 |1 |C80000|0 |9 |0 |
+ROW |24452 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24453 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
+ROW |24454 |934 |29363 |0 |2 |F63100|1 |2 |0 |
+ROW |24455 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
+ROW |24456 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24457 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24458 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24459 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
+ROW |24460 |935 |29377 |0 |2 |F63100|1 |2 |0 |
+ROW |24461 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
+ROW |24462 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24463 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24464 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24465 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
+ROW |24466 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24467 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
+ROW |24468 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24469 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
+ROW |24470 |940 |29281 |0 |2 |F63100|0 |2 |0 |
+ROW |24471 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
+ROW |24472 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24473 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24474 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
+ROW |24475 |940 |29277 |0 |7 |611F27|0 |2 |0 |
+ROW |24476 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
+ROW |24477 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24478 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
+ROW |24479 |941 |29318 |0 |2 |F63100|0 |2 |0 |
+ROW |24480 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
+ROW |24481 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24482 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24483 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
+ROW |24484 |941 |29314 |0 |7 |611F27|0 |2 |0 |
+ROW |24485 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
+ROW |24486 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24487 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24488 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24489 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
+ROW |24490 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24491 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
+ROW |24492 |944 |29289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24493 |945 |29326 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24494 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24495 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
+ROW |24496 |950 |29303 |0 |2 |F63100|0 |2 |0 |
+ROW |24497 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24498 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
+ROW |24499 |951 |29340 |0 |2 |F63100|0 |2 |0 |
+ROW |24500 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24501 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
+ROW |24502 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24503 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
+ROW |24504 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24505 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
+ROW |24506 |936 |29286 |0 |2 |F63100|0 |2 |0 |
+ROW |24507 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
+ROW |24508 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24509 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
+ROW |24510 |937 |29323 |0 |2 |F63100|0 |2 |0 |
+ROW |24511 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
+ROW |24512 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24513 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |24514 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |24515 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |24516 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24517 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24518 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24519 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |24520 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24521 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |24522 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24523 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |24524 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |24525 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |24526 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24527 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |24528 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24529 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |24530 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |24531 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |24532 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24533 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24534 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |24535 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |24536 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |24537 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24538 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24539 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |24540 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24541 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24542 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |24543 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24544 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |24545 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |24546 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |24547 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24548 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |24549 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24550 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |24551 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24552 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |24553 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |24554 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |24555 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24556 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24557 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |24558 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |24559 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |24560 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24561 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |24562 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |24563 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |24564 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |24565 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |24566 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |24567 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |24568 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |24569 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24570 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24571 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |24572 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |24573 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |24574 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |24575 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24576 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |24577 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24578 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |24579 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24580 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |24581 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |24582 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |24583 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24584 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24585 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24586 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |24587 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24588 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |24589 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24590 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |24591 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |24592 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |24593 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24594 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |24595 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |24596 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |24597 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |24598 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |24599 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |24600 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |24601 |970 |29515 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24602 |970 |29516 |2 |1 |2774A4|0 |2 |0 |
+ROW |24603 |970 |29520 |0 |2 |F63100|1 |2 |0 |
+ROW |24604 |970 |29519 |0 |3 |A54F10|1 |2 |0 |
+ROW |24605 |970 |29518 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24606 |970 |29517 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24607 |971 |29524 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24608 |971 |29525 |2 |1 |2774A4|0 |2 |0 |
+ROW |24609 |971 |29529 |0 |2 |F63100|1 |2 |0 |
+ROW |24610 |971 |29528 |0 |3 |A54F10|1 |2 |0 |
+ROW |24611 |971 |29527 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24612 |971 |29526 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24613 |966 |29530 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24614 |966 |29531 |5 |1 |2774A4|0 |2 |0 |
+ROW |24615 |967 |29537 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24616 |967 |29538 |5 |1 |2774A4|0 |2 |0 |
+ROW |24617 |968 |29532 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24618 |968 |29533 |5 |1 |2774A4|0 |2 |0 |
+ROW |24619 |969 |29539 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24620 |969 |29540 |5 |1 |2774A4|0 |2 |0 |
+ROW |24621 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24622 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |24623 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24624 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |24625 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24626 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |24627 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24628 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |24629 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24630 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24631 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24632 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24633 |980 |29464 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24634 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |24635 |981 |29490 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24636 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |24637 |982 |29620 |0 |0 |969696|0 |9 |2 |
+ROW |24638 |982 |29619 |0 |1 |C80000|0 |9 |0 |
+ROW |24639 |983 |29629 |0 |0 |969696|0 |9 |2 |
+ROW |24640 |983 |29628 |0 |1 |C80000|0 |9 |0 |
+ROW |24641 |988 |29622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24642 |988 |29623 |2 |1 |2774A4|0 |2 |0 |
+ROW |24643 |988 |29627 |0 |2 |F63100|1 |2 |0 |
+ROW |24644 |988 |29626 |0 |3 |A54F10|1 |2 |0 |
+ROW |24645 |988 |29625 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24646 |988 |29624 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24647 |989 |29631 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24648 |989 |29632 |2 |1 |2774A4|0 |2 |0 |
+ROW |24649 |989 |29636 |0 |2 |F63100|1 |2 |0 |
+ROW |24650 |989 |29635 |0 |3 |A54F10|1 |2 |0 |
+ROW |24651 |989 |29634 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |24652 |989 |29633 |0 |5 |6C59DC|1 |2 |0 |
+ROW |24653 |984 |29637 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24654 |984 |29638 |5 |1 |2774A4|0 |2 |0 |
+ROW |24655 |985 |29644 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24656 |985 |29645 |5 |1 |2774A4|0 |2 |0 |
+ROW |24657 |986 |29639 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24658 |986 |29640 |5 |1 |2774A4|0 |2 |0 |
+ROW |24659 |987 |29646 |0 |0 |1A7C11|1 |2 |0 |
+ROW |24660 |987 |29647 |5 |1 |2774A4|0 |2 |0 |
+ROW |24661 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24662 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
+ROW |24663 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24664 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
+ROW |24665 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24666 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
+ROW |24667 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24668 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
+ROW |24669 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24670 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24671 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24672 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
+ROW |24673 |998 |29571 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24674 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
+ROW |24675 |999 |29597 |0 |0 |1A7C11|0 |2 |0 |
+ROW |24676 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
+ROW |24677 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -11824,2456 +11824,2456 @@ ROW |46636 |1124 |28951 |
ROW |46637 |740 |28952 |
ROW |46638 |740 |28953 |
ROW |46639 |740 |28954 |
-ROW |52674 |1117 |28742 |
-ROW |52675 |1116 |28743 |
-ROW |52676 |1116 |28744 |
-ROW |52677 |1116 |28745 |
-ROW |52678 |1116 |28746 |
-ROW |52679 |1116 |28747 |
-ROW |52680 |1116 |28748 |
-ROW |52681 |1116 |28749 |
-ROW |52682 |1116 |28750 |
-ROW |52683 |1116 |28751 |
-ROW |52684 |1116 |28752 |
-ROW |52685 |1116 |28753 |
-ROW |52686 |1116 |28754 |
-ROW |52687 |1116 |28755 |
-ROW |52688 |1116 |28756 |
-ROW |52689 |1116 |28757 |
-ROW |52690 |1116 |28758 |
-ROW |52691 |1116 |28759 |
-ROW |52692 |1116 |28760 |
-ROW |52693 |1116 |28761 |
-ROW |52694 |1116 |28762 |
-ROW |52695 |1116 |28763 |
-ROW |52696 |1116 |28764 |
-ROW |52697 |1116 |28765 |
-ROW |52698 |1116 |28766 |
-ROW |52699 |1116 |28767 |
-ROW |52700 |1116 |28769 |
-ROW |52701 |1116 |28770 |
-ROW |52702 |1116 |28771 |
-ROW |52703 |1116 |28772 |
-ROW |52704 |1116 |28773 |
-ROW |52705 |1116 |28774 |
-ROW |52706 |1119 |28775 |
-ROW |52707 |1118 |28776 |
-ROW |52708 |1118 |28777 |
-ROW |52709 |1118 |28778 |
-ROW |52710 |1118 |28779 |
-ROW |52711 |1118 |28780 |
-ROW |52712 |1118 |28781 |
-ROW |52713 |1118 |28782 |
-ROW |52714 |1118 |28783 |
-ROW |52715 |1118 |28784 |
-ROW |52716 |1118 |28785 |
-ROW |52717 |1118 |28786 |
-ROW |52718 |1118 |28787 |
-ROW |52719 |1118 |28788 |
-ROW |52720 |1118 |28789 |
-ROW |52721 |1118 |28790 |
-ROW |52722 |1118 |28791 |
-ROW |52723 |1118 |28792 |
-ROW |52724 |1118 |28793 |
-ROW |52725 |1118 |28794 |
-ROW |52726 |1118 |28795 |
-ROW |52727 |1118 |28796 |
-ROW |52728 |1118 |28798 |
-ROW |52729 |1118 |28799 |
-ROW |52730 |1118 |28800 |
-ROW |52731 |1118 |28801 |
-ROW |52732 |1118 |28802 |
-ROW |52733 |1118 |28803 |
-ROW |52734 |1319 |30527 |
-ROW |52735 |1319 |30528 |
-ROW |52736 |1319 |30529 |
-ROW |52737 |1318 |30530 |
-ROW |52738 |1319 |30531 |
-ROW |52739 |1318 |30532 |
-ROW |52740 |1318 |30533 |
-ROW |52741 |1318 |30534 |
-ROW |52742 |1318 |30535 |
-ROW |52743 |1318 |30536 |
-ROW |52744 |1318 |30537 |
-ROW |52745 |1318 |30538 |
-ROW |52746 |1318 |30539 |
-ROW |52747 |1318 |30540 |
-ROW |52748 |1318 |30541 |
-ROW |52749 |1318 |30542 |
-ROW |52750 |1318 |30543 |
-ROW |52751 |1318 |30544 |
-ROW |52752 |1318 |30545 |
-ROW |52753 |1318 |30546 |
-ROW |52754 |1318 |30547 |
-ROW |52755 |1318 |30548 |
-ROW |52756 |1318 |30549 |
-ROW |52757 |1318 |30550 |
-ROW |52758 |1318 |30551 |
-ROW |52759 |1318 |30552 |
-ROW |52760 |1318 |30553 |
-ROW |52761 |1318 |30554 |
-ROW |52762 |1318 |30555 |
-ROW |52763 |1318 |30556 |
-ROW |52764 |1318 |30557 |
-ROW |52765 |1318 |30558 |
-ROW |52766 |1318 |30559 |
-ROW |52767 |1318 |30560 |
-ROW |52768 |1318 |30561 |
-ROW |52769 |1318 |30562 |
-ROW |52770 |1318 |30563 |
-ROW |52771 |1318 |30564 |
-ROW |52772 |1318 |30565 |
-ROW |52773 |1318 |30566 |
-ROW |52774 |1318 |30567 |
-ROW |52775 |1318 |30568 |
-ROW |52776 |1318 |30569 |
-ROW |52777 |1318 |30570 |
-ROW |52778 |1298 |30187 |
-ROW |52779 |1298 |30188 |
-ROW |52780 |1299 |30189 |
-ROW |52781 |1299 |30190 |
-ROW |52782 |1298 |30191 |
-ROW |52783 |1298 |30192 |
-ROW |52784 |1301 |30230 |
-ROW |52785 |1301 |30231 |
-ROW |52786 |1300 |30232 |
-ROW |52787 |1300 |30233 |
-ROW |52788 |1300 |30234 |
-ROW |52789 |1300 |30235 |
-ROW |52790 |1320 |30611 |
-ROW |52791 |1321 |30612 |
-ROW |52792 |1320 |30613 |
-ROW |52793 |1320 |30614 |
-ROW |52794 |1320 |30615 |
-ROW |52795 |1320 |30616 |
-ROW |52796 |1320 |30617 |
-ROW |52797 |1320 |30618 |
-ROW |52798 |1320 |30619 |
-ROW |52799 |1320 |30620 |
-ROW |52800 |1320 |30621 |
-ROW |52801 |1320 |30622 |
-ROW |52802 |1320 |30623 |
-ROW |52803 |1320 |30624 |
-ROW |52804 |1320 |30625 |
-ROW |52805 |1320 |30626 |
-ROW |52806 |1320 |30627 |
-ROW |52807 |1320 |30628 |
-ROW |52808 |1320 |30629 |
-ROW |52809 |1320 |30630 |
-ROW |52810 |1320 |30631 |
-ROW |52811 |1320 |30632 |
-ROW |52812 |1320 |30633 |
-ROW |52813 |1320 |30634 |
-ROW |52814 |1320 |30635 |
-ROW |52815 |1320 |30636 |
-ROW |52816 |1121 |28804 |
-ROW |52817 |1120 |28805 |
-ROW |52818 |1120 |28806 |
-ROW |52819 |1120 |28807 |
-ROW |52820 |1120 |28808 |
-ROW |52821 |1120 |28809 |
-ROW |52822 |1120 |28810 |
-ROW |52823 |1120 |28811 |
-ROW |52824 |1120 |28812 |
-ROW |52825 |1120 |28813 |
-ROW |52826 |1120 |28814 |
-ROW |52827 |1120 |28815 |
-ROW |52828 |1120 |28816 |
-ROW |52829 |1120 |28817 |
-ROW |52830 |1120 |28818 |
-ROW |52831 |1120 |28819 |
-ROW |52832 |1120 |28820 |
-ROW |52833 |1123 |28821 |
-ROW |52834 |1122 |28822 |
-ROW |52835 |1122 |28823 |
-ROW |52836 |1122 |28824 |
-ROW |52837 |1122 |28825 |
-ROW |52838 |1122 |28826 |
-ROW |52839 |1122 |28827 |
-ROW |52840 |1122 |28828 |
-ROW |52841 |1122 |28829 |
-ROW |52842 |1122 |28830 |
-ROW |52843 |1122 |28831 |
-ROW |52844 |1122 |28832 |
-ROW |52845 |1122 |28833 |
-ROW |52846 |1264 |29653 |
-ROW |52847 |1264 |29654 |
-ROW |52848 |1263 |29655 |
-ROW |52849 |1263 |29656 |
-ROW |52850 |1263 |29657 |
-ROW |52851 |1263 |29658 |
-ROW |52852 |1263 |29659 |
-ROW |52853 |1263 |29660 |
-ROW |52854 |1264 |29661 |
-ROW |52855 |1263 |29662 |
-ROW |52856 |1262 |29998 |
-ROW |52857 |1262 |29999 |
-ROW |52858 |1263 |29687 |
-ROW |52859 |1263 |29688 |
-ROW |52860 |1263 |29691 |
-ROW |52861 |1263 |29692 |
-ROW |52862 |1263 |29693 |
-ROW |52863 |1263 |29694 |
-ROW |52864 |1263 |29695 |
-ROW |52865 |1263 |29696 |
-ROW |52866 |1263 |29697 |
-ROW |52867 |1263 |29698 |
-ROW |52868 |1263 |29699 |
-ROW |52869 |1263 |29700 |
-ROW |52870 |1263 |29701 |
-ROW |52871 |1261 |30000 |
-ROW |52872 |1261 |30001 |
-ROW |52873 |1261 |30002 |
-ROW |52874 |1261 |30003 |
-ROW |52875 |1261 |30004 |
-ROW |52876 |1261 |30005 |
-ROW |52877 |1261 |30006 |
-ROW |52878 |1261 |30007 |
-ROW |52879 |1261 |30008 |
-ROW |52880 |1261 |30009 |
-ROW |52881 |1261 |30010 |
-ROW |52882 |1261 |30011 |
-ROW |52883 |1261 |30012 |
-ROW |52884 |1261 |30013 |
-ROW |52885 |1261 |30014 |
-ROW |52886 |1261 |30015 |
-ROW |52887 |1261 |30016 |
-ROW |52888 |1261 |30017 |
-ROW |52889 |1261 |30018 |
-ROW |52890 |1261 |30019 |
-ROW |52891 |1261 |30020 |
-ROW |52892 |1261 |30021 |
-ROW |52893 |1261 |30022 |
-ROW |52894 |1261 |30023 |
-ROW |52895 |1263 |30024 |
-ROW |52896 |1263 |30025 |
-ROW |52897 |1266 |29738 |
-ROW |52898 |1266 |29739 |
-ROW |52899 |1268 |29741 |
-ROW |52900 |1267 |29742 |
-ROW |52901 |1267 |29743 |
-ROW |52902 |1267 |29744 |
-ROW |52903 |1268 |29745 |
-ROW |52904 |1268 |30043 |
-ROW |52905 |1265 |29746 |
-ROW |52906 |1265 |29747 |
-ROW |52907 |1265 |29748 |
-ROW |52908 |1265 |29749 |
-ROW |52909 |1265 |29750 |
-ROW |52910 |1265 |29751 |
-ROW |52911 |1265 |29752 |
-ROW |52912 |1265 |29753 |
-ROW |52913 |1265 |29754 |
-ROW |52914 |1265 |29755 |
-ROW |52915 |1265 |29756 |
-ROW |52916 |1265 |29757 |
-ROW |52917 |1265 |29758 |
-ROW |52918 |1265 |29759 |
-ROW |52919 |1265 |29760 |
-ROW |52920 |1265 |29761 |
-ROW |52921 |1265 |29762 |
-ROW |52922 |1265 |29763 |
-ROW |52923 |1265 |29764 |
-ROW |52924 |1265 |29765 |
-ROW |52925 |1265 |29766 |
-ROW |52926 |1265 |29767 |
-ROW |52927 |1265 |29768 |
-ROW |52928 |1265 |29769 |
-ROW |52929 |1267 |29771 |
-ROW |52930 |1267 |29772 |
-ROW |52931 |1267 |29773 |
-ROW |52932 |1267 |29774 |
-ROW |52933 |1267 |29775 |
-ROW |52934 |1267 |29776 |
-ROW |52935 |1267 |29777 |
-ROW |52936 |1267 |29779 |
-ROW |52937 |1267 |29780 |
-ROW |52938 |1267 |29781 |
-ROW |52939 |1267 |29782 |
-ROW |52940 |1267 |29783 |
-ROW |52941 |1267 |29784 |
-ROW |52942 |1267 |30044 |
-ROW |52943 |1267 |30045 |
-ROW |52944 |1107 |28501 |
-ROW |52945 |1108 |28502 |
-ROW |52946 |1105 |28503 |
-ROW |52947 |1105 |28504 |
-ROW |52948 |1106 |28505 |
-ROW |52949 |1106 |28506 |
-ROW |52950 |1106 |28507 |
-ROW |52951 |1107 |28508 |
-ROW |52952 |1107 |28509 |
-ROW |52953 |1107 |28510 |
-ROW |52954 |1109 |28511 |
-ROW |52955 |1106 |28512 |
-ROW |52956 |1105 |28513 |
-ROW |52957 |1108 |28514 |
-ROW |52958 |1108 |28515 |
-ROW |52959 |1108 |28516 |
-ROW |52960 |1107 |28517 |
-ROW |52961 |1108 |28518 |
-ROW |52962 |1105 |28519 |
-ROW |52963 |1105 |28520 |
-ROW |52964 |1105 |28521 |
-ROW |52965 |1105 |28522 |
-ROW |52966 |1105 |28523 |
-ROW |52967 |1106 |28524 |
-ROW |52968 |1106 |28525 |
-ROW |52969 |1106 |28526 |
-ROW |52970 |1106 |28527 |
-ROW |52971 |1106 |28528 |
-ROW |52972 |1107 |28529 |
-ROW |52973 |1107 |28530 |
-ROW |52974 |1107 |28531 |
-ROW |52975 |1105 |28532 |
-ROW |52976 |446 |23644 |
-ROW |52977 |736 |26856 |
-ROW |52978 |736 |26857 |
-ROW |52979 |736 |26858 |
-ROW |52980 |736 |26859 |
-ROW |52981 |736 |26860 |
-ROW |52982 |736 |26861 |
-ROW |52983 |736 |26862 |
-ROW |52984 |736 |26863 |
-ROW |52985 |736 |26864 |
-ROW |52986 |736 |26865 |
-ROW |52987 |736 |26866 |
-ROW |52988 |736 |26867 |
-ROW |52989 |736 |26868 |
-ROW |52990 |736 |26869 |
-ROW |52991 |739 |26870 |
-ROW |52992 |738 |26871 |
-ROW |52993 |739 |26872 |
-ROW |52994 |739 |26873 |
-ROW |52995 |739 |26874 |
-ROW |52996 |738 |26875 |
-ROW |52997 |738 |26876 |
-ROW |52998 |736 |26877 |
-ROW |52999 |736 |26878 |
-ROW |53000 |737 |26879 |
-ROW |53001 |737 |26880 |
-ROW |53002 |737 |26881 |
-ROW |53003 |736 |26882 |
-ROW |53004 |736 |26883 |
-ROW |53005 |734 |26884 |
-ROW |53006 |734 |26885 |
-ROW |53007 |734 |26886 |
-ROW |53008 |734 |26887 |
-ROW |53009 |734 |26888 |
-ROW |53010 |734 |26889 |
-ROW |53011 |734 |26890 |
-ROW |53012 |732 |26891 |
-ROW |53013 |732 |26892 |
-ROW |53014 |733 |26893 |
-ROW |53015 |733 |26894 |
-ROW |53016 |734 |26895 |
-ROW |53017 |734 |26896 |
-ROW |53018 |734 |26897 |
-ROW |53019 |735 |26898 |
-ROW |53020 |735 |26899 |
-ROW |53021 |736 |26900 |
-ROW |53022 |736 |26901 |
-ROW |53023 |736 |26902 |
-ROW |53024 |735 |26903 |
-ROW |53025 |735 |26904 |
-ROW |53026 |734 |26905 |
-ROW |53027 |734 |26906 |
-ROW |53028 |735 |26907 |
-ROW |53029 |735 |26908 |
-ROW |53030 |735 |26909 |
-ROW |53031 |732 |26910 |
-ROW |53032 |447 |23645 |
-ROW |53033 |448 |23646 |
-ROW |53034 |449 |23647 |
-ROW |53035 |450 |23648 |
-ROW |53036 |451 |23649 |
-ROW |53037 |452 |23650 |
-ROW |53038 |453 |23651 |
-ROW |53039 |1111 |28585 |
-ROW |53040 |1111 |28586 |
-ROW |53041 |1111 |28587 |
-ROW |53042 |1111 |28588 |
-ROW |53043 |1111 |28589 |
-ROW |53044 |1111 |28590 |
-ROW |53045 |1111 |28591 |
-ROW |53046 |1111 |28592 |
-ROW |53047 |1111 |28593 |
-ROW |53048 |1111 |28594 |
-ROW |53049 |1111 |28595 |
-ROW |53050 |1111 |28596 |
-ROW |53051 |1111 |28597 |
-ROW |53052 |1111 |28598 |
-ROW |53053 |1111 |28599 |
-ROW |53054 |1111 |28600 |
-ROW |53055 |1111 |28601 |
-ROW |53056 |1111 |28602 |
-ROW |53057 |1111 |28603 |
-ROW |53058 |1111 |28604 |
-ROW |53059 |1111 |28605 |
-ROW |53060 |1111 |28606 |
-ROW |53061 |1111 |28607 |
-ROW |53062 |1111 |28608 |
-ROW |53063 |1111 |28609 |
-ROW |53064 |1111 |28610 |
-ROW |53065 |1111 |28611 |
-ROW |53066 |1111 |28612 |
-ROW |53067 |1111 |28613 |
-ROW |53068 |1111 |28614 |
-ROW |53069 |1111 |28615 |
-ROW |53070 |1111 |28616 |
-ROW |53071 |1110 |28539 |
-ROW |53072 |1110 |28540 |
-ROW |53073 |1110 |28541 |
-ROW |53074 |1110 |28542 |
-ROW |53075 |1110 |28543 |
-ROW |53076 |1110 |28544 |
-ROW |53077 |1110 |28545 |
-ROW |53078 |1110 |28546 |
-ROW |53079 |1110 |28547 |
-ROW |53080 |1110 |28548 |
-ROW |53081 |1110 |28549 |
-ROW |53082 |1110 |28550 |
-ROW |53083 |1110 |28551 |
-ROW |53084 |1110 |28552 |
-ROW |53085 |1110 |28553 |
-ROW |53086 |1110 |28554 |
-ROW |53087 |1110 |28555 |
-ROW |53088 |1110 |28556 |
-ROW |53089 |1110 |28557 |
-ROW |53090 |1110 |28558 |
-ROW |53091 |1110 |28559 |
-ROW |53092 |1110 |28560 |
-ROW |53093 |1110 |28561 |
-ROW |53094 |1110 |28562 |
-ROW |53095 |1110 |28563 |
-ROW |53096 |1110 |28564 |
-ROW |53097 |1110 |28565 |
-ROW |53098 |1110 |28566 |
-ROW |53099 |1110 |28567 |
-ROW |53100 |1110 |28568 |
-ROW |53101 |1110 |28569 |
-ROW |53102 |1110 |28570 |
-ROW |53103 |1110 |28571 |
-ROW |53104 |1110 |28572 |
-ROW |53105 |1110 |28573 |
-ROW |53106 |1110 |28574 |
-ROW |53107 |1110 |28575 |
-ROW |53108 |1110 |28576 |
-ROW |53109 |1110 |28577 |
-ROW |53110 |1110 |28578 |
-ROW |53111 |1110 |28579 |
-ROW |53112 |1110 |28580 |
-ROW |53113 |1110 |28581 |
-ROW |53114 |1110 |28582 |
-ROW |53115 |1110 |28583 |
-ROW |53116 |1110 |28584 |
-ROW |53117 |1110 |29821 |
-ROW |53118 |454 |23652 |
-ROW |53119 |455 |23653 |
-ROW |53120 |456 |23654 |
-ROW |53121 |356 |10067 |
-ROW |53122 |356 |10068 |
-ROW |53123 |356 |10069 |
-ROW |53124 |356 |10070 |
-ROW |53125 |356 |10071 |
-ROW |53126 |356 |10072 |
-ROW |53127 |356 |23340 |
-ROW |53128 |356 |23341 |
-ROW |53129 |356 |23342 |
-ROW |53130 |356 |23343 |
-ROW |53131 |356 |23344 |
-ROW |53132 |356 |23345 |
-ROW |53133 |356 |23346 |
-ROW |53134 |356 |23347 |
-ROW |53135 |356 |23348 |
-ROW |53136 |356 |23349 |
-ROW |53137 |356 |23350 |
-ROW |53138 |356 |23351 |
-ROW |53139 |356 |23352 |
-ROW |53140 |356 |23353 |
-ROW |53141 |356 |23354 |
-ROW |53142 |356 |23355 |
-ROW |53143 |356 |23356 |
-ROW |53144 |356 |23357 |
-ROW |53145 |356 |23358 |
-ROW |53146 |356 |23359 |
-ROW |53147 |356 |23360 |
-ROW |53148 |356 |25368 |
-ROW |53149 |356 |25369 |
-ROW |53150 |356 |28250 |
-ROW |53151 |356 |28251 |
-ROW |53152 |356 |28617 |
-ROW |53153 |356 |28618 |
-ROW |53154 |356 |28619 |
-ROW |53155 |179 |10061 |
-ROW |53156 |179 |10062 |
-ROW |53157 |179 |10063 |
-ROW |53158 |179 |10064 |
-ROW |53159 |179 |10065 |
-ROW |53160 |179 |10066 |
-ROW |53161 |179 |22183 |
-ROW |53162 |179 |22185 |
-ROW |53163 |179 |22187 |
-ROW |53164 |179 |22189 |
-ROW |53165 |179 |22191 |
-ROW |53166 |179 |22196 |
-ROW |53167 |179 |22199 |
-ROW |53168 |179 |22219 |
-ROW |53169 |179 |22396 |
-ROW |53170 |179 |22399 |
-ROW |53171 |179 |22400 |
-ROW |53172 |179 |22401 |
-ROW |53173 |179 |22402 |
-ROW |53174 |179 |22404 |
-ROW |53175 |179 |22406 |
-ROW |53176 |179 |22408 |
-ROW |53177 |179 |22412 |
-ROW |53178 |179 |22414 |
-ROW |53179 |179 |22416 |
-ROW |53180 |179 |22418 |
-ROW |53181 |179 |22420 |
-ROW |53182 |179 |22422 |
-ROW |53183 |179 |22424 |
-ROW |53184 |179 |22426 |
-ROW |53185 |179 |22430 |
-ROW |53186 |179 |22689 |
-ROW |53187 |179 |23171 |
-ROW |53188 |179 |23251 |
-ROW |53189 |179 |23634 |
-ROW |53190 |179 |23661 |
-ROW |53191 |179 |23663 |
-ROW |53192 |179 |25366 |
-ROW |53193 |179 |25370 |
-ROW |53194 |179 |25665 |
-ROW |53195 |179 |25666 |
-ROW |53196 |179 |28248 |
-ROW |53197 |179 |28533 |
-ROW |53198 |179 |28535 |
-ROW |53199 |179 |28537 |
-ROW |53200 |179 |29822 |
-ROW |53201 |345 |10073 |
-ROW |53202 |345 |10074 |
-ROW |53203 |345 |10075 |
-ROW |53204 |345 |10076 |
-ROW |53205 |345 |10077 |
-ROW |53206 |345 |10078 |
-ROW |53207 |345 |23252 |
-ROW |53208 |345 |23253 |
-ROW |53209 |345 |23255 |
-ROW |53210 |345 |23256 |
-ROW |53211 |345 |23257 |
-ROW |53212 |345 |23258 |
-ROW |53213 |345 |23259 |
-ROW |53214 |345 |23260 |
-ROW |53215 |345 |23261 |
-ROW |53216 |345 |23262 |
-ROW |53217 |345 |23264 |
-ROW |53218 |345 |23265 |
-ROW |53219 |345 |23266 |
-ROW |53220 |345 |23267 |
-ROW |53221 |345 |23268 |
-ROW |53222 |345 |23269 |
-ROW |53223 |345 |23270 |
-ROW |53224 |345 |23271 |
-ROW |53225 |345 |23272 |
-ROW |53226 |345 |23273 |
-ROW |53227 |345 |23274 |
-ROW |53228 |345 |23275 |
-ROW |53229 |345 |23276 |
-ROW |53230 |345 |23277 |
-ROW |53231 |345 |23328 |
-ROW |53232 |345 |23620 |
-ROW |53233 |345 |23625 |
-ROW |53234 |345 |23628 |
-ROW |53235 |345 |23635 |
-ROW |53236 |345 |23662 |
-ROW |53237 |345 |23664 |
-ROW |53238 |345 |25367 |
-ROW |53239 |345 |25371 |
-ROW |53240 |345 |25667 |
-ROW |53241 |345 |25668 |
-ROW |53242 |345 |28249 |
-ROW |53243 |345 |28534 |
-ROW |53244 |345 |28536 |
-ROW |53245 |345 |28538 |
-ROW |53246 |345 |29823 |
-ROW |53247 |280 |22917 |
-ROW |53248 |280 |22918 |
-ROW |53249 |273 |22920 |
-ROW |53250 |279 |22920 |
-ROW |53251 |273 |22921 |
-ROW |53252 |279 |22921 |
-ROW |53253 |273 |22922 |
-ROW |53254 |279 |22922 |
-ROW |53255 |273 |22923 |
-ROW |53256 |279 |22923 |
-ROW |53257 |273 |22924 |
-ROW |53258 |279 |22924 |
-ROW |53259 |275 |22933 |
-ROW |53260 |278 |22933 |
-ROW |53261 |275 |22934 |
-ROW |53262 |278 |22934 |
-ROW |53263 |275 |22938 |
-ROW |53264 |278 |22938 |
-ROW |53265 |275 |22939 |
-ROW |53266 |278 |22939 |
-ROW |53267 |278 |22940 |
-ROW |53268 |281 |22940 |
-ROW |53269 |281 |22941 |
-ROW |53270 |276 |22942 |
-ROW |53271 |276 |22943 |
-ROW |53272 |273 |23108 |
-ROW |53273 |331 |23108 |
-ROW |53274 |279 |23108 |
-ROW |53275 |273 |23109 |
-ROW |53276 |331 |23109 |
-ROW |53277 |279 |23109 |
-ROW |53278 |273 |23110 |
-ROW |53279 |279 |23110 |
-ROW |53280 |273 |23111 |
-ROW |53281 |331 |23111 |
-ROW |53282 |279 |23111 |
-ROW |53283 |273 |23112 |
-ROW |53284 |331 |23112 |
-ROW |53285 |279 |23112 |
-ROW |53286 |273 |23113 |
-ROW |53287 |279 |23113 |
-ROW |53288 |273 |23114 |
-ROW |53289 |279 |23114 |
-ROW |53290 |273 |23115 |
-ROW |53291 |279 |23115 |
-ROW |53292 |274 |23116 |
-ROW |53293 |279 |23116 |
-ROW |53294 |274 |23117 |
-ROW |53295 |279 |23117 |
-ROW |53296 |273 |23118 |
-ROW |53297 |331 |23118 |
-ROW |53298 |273 |23119 |
-ROW |53299 |279 |23119 |
-ROW |53300 |273 |23120 |
-ROW |53301 |279 |23120 |
-ROW |53302 |273 |23121 |
-ROW |53303 |279 |23121 |
-ROW |53304 |276 |23122 |
-ROW |53305 |279 |23122 |
-ROW |53306 |273 |23123 |
-ROW |53307 |279 |23123 |
-ROW |53308 |276 |23124 |
-ROW |53309 |276 |23125 |
-ROW |53310 |276 |23126 |
-ROW |53311 |276 |23127 |
-ROW |53312 |276 |23128 |
-ROW |53313 |276 |23129 |
-ROW |53314 |276 |23130 |
-ROW |53315 |276 |23131 |
-ROW |53316 |277 |22945 |
-ROW |53317 |277 |22946 |
-ROW |53318 |274 |22948 |
-ROW |53319 |274 |22949 |
-ROW |53320 |274 |22950 |
-ROW |53321 |274 |22951 |
-ROW |53322 |274 |22952 |
-ROW |53323 |268 |22875 |
-ROW |53324 |268 |22876 |
-ROW |53325 |270 |22877 |
-ROW |53326 |270 |22878 |
-ROW |53327 |265 |22879 |
-ROW |53328 |268 |22879 |
-ROW |53329 |263 |22880 |
-ROW |53330 |269 |22880 |
-ROW |53331 |263 |22881 |
-ROW |53332 |269 |22881 |
-ROW |53333 |263 |22882 |
-ROW |53334 |269 |22882 |
-ROW |53335 |263 |22883 |
-ROW |53336 |269 |22883 |
-ROW |53337 |263 |22884 |
-ROW |53338 |269 |22884 |
-ROW |53339 |263 |22885 |
-ROW |53340 |269 |22885 |
-ROW |53341 |263 |22886 |
-ROW |53342 |269 |22886 |
-ROW |53343 |263 |22888 |
-ROW |53344 |269 |22888 |
-ROW |53345 |263 |22891 |
-ROW |53346 |269 |22891 |
-ROW |53347 |263 |22892 |
-ROW |53348 |269 |22892 |
-ROW |53349 |265 |22893 |
-ROW |53350 |268 |22893 |
-ROW |53351 |265 |22894 |
-ROW |53352 |268 |22894 |
-ROW |53353 |266 |22895 |
-ROW |53354 |266 |22896 |
-ROW |53355 |266 |22897 |
-ROW |53356 |265 |22898 |
-ROW |53357 |268 |22898 |
-ROW |53358 |265 |22899 |
-ROW |53359 |268 |22899 |
-ROW |53360 |268 |22900 |
-ROW |53361 |271 |22900 |
-ROW |53362 |271 |22901 |
-ROW |53363 |266 |22902 |
-ROW |53364 |266 |22903 |
-ROW |53365 |264 |22908 |
-ROW |53366 |264 |22909 |
-ROW |53367 |264 |22910 |
-ROW |53368 |264 |22911 |
-ROW |53369 |264 |22912 |
-ROW |53370 |267 |23073 |
-ROW |53371 |267 |23074 |
-ROW |53372 |283 |22961 |
-ROW |53373 |289 |22961 |
-ROW |53374 |283 |22962 |
-ROW |53375 |289 |22962 |
-ROW |53376 |283 |22963 |
-ROW |53377 |289 |22963 |
-ROW |53378 |283 |22965 |
-ROW |53379 |289 |22965 |
-ROW |53380 |283 |22968 |
-ROW |53381 |289 |22968 |
-ROW |53382 |283 |22971 |
-ROW |53383 |289 |22971 |
-ROW |53384 |283 |22972 |
-ROW |53385 |289 |22972 |
-ROW |53386 |285 |22973 |
-ROW |53387 |288 |22973 |
-ROW |53388 |285 |22974 |
-ROW |53389 |288 |22974 |
-ROW |53390 |285 |22978 |
-ROW |53391 |288 |22978 |
-ROW |53392 |288 |22980 |
-ROW |53393 |291 |22980 |
-ROW |53394 |291 |22981 |
-ROW |53395 |286 |22982 |
-ROW |53396 |286 |22983 |
-ROW |53397 |287 |22985 |
-ROW |53398 |287 |22986 |
-ROW |53399 |284 |22988 |
-ROW |53400 |284 |22989 |
-ROW |53401 |284 |22990 |
-ROW |53402 |284 |22991 |
-ROW |53403 |284 |22992 |
-ROW |53404 |308 |23035 |
-ROW |53405 |308 |23036 |
-ROW |53406 |305 |23039 |
-ROW |53407 |308 |23039 |
-ROW |53408 |303 |23041 |
-ROW |53409 |309 |23041 |
-ROW |53410 |303 |23042 |
-ROW |53411 |309 |23042 |
-ROW |53412 |303 |23043 |
-ROW |53413 |309 |23043 |
-ROW |53414 |305 |23053 |
-ROW |53415 |308 |23053 |
-ROW |53416 |305 |23054 |
-ROW |53417 |308 |23054 |
-ROW |53418 |305 |23058 |
-ROW |53419 |308 |23058 |
-ROW |53420 |305 |23059 |
-ROW |53421 |308 |23059 |
-ROW |53422 |308 |23060 |
-ROW |53423 |311 |23060 |
-ROW |53424 |311 |23061 |
-ROW |53425 |306 |23062 |
-ROW |53426 |306 |23063 |
-ROW |53427 |307 |23077 |
-ROW |53428 |307 |23078 |
-ROW |53429 |304 |23068 |
-ROW |53430 |304 |23069 |
-ROW |53431 |304 |23070 |
-ROW |53432 |304 |23071 |
-ROW |53433 |304 |23072 |
-ROW |53434 |258 |22835 |
-ROW |53435 |258 |22836 |
-ROW |53436 |260 |22837 |
-ROW |53437 |260 |22838 |
-ROW |53438 |255 |22839 |
-ROW |53439 |258 |22839 |
-ROW |53440 |253 |22840 |
-ROW |53441 |259 |22840 |
-ROW |53442 |253 |22841 |
-ROW |53443 |259 |22841 |
-ROW |53444 |253 |22842 |
-ROW |53445 |259 |22842 |
-ROW |53446 |253 |22843 |
-ROW |53447 |259 |22843 |
-ROW |53448 |253 |22844 |
-ROW |53449 |259 |22844 |
-ROW |53450 |253 |22845 |
-ROW |53451 |259 |22845 |
-ROW |53452 |253 |22846 |
-ROW |53453 |259 |22846 |
-ROW |53454 |253 |22848 |
-ROW |53455 |259 |22848 |
-ROW |53456 |253 |22851 |
-ROW |53457 |259 |22851 |
-ROW |53458 |253 |22852 |
-ROW |53459 |259 |22852 |
-ROW |53460 |255 |22853 |
-ROW |53461 |258 |22853 |
-ROW |53462 |255 |22854 |
-ROW |53463 |258 |22854 |
-ROW |53464 |256 |22855 |
-ROW |53465 |256 |22856 |
-ROW |53466 |256 |22857 |
-ROW |53467 |255 |22858 |
-ROW |53468 |258 |22858 |
-ROW |53469 |255 |22859 |
-ROW |53470 |258 |22859 |
-ROW |53471 |258 |22860 |
-ROW |53472 |261 |22860 |
-ROW |53473 |261 |22861 |
-ROW |53474 |256 |22862 |
-ROW |53475 |256 |22863 |
-ROW |53476 |254 |22868 |
-ROW |53477 |254 |22869 |
-ROW |53478 |254 |22870 |
-ROW |53479 |254 |22871 |
-ROW |53480 |254 |22872 |
-ROW |53481 |257 |23075 |
-ROW |53482 |257 |23076 |
-ROW |53483 |298 |22996 |
-ROW |53484 |300 |22997 |
-ROW |53485 |300 |22998 |
-ROW |53486 |295 |22999 |
-ROW |53487 |298 |22999 |
-ROW |53488 |293 |23000 |
-ROW |53489 |299 |23000 |
-ROW |53490 |293 |23001 |
-ROW |53491 |299 |23001 |
-ROW |53492 |293 |23002 |
-ROW |53493 |299 |23002 |
-ROW |53494 |293 |23003 |
-ROW |53495 |299 |23003 |
-ROW |53496 |293 |23004 |
-ROW |53497 |299 |23004 |
-ROW |53498 |293 |23005 |
-ROW |53499 |299 |23005 |
-ROW |53500 |293 |23007 |
-ROW |53501 |299 |23007 |
-ROW |53502 |293 |23011 |
-ROW |53503 |299 |23011 |
-ROW |53504 |293 |23012 |
-ROW |53505 |299 |23012 |
-ROW |53506 |295 |23013 |
-ROW |53507 |298 |23013 |
-ROW |53508 |295 |23014 |
-ROW |53509 |298 |23014 |
-ROW |53510 |296 |23015 |
-ROW |53511 |296 |23016 |
-ROW |53512 |296 |23017 |
-ROW |53513 |295 |23018 |
-ROW |53514 |298 |23018 |
-ROW |53515 |295 |23019 |
-ROW |53516 |298 |23019 |
-ROW |53517 |298 |23020 |
-ROW |53518 |301 |23020 |
-ROW |53519 |301 |23021 |
-ROW |53520 |296 |23022 |
-ROW |53521 |296 |23023 |
-ROW |53522 |297 |23025 |
-ROW |53523 |297 |23026 |
-ROW |53524 |294 |23028 |
-ROW |53525 |294 |23029 |
-ROW |53526 |294 |23030 |
-ROW |53527 |294 |23031 |
-ROW |53528 |294 |23032 |
-ROW |53529 |743 |26925 |
-ROW |53530 |743 |26926 |
-ROW |53531 |741 |26927 |
-ROW |53532 |742 |26928 |
-ROW |53533 |743 |26929 |
-ROW |53534 |743 |26930 |
-ROW |53535 |743 |26931 |
-ROW |53536 |743 |26932 |
-ROW |53537 |745 |26933 |
-ROW |53538 |746 |26934 |
-ROW |53539 |744 |26935 |
-ROW |53540 |744 |26936 |
-ROW |53541 |746 |26937 |
-ROW |53542 |746 |26938 |
-ROW |53543 |746 |26939 |
-ROW |53544 |746 |26940 |
-ROW |53545 |746 |26941 |
-ROW |53546 |746 |26942 |
-ROW |53547 |745 |26943 |
-ROW |53548 |748 |26944 |
-ROW |53549 |748 |26945 |
-ROW |53550 |749 |26946 |
-ROW |53551 |755 |26947 |
-ROW |53552 |755 |26948 |
-ROW |53553 |755 |26949 |
-ROW |53554 |753 |26950 |
-ROW |53555 |757 |26951 |
-ROW |53556 |753 |26952 |
-ROW |53557 |757 |26953 |
-ROW |53558 |757 |26954 |
-ROW |53559 |755 |26955 |
-ROW |53560 |755 |26956 |
-ROW |53561 |750 |26957 |
-ROW |53562 |750 |26958 |
-ROW |53563 |750 |26959 |
-ROW |53564 |753 |26960 |
-ROW |53565 |753 |26961 |
-ROW |53566 |755 |26962 |
-ROW |53567 |755 |26963 |
-ROW |53568 |755 |26964 |
-ROW |53569 |753 |26965 |
-ROW |53570 |763 |26966 |
-ROW |53571 |763 |26967 |
-ROW |53572 |762 |26968 |
-ROW |53573 |762 |26969 |
-ROW |53574 |760 |26970 |
-ROW |53575 |760 |26971 |
-ROW |53576 |760 |26972 |
-ROW |53577 |760 |26973 |
-ROW |53578 |760 |26974 |
-ROW |53579 |761 |26975 |
-ROW |53580 |761 |26976 |
-ROW |53581 |758 |26977 |
-ROW |53582 |761 |26977 |
-ROW |53583 |760 |26978 |
-ROW |53584 |760 |26979 |
-ROW |53585 |758 |26980 |
-ROW |53586 |758 |26981 |
-ROW |53587 |761 |26981 |
-ROW |53588 |758 |26982 |
-ROW |53589 |761 |26982 |
-ROW |53590 |761 |26983 |
-ROW |53591 |761 |26984 |
-ROW |53592 |762 |26984 |
-ROW |53593 |758 |26985 |
-ROW |53594 |761 |26985 |
-ROW |53595 |760 |26986 |
-ROW |53596 |747 |26994 |
-ROW |53597 |754 |26995 |
-ROW |53598 |754 |26996 |
-ROW |53599 |754 |26997 |
-ROW |53600 |754 |26998 |
-ROW |53601 |751 |26999 |
-ROW |53602 |751 |27000 |
-ROW |53603 |751 |27001 |
-ROW |53604 |751 |27002 |
-ROW |53605 |752 |27003 |
-ROW |53606 |752 |27004 |
-ROW |53607 |752 |27005 |
-ROW |53608 |752 |27006 |
-ROW |53609 |759 |27007 |
-ROW |53610 |759 |27008 |
-ROW |53611 |759 |27009 |
-ROW |53612 |759 |27010 |
-ROW |53613 |1112 |28621 |
-ROW |53614 |1112 |28622 |
-ROW |53615 |1112 |28623 |
-ROW |53616 |1112 |28624 |
-ROW |53617 |1314 |30431 |
-ROW |53618 |1314 |30432 |
-ROW |53619 |1315 |30433 |
-ROW |53620 |1314 |30434 |
-ROW |53621 |1314 |30435 |
-ROW |53622 |1315 |30436 |
-ROW |53623 |1314 |30437 |
-ROW |53624 |1314 |30438 |
-ROW |53625 |1314 |30439 |
-ROW |53626 |1314 |30440 |
-ROW |53627 |1314 |30441 |
-ROW |53628 |1314 |30442 |
-ROW |53629 |1315 |30443 |
-ROW |53630 |1314 |30444 |
-ROW |53631 |1314 |30445 |
-ROW |53632 |1314 |30446 |
-ROW |53633 |1314 |30447 |
-ROW |53634 |1314 |30448 |
-ROW |53635 |1314 |30449 |
-ROW |53636 |1314 |30450 |
-ROW |53637 |1314 |30451 |
-ROW |53638 |1314 |30452 |
-ROW |53639 |1314 |30453 |
-ROW |53640 |1314 |30454 |
-ROW |53641 |1314 |30455 |
-ROW |53642 |1314 |30456 |
-ROW |53643 |1314 |30457 |
-ROW |53644 |1314 |30458 |
-ROW |53645 |1314 |30459 |
-ROW |53646 |1314 |30460 |
-ROW |53647 |1314 |30461 |
-ROW |53648 |1314 |30462 |
-ROW |53649 |1314 |30463 |
-ROW |53650 |1314 |30464 |
-ROW |53651 |1314 |30465 |
-ROW |53652 |1314 |30466 |
-ROW |53653 |1314 |30467 |
-ROW |53654 |1314 |30468 |
-ROW |53655 |1314 |30469 |
-ROW |53656 |1314 |30470 |
-ROW |53657 |1314 |30471 |
-ROW |53658 |1314 |30474 |
-ROW |53659 |1315 |30475 |
-ROW |53660 |1314 |30476 |
-ROW |53661 |1314 |30477 |
-ROW |53662 |1314 |30478 |
-ROW |53663 |1322 |30637 |
-ROW |53664 |1322 |30638 |
-ROW |53665 |1323 |30639 |
-ROW |53666 |1322 |30640 |
-ROW |53667 |1322 |30641 |
-ROW |53668 |1323 |30642 |
-ROW |53669 |1322 |30643 |
-ROW |53670 |1322 |30644 |
-ROW |53671 |1322 |30645 |
-ROW |53672 |1322 |30646 |
-ROW |53673 |1322 |30647 |
-ROW |53674 |1322 |30648 |
-ROW |53675 |1323 |30649 |
-ROW |53676 |1322 |30650 |
-ROW |53677 |1322 |30651 |
-ROW |53678 |1322 |30652 |
-ROW |53679 |1322 |30653 |
-ROW |53680 |1322 |30654 |
-ROW |53681 |1322 |30655 |
-ROW |53682 |1322 |30656 |
-ROW |53683 |1322 |30657 |
-ROW |53684 |1322 |30658 |
-ROW |53685 |1322 |30659 |
-ROW |53686 |1322 |30660 |
-ROW |53687 |1322 |30661 |
-ROW |53688 |1322 |30662 |
-ROW |53689 |1322 |30663 |
-ROW |53690 |1322 |30664 |
-ROW |53691 |1322 |30665 |
-ROW |53692 |1322 |30666 |
-ROW |53693 |1322 |30667 |
-ROW |53694 |1322 |30668 |
-ROW |53695 |1322 |30669 |
-ROW |53696 |1322 |30670 |
-ROW |53697 |1322 |30671 |
-ROW |53698 |1322 |30672 |
-ROW |53699 |1322 |30673 |
-ROW |53700 |1322 |30674 |
-ROW |53701 |1322 |30675 |
-ROW |53702 |1322 |30676 |
-ROW |53703 |1322 |30677 |
-ROW |53704 |1322 |30680 |
-ROW |53705 |1323 |30681 |
-ROW |53706 |1322 |30682 |
-ROW |53707 |1322 |30683 |
-ROW |53708 |1322 |30684 |
-ROW |53709 |1317 |30479 |
-ROW |53710 |1316 |30480 |
-ROW |53711 |1316 |30481 |
-ROW |53712 |1316 |30482 |
-ROW |53713 |1316 |30483 |
-ROW |53714 |1316 |30484 |
-ROW |53715 |1317 |30485 |
-ROW |53716 |1316 |30486 |
-ROW |53717 |1317 |30487 |
-ROW |53718 |1316 |30488 |
-ROW |53719 |1316 |30489 |
-ROW |53720 |1316 |30490 |
-ROW |53721 |1316 |30491 |
-ROW |53722 |1316 |30492 |
-ROW |53723 |1316 |30493 |
-ROW |53724 |1316 |30494 |
-ROW |53725 |1316 |30495 |
-ROW |53726 |1316 |30496 |
-ROW |53727 |1316 |30497 |
-ROW |53728 |1316 |30498 |
-ROW |53729 |1316 |30499 |
-ROW |53730 |1316 |30500 |
-ROW |53731 |1316 |30501 |
-ROW |53732 |1316 |30502 |
-ROW |53733 |1316 |30503 |
-ROW |53734 |1316 |30504 |
-ROW |53735 |1316 |30505 |
-ROW |53736 |1316 |30506 |
-ROW |53737 |1316 |30507 |
-ROW |53738 |1316 |30508 |
-ROW |53739 |1316 |30509 |
-ROW |53740 |1316 |30510 |
-ROW |53741 |1316 |30511 |
-ROW |53742 |1316 |30512 |
-ROW |53743 |1316 |30513 |
-ROW |53744 |1316 |30514 |
-ROW |53745 |1316 |30515 |
-ROW |53746 |1316 |30516 |
-ROW |53747 |1316 |30517 |
-ROW |53748 |1316 |30518 |
-ROW |53749 |1316 |30519 |
-ROW |53750 |1316 |30522 |
-ROW |53751 |1317 |30523 |
-ROW |53752 |1316 |30524 |
-ROW |53753 |1316 |30525 |
-ROW |53754 |1316 |30526 |
-ROW |53755 |1115 |28671 |
-ROW |53756 |1115 |28672 |
-ROW |53757 |1114 |28673 |
-ROW |53758 |1114 |28674 |
-ROW |53759 |1115 |28675 |
-ROW |53760 |1114 |28676 |
-ROW |53761 |1114 |28677 |
-ROW |53762 |1114 |28678 |
-ROW |53763 |1114 |28679 |
-ROW |53764 |1114 |28680 |
-ROW |53765 |1114 |28681 |
-ROW |53766 |1115 |28682 |
-ROW |53767 |1115 |28683 |
-ROW |53768 |1114 |28684 |
-ROW |53769 |1114 |28685 |
-ROW |53770 |1115 |28686 |
-ROW |53771 |1115 |28687 |
-ROW |53772 |1114 |28688 |
-ROW |53773 |1114 |28689 |
-ROW |53774 |1114 |28690 |
-ROW |53775 |1114 |28691 |
-ROW |53776 |1114 |28692 |
-ROW |53777 |1114 |28693 |
-ROW |53778 |1114 |28694 |
-ROW |53779 |1114 |28695 |
-ROW |53780 |1114 |28696 |
-ROW |53781 |1114 |28697 |
-ROW |53782 |1114 |28698 |
-ROW |53783 |1114 |28699 |
-ROW |53784 |1114 |28700 |
-ROW |53785 |1114 |28701 |
-ROW |53786 |1114 |28702 |
-ROW |53787 |1114 |28703 |
-ROW |53788 |1114 |28704 |
-ROW |53789 |1114 |28705 |
-ROW |53790 |1114 |28706 |
-ROW |53791 |1114 |28707 |
-ROW |53792 |1114 |28708 |
-ROW |53793 |1114 |28709 |
-ROW |53794 |1114 |28710 |
-ROW |53795 |1115 |28713 |
-ROW |53796 |1115 |28714 |
-ROW |53797 |1302 |30273 |
-ROW |53798 |1302 |30274 |
-ROW |53799 |1303 |30275 |
-ROW |53800 |1303 |30276 |
-ROW |53801 |1302 |30277 |
-ROW |53802 |1302 |30278 |
-ROW |53803 |1302 |30279 |
-ROW |53804 |1302 |30280 |
-ROW |53805 |1302 |30281 |
-ROW |53806 |1302 |30282 |
-ROW |53807 |1302 |30283 |
-ROW |53808 |1302 |30284 |
-ROW |53809 |1302 |30285 |
-ROW |53810 |1302 |30286 |
-ROW |53811 |1302 |30287 |
-ROW |53812 |1302 |30288 |
-ROW |53813 |1302 |30289 |
-ROW |53814 |1302 |30290 |
-ROW |53815 |1302 |30291 |
-ROW |53816 |1302 |30292 |
-ROW |53817 |1302 |30293 |
-ROW |53818 |1302 |30294 |
-ROW |53819 |1302 |30295 |
-ROW |53820 |1302 |30296 |
-ROW |53821 |1302 |30297 |
-ROW |53822 |1302 |30298 |
-ROW |53823 |1302 |30299 |
-ROW |53824 |1302 |30300 |
-ROW |53825 |1302 |30301 |
-ROW |53826 |1302 |30302 |
-ROW |53827 |1302 |30303 |
-ROW |53828 |1302 |30304 |
-ROW |53829 |1302 |30305 |
-ROW |53830 |1302 |30306 |
-ROW |53831 |1302 |30307 |
-ROW |53832 |1302 |30308 |
-ROW |53833 |1302 |30309 |
-ROW |53834 |1302 |30310 |
-ROW |53835 |1302 |30311 |
-ROW |53836 |1302 |30312 |
-ROW |53837 |1302 |30313 |
-ROW |53838 |1302 |30314 |
-ROW |53839 |1302 |30315 |
-ROW |53840 |1302 |30316 |
-ROW |53841 |1302 |30317 |
-ROW |53842 |1302 |30318 |
-ROW |53843 |1302 |30319 |
-ROW |53844 |1302 |30320 |
-ROW |53845 |1302 |30321 |
-ROW |53846 |1302 |30322 |
-ROW |53847 |1302 |30323 |
-ROW |53848 |1302 |30324 |
-ROW |53849 |1302 |30325 |
-ROW |53850 |1302 |30326 |
-ROW |53851 |1302 |30327 |
-ROW |53852 |1302 |30328 |
-ROW |53853 |1302 |30329 |
-ROW |53854 |1302 |30330 |
-ROW |53855 |1302 |30331 |
-ROW |53856 |1302 |30332 |
-ROW |53857 |1302 |30333 |
-ROW |53858 |1302 |30334 |
-ROW |53859 |1302 |30335 |
-ROW |53860 |1302 |30336 |
-ROW |53861 |1302 |30344 |
-ROW |53862 |1302 |30345 |
-ROW |53863 |1302 |30346 |
-ROW |53864 |1302 |30347 |
-ROW |53865 |1302 |30351 |
-ROW |53866 |1302 |30352 |
-ROW |53867 |1302 |30353 |
-ROW |53868 |1302 |30354 |
-ROW |53869 |1302 |30355 |
-ROW |53870 |1302 |30356 |
-ROW |53871 |1302 |30357 |
-ROW |53872 |1302 |30358 |
-ROW |53873 |1302 |30359 |
-ROW |53874 |1302 |30360 |
-ROW |53875 |1302 |30361 |
-ROW |53876 |1302 |30362 |
-ROW |53877 |1302 |30363 |
-ROW |53878 |1302 |30364 |
-ROW |53879 |1302 |30365 |
-ROW |53880 |1302 |30366 |
-ROW |53881 |1302 |30367 |
-ROW |53882 |1302 |30368 |
-ROW |53883 |1302 |30369 |
-ROW |53884 |1302 |30370 |
-ROW |53885 |1302 |30371 |
-ROW |53886 |1302 |30372 |
-ROW |53887 |1302 |30373 |
-ROW |53888 |1302 |30374 |
-ROW |53889 |1302 |30375 |
-ROW |53890 |1302 |30376 |
-ROW |53891 |1302 |30377 |
-ROW |53892 |1302 |30378 |
-ROW |53893 |1302 |30379 |
-ROW |53894 |1302 |30380 |
-ROW |53895 |1302 |30381 |
-ROW |53896 |1302 |30382 |
-ROW |53897 |1302 |30383 |
-ROW |53898 |1302 |30384 |
-ROW |53899 |1302 |30385 |
-ROW |53900 |1302 |30386 |
-ROW |53901 |1302 |30387 |
-ROW |53902 |1302 |30388 |
-ROW |53903 |1302 |30389 |
-ROW |53904 |1302 |30390 |
-ROW |53905 |1302 |30391 |
-ROW |53906 |1302 |30392 |
-ROW |53907 |1302 |30393 |
-ROW |53908 |1302 |30394 |
-ROW |53909 |1302 |30395 |
-ROW |53910 |1302 |30397 |
-ROW |53911 |1302 |30398 |
-ROW |53912 |1302 |30399 |
-ROW |53913 |1302 |30400 |
-ROW |53914 |1302 |30401 |
-ROW |53915 |1302 |30402 |
-ROW |53916 |1302 |30403 |
-ROW |53917 |1302 |30404 |
-ROW |53918 |780 |27065 |
-ROW |53919 |780 |27066 |
-ROW |53920 |780 |27067 |
-ROW |53921 |797 |27138 |
-ROW |53922 |797 |27139 |
-ROW |53923 |797 |27140 |
-ROW |53924 |799 |27149 |
-ROW |53925 |799 |27150 |
-ROW |53926 |799 |27151 |
-ROW |53927 |805 |27192 |
-ROW |53928 |805 |27193 |
-ROW |53929 |805 |27194 |
-ROW |53930 |813 |27225 |
-ROW |53931 |813 |27226 |
-ROW |53932 |813 |27227 |
-ROW |53933 |822 |27261 |
-ROW |53934 |822 |27262 |
-ROW |53935 |822 |27263 |
-ROW |53936 |825 |27282 |
-ROW |53937 |825 |27283 |
-ROW |53938 |825 |27284 |
-ROW |53939 |842 |27333 |
-ROW |53940 |842 |27334 |
-ROW |53941 |842 |27335 |
-ROW |53942 |847 |27365 |
-ROW |53943 |847 |27366 |
-ROW |53944 |847 |27367 |
-ROW |53945 |876 |27462 |
-ROW |53946 |876 |27463 |
-ROW |53947 |876 |27464 |
-ROW |53948 |885 |27496 |
-ROW |53949 |885 |27497 |
-ROW |53950 |885 |27498 |
-ROW |53951 |894 |27532 |
-ROW |53952 |894 |27533 |
-ROW |53953 |894 |27534 |
-ROW |53954 |903 |27568 |
-ROW |53955 |903 |27569 |
-ROW |53956 |903 |27570 |
-ROW |53957 |912 |27608 |
-ROW |53958 |912 |27609 |
-ROW |53959 |912 |27610 |
-ROW |53960 |915 |27631 |
-ROW |53961 |915 |27632 |
-ROW |53962 |915 |27633 |
-ROW |53963 |918 |27654 |
-ROW |53964 |918 |27655 |
-ROW |53965 |918 |27656 |
-ROW |53966 |936 |27734 |
-ROW |53967 |936 |27735 |
-ROW |53968 |936 |27736 |
-ROW |53969 |944 |27766 |
-ROW |53970 |944 |27767 |
-ROW |53971 |944 |27768 |
-ROW |53972 |951 |27800 |
-ROW |53973 |951 |27801 |
-ROW |53974 |951 |27802 |
-ROW |53975 |971 |27882 |
-ROW |53976 |971 |27883 |
-ROW |53977 |971 |27884 |
-ROW |53978 |979 |27919 |
-ROW |53979 |979 |27920 |
-ROW |53980 |979 |27921 |
-ROW |53981 |988 |27956 |
-ROW |53982 |988 |27957 |
-ROW |53983 |988 |27958 |
-ROW |53984 |994 |27986 |
-ROW |53985 |994 |27987 |
-ROW |53986 |994 |27988 |
-ROW |53987 |1000 |28015 |
-ROW |53988 |1000 |28016 |
-ROW |53989 |1000 |28017 |
-ROW |53990 |1030 |28130 |
-ROW |53991 |1030 |28131 |
-ROW |53992 |1030 |28132 |
-ROW |53993 |1043 |28185 |
-ROW |53994 |1043 |28186 |
-ROW |53995 |1043 |28187 |
-ROW |53996 |1055 |28233 |
-ROW |53997 |1055 |28234 |
-ROW |53998 |1055 |28235 |
-ROW |53999 |1060 |28282 |
-ROW |54000 |1060 |28283 |
-ROW |54001 |1060 |28284 |
-ROW |54002 |1070 |28330 |
-ROW |54003 |1070 |28331 |
-ROW |54004 |1070 |28332 |
-ROW |54005 |1079 |28377 |
-ROW |54006 |1079 |28378 |
-ROW |54007 |1079 |28379 |
-ROW |54008 |1088 |28426 |
-ROW |54009 |1088 |28427 |
-ROW |54010 |1088 |28428 |
-ROW |54011 |1095 |28454 |
-ROW |54012 |1095 |28455 |
-ROW |54013 |1095 |28456 |
-ROW |54014 |1102 |28482 |
-ROW |54015 |1102 |28483 |
-ROW |54016 |1102 |28484 |
-ROW |54017 |1127 |28957 |
-ROW |54018 |1127 |28958 |
-ROW |54019 |1127 |28959 |
-ROW |54020 |1136 |29050 |
-ROW |54021 |1136 |29051 |
-ROW |54022 |1136 |29052 |
-ROW |54023 |1271 |30046 |
-ROW |54024 |1271 |30047 |
-ROW |54025 |1271 |30048 |
-ROW |54026 |798 |27141 |
-ROW |54027 |797 |27143 |
-ROW |54028 |798 |27146 |
-ROW |54029 |797 |29824 |
-ROW |54030 |798 |29825 |
-ROW |54031 |798 |29826 |
-ROW |54032 |798 |29827 |
-ROW |54033 |798 |29828 |
-ROW |54034 |911 |27611 |
-ROW |54035 |911 |27615 |
-ROW |54036 |912 |27618 |
-ROW |54037 |999 |28018 |
-ROW |54038 |999 |28022 |
-ROW |54039 |1000 |28025 |
-ROW |54040 |1087 |28429 |
-ROW |54041 |1087 |28433 |
-ROW |54042 |1088 |28436 |
-ROW |54043 |912 |29829 |
-ROW |54044 |911 |29830 |
-ROW |54045 |911 |29831 |
-ROW |54046 |911 |29832 |
-ROW |54047 |911 |29833 |
-ROW |54048 |1000 |29834 |
-ROW |54049 |999 |29835 |
-ROW |54050 |999 |29836 |
-ROW |54051 |999 |29837 |
-ROW |54052 |999 |29838 |
-ROW |54053 |1088 |29839 |
-ROW |54054 |1087 |29840 |
-ROW |54055 |1087 |29841 |
-ROW |54056 |1087 |29842 |
-ROW |54057 |1087 |29843 |
-ROW |54058 |800 |27152 |
-ROW |54059 |799 |27154 |
-ROW |54060 |800 |27157 |
-ROW |54061 |799 |29844 |
-ROW |54062 |800 |29845 |
-ROW |54063 |800 |29846 |
-ROW |54064 |800 |29847 |
-ROW |54065 |800 |29848 |
-ROW |54066 |804 |27195 |
-ROW |54067 |804 |27199 |
-ROW |54068 |805 |27202 |
-ROW |54069 |812 |27228 |
-ROW |54070 |812 |27232 |
-ROW |54071 |813 |27235 |
-ROW |54072 |821 |27264 |
-ROW |54073 |821 |27268 |
-ROW |54074 |822 |27271 |
-ROW |54075 |824 |27285 |
-ROW |54076 |824 |27289 |
-ROW |54077 |825 |27292 |
-ROW |54078 |841 |27336 |
-ROW |54079 |841 |27340 |
-ROW |54080 |842 |27343 |
-ROW |54081 |846 |27368 |
-ROW |54082 |846 |27372 |
-ROW |54083 |847 |27375 |
-ROW |54084 |875 |27465 |
-ROW |54085 |875 |27469 |
-ROW |54086 |876 |27472 |
-ROW |54087 |884 |27499 |
-ROW |54088 |884 |27503 |
-ROW |54089 |885 |27506 |
-ROW |54090 |893 |27535 |
-ROW |54091 |893 |27539 |
-ROW |54092 |894 |27542 |
-ROW |54093 |902 |27571 |
-ROW |54094 |902 |27575 |
-ROW |54095 |903 |27578 |
-ROW |54096 |914 |27634 |
-ROW |54097 |914 |27638 |
-ROW |54098 |915 |27641 |
-ROW |54099 |917 |27657 |
-ROW |54100 |917 |27661 |
-ROW |54101 |918 |27664 |
-ROW |54102 |935 |27737 |
-ROW |54103 |935 |27741 |
-ROW |54104 |936 |27744 |
-ROW |54105 |943 |27769 |
-ROW |54106 |943 |27773 |
-ROW |54107 |944 |27776 |
-ROW |54108 |950 |27803 |
-ROW |54109 |950 |27807 |
-ROW |54110 |951 |27810 |
-ROW |54111 |970 |27885 |
-ROW |54112 |970 |27889 |
-ROW |54113 |971 |27892 |
-ROW |54114 |978 |27922 |
-ROW |54115 |978 |27926 |
-ROW |54116 |979 |27929 |
-ROW |54117 |987 |27959 |
-ROW |54118 |987 |27963 |
-ROW |54119 |988 |27966 |
-ROW |54120 |993 |27989 |
-ROW |54121 |993 |27993 |
-ROW |54122 |994 |27996 |
-ROW |54123 |1029 |28133 |
-ROW |54124 |1029 |28137 |
-ROW |54125 |1030 |28140 |
-ROW |54126 |1042 |28188 |
-ROW |54127 |1042 |28192 |
-ROW |54128 |1043 |28195 |
-ROW |54129 |1054 |28236 |
-ROW |54130 |1054 |28240 |
-ROW |54131 |1055 |28243 |
-ROW |54132 |1059 |28285 |
-ROW |54133 |1059 |28289 |
-ROW |54134 |1060 |28292 |
-ROW |54135 |1069 |28333 |
-ROW |54136 |1069 |28337 |
-ROW |54137 |1070 |28340 |
-ROW |54138 |1078 |28380 |
-ROW |54139 |1078 |28384 |
-ROW |54140 |1079 |28387 |
-ROW |54141 |1094 |28457 |
-ROW |54142 |1094 |28461 |
-ROW |54143 |1095 |28464 |
-ROW |54144 |1101 |28485 |
-ROW |54145 |1101 |28489 |
-ROW |54146 |1102 |28492 |
-ROW |54147 |1126 |28960 |
-ROW |54148 |1126 |28964 |
-ROW |54149 |1127 |28967 |
-ROW |54150 |1135 |29053 |
-ROW |54151 |1135 |29057 |
-ROW |54152 |1136 |29060 |
-ROW |54153 |805 |29849 |
-ROW |54154 |804 |29850 |
-ROW |54155 |804 |29851 |
-ROW |54156 |804 |29852 |
-ROW |54157 |804 |29853 |
-ROW |54158 |813 |29854 |
-ROW |54159 |812 |29855 |
-ROW |54160 |812 |29856 |
-ROW |54161 |812 |29857 |
-ROW |54162 |812 |29858 |
-ROW |54163 |822 |29859 |
-ROW |54164 |821 |29860 |
-ROW |54165 |821 |29861 |
-ROW |54166 |821 |29862 |
-ROW |54167 |821 |29863 |
-ROW |54168 |825 |29864 |
-ROW |54169 |824 |29865 |
-ROW |54170 |824 |29866 |
-ROW |54171 |824 |29867 |
-ROW |54172 |824 |29868 |
-ROW |54173 |842 |29869 |
-ROW |54174 |841 |29870 |
-ROW |54175 |841 |29871 |
-ROW |54176 |841 |29872 |
-ROW |54177 |841 |29873 |
-ROW |54178 |847 |29874 |
-ROW |54179 |846 |29875 |
-ROW |54180 |846 |29876 |
-ROW |54181 |846 |29877 |
-ROW |54182 |846 |29878 |
-ROW |54183 |876 |29879 |
-ROW |54184 |875 |29880 |
-ROW |54185 |875 |29881 |
-ROW |54186 |875 |29882 |
-ROW |54187 |875 |29883 |
-ROW |54188 |885 |29884 |
-ROW |54189 |884 |29885 |
-ROW |54190 |884 |29886 |
-ROW |54191 |884 |29887 |
-ROW |54192 |884 |29888 |
-ROW |54193 |894 |29889 |
-ROW |54194 |893 |29890 |
-ROW |54195 |893 |29891 |
-ROW |54196 |893 |29892 |
-ROW |54197 |893 |29893 |
-ROW |54198 |903 |29894 |
-ROW |54199 |902 |29895 |
-ROW |54200 |902 |29896 |
-ROW |54201 |902 |29897 |
-ROW |54202 |902 |29898 |
-ROW |54203 |915 |29899 |
-ROW |54204 |914 |29900 |
-ROW |54205 |914 |29901 |
-ROW |54206 |914 |29902 |
-ROW |54207 |914 |29903 |
-ROW |54208 |918 |29904 |
-ROW |54209 |917 |29905 |
-ROW |54210 |917 |29906 |
-ROW |54211 |917 |29907 |
-ROW |54212 |917 |29908 |
-ROW |54213 |936 |29909 |
-ROW |54214 |935 |29910 |
-ROW |54215 |935 |29911 |
-ROW |54216 |935 |29912 |
-ROW |54217 |935 |29913 |
-ROW |54218 |944 |29914 |
-ROW |54219 |943 |29915 |
-ROW |54220 |943 |29916 |
-ROW |54221 |943 |29917 |
-ROW |54222 |943 |29918 |
-ROW |54223 |951 |29919 |
-ROW |54224 |950 |29920 |
-ROW |54225 |950 |29921 |
-ROW |54226 |950 |29922 |
-ROW |54227 |950 |29923 |
-ROW |54228 |971 |29924 |
-ROW |54229 |970 |29925 |
-ROW |54230 |970 |29926 |
-ROW |54231 |970 |29927 |
-ROW |54232 |970 |29928 |
-ROW |54233 |979 |29929 |
-ROW |54234 |978 |29930 |
-ROW |54235 |978 |29931 |
-ROW |54236 |978 |29932 |
-ROW |54237 |978 |29933 |
-ROW |54238 |988 |29934 |
-ROW |54239 |987 |29935 |
-ROW |54240 |987 |29936 |
-ROW |54241 |987 |29937 |
-ROW |54242 |987 |29938 |
-ROW |54243 |994 |29939 |
-ROW |54244 |993 |29940 |
-ROW |54245 |993 |29941 |
-ROW |54246 |993 |29942 |
-ROW |54247 |993 |29943 |
-ROW |54248 |1030 |29944 |
-ROW |54249 |1029 |29945 |
-ROW |54250 |1029 |29946 |
-ROW |54251 |1029 |29947 |
-ROW |54252 |1029 |29948 |
-ROW |54253 |1043 |29949 |
-ROW |54254 |1042 |29950 |
-ROW |54255 |1042 |29951 |
-ROW |54256 |1042 |29952 |
-ROW |54257 |1042 |29953 |
-ROW |54258 |1055 |29954 |
-ROW |54259 |1054 |29955 |
-ROW |54260 |1054 |29956 |
-ROW |54261 |1054 |29957 |
-ROW |54262 |1054 |29958 |
-ROW |54263 |1060 |29959 |
-ROW |54264 |1059 |29960 |
-ROW |54265 |1059 |29961 |
-ROW |54266 |1059 |29962 |
-ROW |54267 |1059 |29963 |
-ROW |54268 |1070 |29964 |
-ROW |54269 |1069 |29965 |
-ROW |54270 |1069 |29966 |
-ROW |54271 |1069 |29967 |
-ROW |54272 |1069 |29968 |
-ROW |54273 |1079 |29969 |
-ROW |54274 |1078 |29970 |
-ROW |54275 |1078 |29971 |
-ROW |54276 |1078 |29972 |
-ROW |54277 |1078 |29973 |
-ROW |54278 |1095 |29974 |
-ROW |54279 |1094 |29975 |
-ROW |54280 |1094 |29976 |
-ROW |54281 |1094 |29977 |
-ROW |54282 |1094 |29978 |
-ROW |54283 |1102 |29979 |
-ROW |54284 |1101 |29980 |
-ROW |54285 |1101 |29981 |
-ROW |54286 |1101 |29982 |
-ROW |54287 |1101 |29983 |
-ROW |54288 |1127 |29984 |
-ROW |54289 |1126 |29985 |
-ROW |54290 |1126 |29986 |
-ROW |54291 |1126 |29987 |
-ROW |54292 |1126 |29988 |
-ROW |54293 |1136 |29989 |
-ROW |54294 |1135 |29990 |
-ROW |54295 |1135 |29991 |
-ROW |54296 |1135 |29992 |
-ROW |54297 |1135 |29993 |
-ROW |54298 |1270 |30049 |
-ROW |54299 |1270 |30050 |
-ROW |54300 |1270 |30051 |
-ROW |54301 |1270 |30052 |
-ROW |54302 |1270 |30053 |
-ROW |54303 |1270 |30054 |
-ROW |54304 |1271 |30055 |
-ROW |54305 |1271 |30056 |
-ROW |54306 |1304 |30405 |
-ROW |54307 |1307 |30406 |
-ROW |54308 |1305 |30411 |
-ROW |54309 |1305 |30412 |
-ROW |54310 |1305 |30413 |
-ROW |54311 |1308 |30417 |
-ROW |54312 |1308 |30418 |
-ROW |54313 |1308 |30419 |
-ROW |54314 |1283 |30142 |
-ROW |54315 |1286 |30143 |
-ROW |54316 |1289 |30144 |
-ROW |54317 |1292 |30145 |
-ROW |54318 |1295 |30146 |
-ROW |54319 |1284 |30157 |
-ROW |54320 |1284 |30158 |
-ROW |54321 |1284 |30159 |
-ROW |54322 |1287 |30163 |
-ROW |54323 |1287 |30164 |
-ROW |54324 |1287 |30165 |
-ROW |54325 |1290 |30169 |
-ROW |54326 |1290 |30170 |
-ROW |54327 |1290 |30171 |
-ROW |54328 |1293 |30175 |
-ROW |54329 |1293 |30176 |
-ROW |54330 |1293 |30177 |
-ROW |54331 |1296 |30181 |
-ROW |54332 |1296 |30182 |
-ROW |54333 |1296 |30183 |
-ROW |54334 |1221 |22231 |
-ROW |54335 |1221 |22232 |
-ROW |54336 |1221 |23318 |
-ROW |54337 |1222 |29544 |
-ROW |54338 |1223 |29545 |
-ROW |54339 |1223 |29546 |
-ROW |54340 |1224 |29547 |
-ROW |54341 |1225 |10020 |
-ROW |54342 |1225 |10059 |
-ROW |54343 |1226 |22833 |
-ROW |54344 |1226 |22834 |
-ROW |54345 |1228 |22873 |
-ROW |54346 |1228 |22874 |
-ROW |54347 |1230 |22913 |
-ROW |54348 |1230 |22914 |
-ROW |54349 |1232 |22953 |
-ROW |54350 |1232 |22954 |
-ROW |54351 |1234 |22993 |
-ROW |54352 |1234 |22994 |
-ROW |54353 |1236 |23033 |
-ROW |54354 |1236 |23034 |
-ROW |54355 |1238 |23160 |
-ROW |54356 |1238 |23161 |
-ROW |54357 |1225 |23319 |
-ROW |54358 |1226 |23320 |
-ROW |54359 |1228 |23321 |
-ROW |54360 |1230 |23322 |
-ROW |54361 |1232 |23323 |
-ROW |54362 |1234 |23324 |
-ROW |54363 |1236 |23325 |
-ROW |54364 |1238 |23326 |
-ROW |54365 |1161 |29548 |
-ROW |54366 |1227 |29549 |
-ROW |54367 |1229 |29550 |
-ROW |54368 |1231 |29551 |
-ROW |54369 |1233 |29552 |
-ROW |54370 |1235 |29553 |
-ROW |54371 |1237 |29554 |
-ROW |54372 |1219 |29555 |
-ROW |54373 |1241 |29558 |
-ROW |54374 |1242 |29559 |
-ROW |54375 |1241 |29560 |
-ROW |54376 |1269 |29995 |
-ROW |54377 |1192 |29996 |
-ROW |54378 |1269 |29997 |
-ROW |54379 |1240 |23287 |
-ROW |54380 |1240 |23288 |
-ROW |54381 |1240 |23327 |
-ROW |54382 |1171 |29557 |
-ROW |54383 |810 |27203 |
-ROW |54384 |807 |27207 |
-ROW |54385 |806 |27208 |
-ROW |54386 |810 |30086 |
-ROW |54387 |807 |30087 |
-ROW |54388 |807 |30088 |
-ROW |54389 |807 |30089 |
-ROW |54390 |808 |27212 |
-ROW |54391 |809 |27213 |
-ROW |54392 |810 |27214 |
-ROW |54393 |1279 |30091 |
-ROW |54394 |1279 |30092 |
-ROW |54395 |1068 |28323 |
-ROW |54396 |1068 |28324 |
-ROW |54397 |1062 |28325 |
-ROW |54398 |1062 |28326 |
-ROW |54399 |1064 |28327 |
-ROW |54400 |1064 |28328 |
-ROW |54401 |1066 |28329 |
-ROW |54402 |819 |27236 |
-ROW |54403 |819 |27237 |
-ROW |54404 |813 |27238 |
-ROW |54405 |814 |27240 |
-ROW |54406 |815 |30093 |
-ROW |54407 |816 |27246 |
-ROW |54408 |816 |27247 |
-ROW |54409 |817 |27248 |
-ROW |54410 |818 |27249 |
-ROW |54411 |818 |27250 |
-ROW |54412 |826 |27294 |
-ROW |54413 |831 |27295 |
-ROW |54414 |831 |27296 |
-ROW |54415 |835 |27297 |
-ROW |54416 |827 |30094 |
-ROW |54417 |836 |27299 |
-ROW |54418 |838 |27301 |
-ROW |54419 |837 |30095 |
-ROW |54420 |839 |30096 |
-ROW |54421 |829 |27312 |
-ROW |54422 |830 |27313 |
-ROW |54423 |828 |27314 |
-ROW |54424 |828 |27315 |
-ROW |54425 |833 |27316 |
-ROW |54426 |834 |27317 |
-ROW |54427 |832 |27318 |
-ROW |54428 |835 |27319 |
-ROW |54429 |835 |27320 |
-ROW |54430 |851 |27376 |
-ROW |54431 |852 |27378 |
-ROW |54432 |852 |27379 |
-ROW |54433 |852 |30097 |
-ROW |54434 |869 |27380 |
-ROW |54435 |870 |27382 |
-ROW |54436 |870 |27383 |
-ROW |54437 |858 |27385 |
-ROW |54438 |858 |27386 |
-ROW |54439 |1048 |28209 |
-ROW |54440 |1048 |28210 |
-ROW |54441 |858 |30098 |
-ROW |54442 |870 |30099 |
-ROW |54443 |1048 |30100 |
-ROW |54444 |848 |27415 |
-ROW |54445 |848 |27416 |
-ROW |54446 |849 |27417 |
-ROW |54447 |852 |27419 |
-ROW |54448 |853 |27420 |
-ROW |54449 |853 |27421 |
-ROW |54450 |854 |27422 |
-ROW |54451 |855 |27423 |
-ROW |54452 |1056 |28246 |
-ROW |54453 |848 |30101 |
-ROW |54454 |856 |27425 |
-ROW |54455 |856 |27426 |
-ROW |54456 |857 |27427 |
-ROW |54457 |858 |27428 |
-ROW |54458 |859 |27429 |
-ROW |54459 |859 |27430 |
-ROW |54460 |860 |27431 |
-ROW |54461 |861 |27432 |
-ROW |54462 |868 |27443 |
-ROW |54463 |868 |27444 |
-ROW |54464 |870 |27445 |
-ROW |54465 |871 |27446 |
-ROW |54466 |871 |27447 |
-ROW |54467 |872 |27448 |
-ROW |54468 |873 |27449 |
-ROW |54469 |1048 |28208 |
-ROW |54470 |1049 |28215 |
-ROW |54471 |1050 |28216 |
-ROW |54472 |1051 |28217 |
-ROW |54473 |1051 |28218 |
-ROW |54474 |1052 |28220 |
-ROW |54475 |1052 |28222 |
-ROW |54476 |1057 |28247 |
-ROW |54477 |856 |30102 |
-ROW |54478 |868 |30103 |
-ROW |54479 |1052 |30104 |
-ROW |54480 |877 |27478 |
-ROW |54481 |880 |27479 |
-ROW |54482 |881 |27480 |
-ROW |54483 |882 |27481 |
-ROW |54484 |882 |27482 |
-ROW |54485 |882 |27483 |
-ROW |54486 |882 |27484 |
-ROW |54487 |879 |27485 |
-ROW |54488 |878 |30105 |
-ROW |54489 |891 |27508 |
-ROW |54490 |891 |27509 |
-ROW |54491 |891 |27510 |
-ROW |54492 |886 |27511 |
-ROW |54493 |891 |30106 |
-ROW |54494 |888 |27517 |
-ROW |54495 |890 |27518 |
-ROW |54496 |889 |27519 |
-ROW |54497 |887 |30107 |
-ROW |54498 |900 |27543 |
-ROW |54499 |900 |27544 |
-ROW |54500 |900 |27545 |
-ROW |54501 |900 |27546 |
-ROW |54502 |895 |27547 |
-ROW |54503 |897 |27553 |
-ROW |54504 |899 |27554 |
-ROW |54505 |898 |27555 |
-ROW |54506 |896 |30108 |
-ROW |54507 |909 |27579 |
-ROW |54508 |909 |27580 |
-ROW |54509 |909 |27582 |
-ROW |54510 |909 |27583 |
-ROW |54511 |906 |27584 |
-ROW |54512 |906 |27585 |
-ROW |54513 |904 |27586 |
-ROW |54514 |909 |30109 |
-ROW |54515 |905 |27591 |
-ROW |54516 |907 |27593 |
-ROW |54517 |908 |27594 |
-ROW |54518 |908 |27595 |
-ROW |54519 |905 |30110 |
-ROW |54520 |905 |30111 |
-ROW |54521 |919 |27671 |
-ROW |54522 |921 |27672 |
-ROW |54523 |922 |27673 |
-ROW |54524 |923 |27674 |
-ROW |54525 |924 |27675 |
-ROW |54526 |924 |27676 |
-ROW |54527 |924 |27677 |
-ROW |54528 |924 |27678 |
-ROW |54529 |924 |27679 |
-ROW |54530 |920 |30112 |
-ROW |54531 |1036 |28141 |
-ROW |54532 |1036 |28142 |
-ROW |54533 |1031 |28143 |
-ROW |54534 |1033 |28150 |
-ROW |54535 |1032 |28153 |
-ROW |54536 |1034 |28154 |
-ROW |54537 |1035 |28155 |
-ROW |54538 |1033 |28156 |
-ROW |54539 |1036 |28157 |
-ROW |54540 |1036 |28158 |
-ROW |54541 |1032 |30113 |
-ROW |54542 |1032 |30114 |
-ROW |54543 |1032 |30115 |
-ROW |54544 |941 |27748 |
-ROW |54545 |941 |27749 |
-ROW |54546 |941 |27750 |
-ROW |54547 |939 |27751 |
-ROW |54548 |937 |27753 |
-ROW |54549 |941 |27754 |
-ROW |54550 |940 |27755 |
-ROW |54551 |938 |30116 |
-ROW |54552 |948 |27777 |
-ROW |54553 |948 |27778 |
-ROW |54554 |945 |27783 |
-ROW |54555 |945 |27784 |
-ROW |54556 |948 |27785 |
-ROW |54557 |946 |27786 |
-ROW |54558 |947 |27787 |
-ROW |54559 |957 |27812 |
-ROW |54560 |957 |27813 |
-ROW |54561 |951 |27814 |
-ROW |54562 |957 |30117 |
-ROW |54563 |954 |27821 |
-ROW |54564 |956 |27822 |
-ROW |54565 |955 |27823 |
-ROW |54566 |952 |28894 |
-ROW |54567 |953 |30118 |
-ROW |54568 |1044 |28200 |
-ROW |54569 |1044 |28201 |
-ROW |54570 |1045 |28202 |
-ROW |54571 |1045 |28203 |
-ROW |54572 |1047 |28204 |
-ROW |54573 |1047 |28205 |
-ROW |54574 |1046 |28206 |
-ROW |54575 |976 |27893 |
-ROW |54576 |976 |27894 |
-ROW |54577 |976 |27895 |
-ROW |54578 |974 |27897 |
-ROW |54579 |973 |27898 |
-ROW |54580 |973 |27900 |
-ROW |54581 |976 |30119 |
-ROW |54582 |973 |30120 |
-ROW |54583 |972 |27904 |
-ROW |54584 |974 |27905 |
-ROW |54585 |975 |27906 |
-ROW |54586 |975 |27907 |
-ROW |54587 |975 |27908 |
-ROW |54588 |985 |27930 |
-ROW |54589 |985 |27931 |
-ROW |54590 |981 |27935 |
-ROW |54591 |980 |27936 |
-ROW |54592 |985 |30121 |
-ROW |54593 |981 |30122 |
-ROW |54594 |981 |30123 |
-ROW |54595 |982 |27940 |
-ROW |54596 |982 |27941 |
-ROW |54597 |984 |27942 |
-ROW |54598 |983 |27943 |
-ROW |54599 |991 |27967 |
-ROW |54600 |991 |27968 |
-ROW |54601 |991 |27970 |
-ROW |54602 |991 |27971 |
-ROW |54603 |990 |27972 |
-ROW |54604 |990 |27973 |
-ROW |54605 |989 |27975 |
-ROW |54606 |1282 |30124 |
-ROW |54607 |991 |30125 |
-ROW |54608 |990 |30126 |
-ROW |54609 |1280 |30129 |
-ROW |54610 |1281 |30130 |
-ROW |54611 |997 |27997 |
-ROW |54612 |997 |27998 |
-ROW |54613 |997 |27999 |
-ROW |54614 |997 |28000 |
-ROW |54615 |995 |28003 |
-ROW |54616 |996 |30131 |
-ROW |54617 |1003 |28026 |
-ROW |54618 |1003 |28027 |
-ROW |54619 |1001 |28031 |
-ROW |54620 |1002 |30132 |
-ROW |54621 |1002 |30133 |
-ROW |54622 |1002 |30134 |
-ROW |54623 |1002 |30135 |
-ROW |54624 |1002 |30136 |
-ROW |54625 |1142 |29087 |
-ROW |54626 |1142 |29088 |
-ROW |54627 |1142 |29089 |
-ROW |54628 |1142 |29090 |
-ROW |54629 |1142 |29091 |
-ROW |54630 |1142 |29092 |
-ROW |54631 |1142 |29093 |
-ROW |54632 |1142 |29094 |
-ROW |54633 |1142 |29095 |
-ROW |54634 |1142 |29096 |
-ROW |54635 |1142 |29097 |
-ROW |54636 |1142 |29098 |
-ROW |54637 |1142 |29099 |
-ROW |54638 |1142 |29100 |
-ROW |54639 |1142 |29101 |
-ROW |54640 |1142 |29102 |
-ROW |54641 |1144 |29103 |
-ROW |54642 |1144 |29104 |
-ROW |54643 |1144 |29105 |
-ROW |54644 |1144 |29106 |
-ROW |54645 |1144 |29107 |
-ROW |54646 |1144 |29108 |
-ROW |54647 |1146 |29109 |
-ROW |54648 |1151 |29110 |
-ROW |54649 |1148 |29111 |
-ROW |54650 |1148 |29112 |
-ROW |54651 |1148 |29113 |
-ROW |54652 |1148 |29114 |
-ROW |54653 |1148 |29115 |
-ROW |54654 |1148 |29116 |
-ROW |54655 |1148 |29117 |
-ROW |54656 |1148 |29118 |
-ROW |54657 |1148 |29119 |
-ROW |54658 |1150 |29120 |
-ROW |54659 |1149 |29121 |
-ROW |54660 |1149 |29122 |
-ROW |54661 |1149 |29123 |
-ROW |54662 |1152 |29124 |
-ROW |54663 |1152 |29125 |
-ROW |54664 |1152 |29126 |
-ROW |54665 |1152 |29127 |
-ROW |54666 |1152 |29128 |
-ROW |54667 |1152 |29129 |
-ROW |54668 |1152 |29130 |
-ROW |54669 |1152 |29131 |
-ROW |54670 |1152 |29132 |
-ROW |54671 |1152 |29133 |
-ROW |54672 |1152 |29134 |
-ROW |54673 |1152 |29135 |
-ROW |54674 |1152 |29136 |
-ROW |54675 |1152 |29137 |
-ROW |54676 |1152 |29138 |
-ROW |54677 |1152 |29139 |
-ROW |54678 |1154 |29140 |
-ROW |54679 |1154 |29141 |
-ROW |54680 |1154 |29142 |
-ROW |54681 |1154 |29143 |
-ROW |54682 |1154 |29144 |
-ROW |54683 |1154 |29145 |
-ROW |54684 |1156 |29146 |
-ROW |54685 |1161 |29147 |
-ROW |54686 |1158 |29148 |
-ROW |54687 |1158 |29149 |
-ROW |54688 |1158 |29150 |
-ROW |54689 |1158 |29151 |
-ROW |54690 |1158 |29152 |
-ROW |54691 |1158 |29153 |
-ROW |54692 |1158 |29154 |
-ROW |54693 |1158 |29155 |
-ROW |54694 |1158 |29156 |
-ROW |54695 |1160 |29157 |
-ROW |54696 |1159 |29158 |
-ROW |54697 |1159 |29159 |
-ROW |54698 |1159 |29160 |
-ROW |54699 |1162 |29161 |
-ROW |54700 |1162 |29162 |
-ROW |54701 |1162 |29163 |
-ROW |54702 |1162 |29164 |
-ROW |54703 |1162 |29165 |
-ROW |54704 |1162 |29166 |
-ROW |54705 |1162 |29167 |
-ROW |54706 |1162 |29168 |
-ROW |54707 |1162 |29169 |
-ROW |54708 |1162 |29170 |
-ROW |54709 |1162 |29171 |
-ROW |54710 |1162 |29172 |
-ROW |54711 |1162 |29173 |
-ROW |54712 |1162 |29174 |
-ROW |54713 |1162 |29175 |
-ROW |54714 |1162 |29176 |
-ROW |54715 |1164 |29177 |
-ROW |54716 |1164 |29178 |
-ROW |54717 |1164 |29179 |
-ROW |54718 |1164 |29180 |
-ROW |54719 |1164 |29181 |
-ROW |54720 |1164 |29182 |
-ROW |54721 |1166 |29183 |
-ROW |54722 |1171 |29184 |
-ROW |54723 |1168 |29185 |
-ROW |54724 |1168 |29186 |
-ROW |54725 |1168 |29187 |
-ROW |54726 |1168 |29188 |
-ROW |54727 |1168 |29189 |
-ROW |54728 |1168 |29190 |
-ROW |54729 |1168 |29191 |
-ROW |54730 |1168 |29192 |
-ROW |54731 |1168 |29193 |
-ROW |54732 |1170 |29194 |
-ROW |54733 |1169 |29195 |
-ROW |54734 |1169 |29196 |
-ROW |54735 |1169 |29197 |
-ROW |54736 |1142 |29198 |
-ROW |54737 |1152 |29199 |
-ROW |54738 |1162 |29200 |
-ROW |54739 |1146 |29254 |
-ROW |54740 |1146 |29255 |
-ROW |54741 |1156 |29260 |
-ROW |54742 |1156 |29261 |
-ROW |54743 |1166 |29266 |
-ROW |54744 |1166 |29267 |
-ROW |54745 |1173 |29273 |
-ROW |54746 |1173 |29274 |
-ROW |54747 |1173 |29275 |
-ROW |54748 |1173 |29276 |
-ROW |54749 |1173 |29277 |
-ROW |54750 |1173 |29278 |
-ROW |54751 |1173 |29279 |
-ROW |54752 |1173 |29280 |
-ROW |54753 |1173 |29281 |
-ROW |54754 |1173 |29282 |
-ROW |54755 |1173 |29283 |
-ROW |54756 |1173 |29284 |
-ROW |54757 |1173 |29285 |
-ROW |54758 |1173 |29286 |
-ROW |54759 |1173 |29287 |
-ROW |54760 |1173 |29288 |
-ROW |54761 |1175 |29289 |
-ROW |54762 |1175 |29290 |
-ROW |54763 |1175 |29291 |
-ROW |54764 |1175 |29292 |
-ROW |54765 |1175 |29293 |
-ROW |54766 |1175 |29294 |
-ROW |54767 |1177 |29295 |
-ROW |54768 |1182 |29296 |
-ROW |54769 |1179 |29297 |
-ROW |54770 |1179 |29298 |
-ROW |54771 |1179 |29299 |
-ROW |54772 |1179 |29300 |
-ROW |54773 |1179 |29301 |
-ROW |54774 |1179 |29302 |
-ROW |54775 |1179 |29303 |
-ROW |54776 |1179 |29304 |
-ROW |54777 |1179 |29305 |
-ROW |54778 |1181 |29306 |
-ROW |54779 |1180 |29307 |
-ROW |54780 |1180 |29308 |
-ROW |54781 |1180 |29309 |
-ROW |54782 |1183 |29310 |
-ROW |54783 |1183 |29311 |
-ROW |54784 |1183 |29312 |
-ROW |54785 |1183 |29313 |
-ROW |54786 |1183 |29314 |
-ROW |54787 |1183 |29315 |
-ROW |54788 |1183 |29316 |
-ROW |54789 |1183 |29317 |
-ROW |54790 |1183 |29318 |
-ROW |54791 |1183 |29319 |
-ROW |54792 |1183 |29320 |
-ROW |54793 |1183 |29321 |
-ROW |54794 |1183 |29322 |
-ROW |54795 |1183 |29323 |
-ROW |54796 |1183 |29324 |
-ROW |54797 |1183 |29325 |
-ROW |54798 |1185 |29326 |
-ROW |54799 |1185 |29327 |
-ROW |54800 |1185 |29328 |
-ROW |54801 |1185 |29329 |
-ROW |54802 |1185 |29330 |
-ROW |54803 |1185 |29331 |
-ROW |54804 |1187 |29332 |
-ROW |54805 |1192 |29333 |
-ROW |54806 |1189 |29334 |
-ROW |54807 |1189 |29335 |
-ROW |54808 |1189 |29336 |
-ROW |54809 |1189 |29337 |
-ROW |54810 |1189 |29338 |
-ROW |54811 |1189 |29339 |
-ROW |54812 |1189 |29340 |
-ROW |54813 |1189 |29341 |
-ROW |54814 |1189 |29342 |
-ROW |54815 |1191 |29343 |
-ROW |54816 |1190 |29344 |
-ROW |54817 |1190 |29345 |
-ROW |54818 |1190 |29346 |
-ROW |54819 |1173 |29347 |
-ROW |54820 |1183 |29348 |
-ROW |54821 |1177 |29385 |
-ROW |54822 |1177 |29386 |
-ROW |54823 |1187 |29391 |
-ROW |54824 |1187 |29392 |
-ROW |54825 |1201 |29395 |
-ROW |54826 |1196 |29396 |
-ROW |54827 |1196 |29397 |
-ROW |54828 |1194 |29398 |
-ROW |54829 |1193 |29399 |
-ROW |54830 |1196 |29400 |
-ROW |54831 |1196 |29401 |
-ROW |54832 |1196 |29402 |
-ROW |54833 |1196 |29403 |
-ROW |54834 |1194 |29404 |
-ROW |54835 |1193 |29405 |
-ROW |54836 |1193 |29406 |
-ROW |54837 |1193 |29407 |
-ROW |54838 |1193 |29408 |
-ROW |54839 |1193 |29409 |
-ROW |54840 |1193 |29410 |
-ROW |54841 |1193 |29411 |
-ROW |54842 |1193 |29412 |
-ROW |54843 |1193 |29413 |
-ROW |54844 |1194 |29414 |
-ROW |54845 |1197 |29415 |
-ROW |54846 |1193 |29416 |
-ROW |54847 |1193 |29417 |
-ROW |54848 |1193 |29418 |
-ROW |54849 |1193 |29419 |
-ROW |54850 |1193 |29420 |
-ROW |54851 |1199 |29421 |
-ROW |54852 |1195 |29422 |
-ROW |54853 |1194 |29423 |
-ROW |54854 |1194 |29424 |
-ROW |54855 |1194 |29425 |
-ROW |54856 |1193 |29426 |
-ROW |54857 |1193 |29427 |
-ROW |54858 |1195 |29428 |
-ROW |54859 |1201 |29450 |
-ROW |54860 |1201 |29451 |
-ROW |54861 |1128 |28978 |
-ROW |54862 |1128 |28979 |
-ROW |54863 |1128 |28980 |
-ROW |54864 |1128 |28981 |
-ROW |54865 |1128 |28982 |
-ROW |54866 |1128 |28983 |
-ROW |54867 |1128 |28984 |
-ROW |54868 |1128 |28985 |
-ROW |54869 |1128 |28986 |
-ROW |54870 |1130 |28987 |
-ROW |54871 |1130 |28988 |
-ROW |54872 |1130 |28989 |
-ROW |54873 |1130 |28990 |
-ROW |54874 |1130 |28991 |
-ROW |54875 |1130 |28992 |
-ROW |54876 |1132 |28993 |
-ROW |54877 |1132 |28994 |
-ROW |54878 |1132 |28995 |
-ROW |54879 |1132 |28996 |
-ROW |54880 |1132 |28997 |
-ROW |54881 |1132 |28998 |
-ROW |54882 |1132 |28999 |
-ROW |54883 |1132 |29000 |
-ROW |54884 |1132 |29001 |
-ROW |54885 |1134 |29002 |
-ROW |54886 |1134 |29003 |
-ROW |54887 |1134 |29004 |
-ROW |54888 |1134 |29005 |
-ROW |54889 |1134 |29006 |
-ROW |54890 |1134 |29007 |
-ROW |54891 |1130 |29017 |
-ROW |54892 |1130 |29018 |
-ROW |54893 |1130 |29019 |
-ROW |54894 |1130 |29020 |
-ROW |54895 |1130 |29021 |
-ROW |54896 |1130 |29022 |
-ROW |54897 |1130 |29023 |
-ROW |54898 |1130 |29024 |
-ROW |54899 |1130 |29025 |
-ROW |54900 |1130 |29026 |
-ROW |54901 |1134 |29034 |
-ROW |54902 |1134 |29035 |
-ROW |54903 |1134 |29036 |
-ROW |54904 |1134 |29037 |
-ROW |54905 |1134 |29038 |
-ROW |54906 |1134 |29039 |
-ROW |54907 |1134 |29040 |
-ROW |54908 |1134 |29041 |
-ROW |54909 |1134 |29042 |
-ROW |54910 |1134 |29043 |
-ROW |54911 |1130 |29048 |
-ROW |54912 |1134 |29049 |
-ROW |54913 |1202 |29454 |
-ROW |54914 |1202 |29455 |
-ROW |54915 |1202 |29456 |
-ROW |54916 |1202 |29457 |
-ROW |54917 |1202 |29458 |
-ROW |54918 |1202 |29459 |
-ROW |54919 |1203 |29460 |
-ROW |54920 |1203 |29461 |
-ROW |54921 |1203 |29462 |
-ROW |54922 |1203 |29463 |
-ROW |54923 |1203 |29464 |
-ROW |54924 |1203 |29465 |
-ROW |54925 |1203 |29466 |
-ROW |54926 |1203 |29467 |
-ROW |54927 |1203 |29468 |
-ROW |54928 |1203 |29469 |
-ROW |54929 |1203 |29470 |
-ROW |54930 |1206 |29471 |
-ROW |54931 |1209 |29472 |
-ROW |54932 |1207 |29473 |
-ROW |54933 |1207 |29474 |
-ROW |54934 |1207 |29475 |
-ROW |54935 |1207 |29476 |
-ROW |54936 |1207 |29477 |
-ROW |54937 |1208 |29478 |
-ROW |54938 |1211 |29479 |
-ROW |54939 |1202 |30137 |
-ROW |54940 |1212 |29480 |
-ROW |54941 |1212 |29481 |
-ROW |54942 |1212 |29482 |
-ROW |54943 |1212 |29483 |
-ROW |54944 |1212 |29484 |
-ROW |54945 |1212 |29485 |
-ROW |54946 |1213 |29486 |
-ROW |54947 |1213 |29487 |
-ROW |54948 |1213 |29488 |
-ROW |54949 |1213 |29489 |
-ROW |54950 |1213 |29490 |
-ROW |54951 |1213 |29491 |
-ROW |54952 |1213 |29492 |
-ROW |54953 |1213 |29493 |
-ROW |54954 |1213 |29494 |
-ROW |54955 |1213 |29495 |
-ROW |54956 |1213 |29496 |
-ROW |54957 |1216 |29497 |
-ROW |54958 |1219 |29498 |
-ROW |54959 |1217 |29499 |
-ROW |54960 |1217 |29500 |
-ROW |54961 |1217 |29501 |
-ROW |54962 |1217 |29502 |
-ROW |54963 |1217 |29503 |
-ROW |54964 |1218 |29504 |
-ROW |54965 |1216 |29505 |
-ROW |54966 |1212 |30138 |
-ROW |54967 |1310 |30425 |
-ROW |54968 |1311 |30426 |
-ROW |54969 |1243 |29561 |
-ROW |54970 |1243 |29562 |
-ROW |54971 |1243 |29563 |
-ROW |54972 |1243 |29564 |
-ROW |54973 |1243 |29565 |
-ROW |54974 |1243 |29566 |
-ROW |54975 |1244 |29567 |
-ROW |54976 |1244 |29568 |
-ROW |54977 |1244 |29569 |
-ROW |54978 |1244 |29570 |
-ROW |54979 |1244 |29571 |
-ROW |54980 |1244 |29572 |
-ROW |54981 |1244 |29573 |
-ROW |54982 |1244 |29574 |
-ROW |54983 |1244 |29575 |
-ROW |54984 |1244 |29576 |
-ROW |54985 |1244 |29577 |
-ROW |54986 |1247 |29578 |
-ROW |54987 |1250 |29579 |
-ROW |54988 |1248 |29580 |
-ROW |54989 |1248 |29581 |
-ROW |54990 |1248 |29582 |
-ROW |54991 |1248 |29583 |
-ROW |54992 |1248 |29584 |
-ROW |54993 |1249 |29585 |
-ROW |54994 |1252 |29586 |
-ROW |54995 |1243 |30139 |
-ROW |54996 |1253 |29587 |
-ROW |54997 |1253 |29588 |
-ROW |54998 |1253 |29589 |
-ROW |54999 |1253 |29590 |
-ROW |55000 |1253 |29591 |
-ROW |55001 |1253 |29592 |
-ROW |55002 |1254 |29593 |
-ROW |55003 |1254 |29594 |
-ROW |55004 |1254 |29595 |
-ROW |55005 |1254 |29596 |
-ROW |55006 |1254 |29597 |
-ROW |55007 |1254 |29598 |
-ROW |55008 |1254 |29599 |
-ROW |55009 |1254 |29600 |
-ROW |55010 |1254 |29601 |
-ROW |55011 |1254 |29602 |
-ROW |55012 |1254 |29603 |
-ROW |55013 |1257 |29604 |
-ROW |55014 |1242 |29605 |
-ROW |55015 |1258 |29606 |
-ROW |55016 |1258 |29607 |
-ROW |55017 |1258 |29608 |
-ROW |55018 |1258 |29609 |
-ROW |55019 |1258 |29610 |
-ROW |55020 |1259 |29611 |
-ROW |55021 |1257 |29612 |
-ROW |55022 |1253 |30140 |
-ROW |55023 |1312 |30429 |
-ROW |55024 |1313 |30430 |
-ROW |55025 |1325 |30685 |
-ROW |55026 |1277 |30066 |
-ROW |55027 |1277 |30067 |
-ROW |55028 |1277 |30068 |
-ROW |55029 |1277 |30069 |
-ROW |55030 |1277 |30070 |
-ROW |55031 |1276 |30071 |
-ROW |55032 |1271 |30072 |
-ROW |55033 |1274 |30073 |
-ROW |55034 |1274 |30074 |
-ROW |55035 |1273 |30075 |
-ROW |55036 |1275 |30076 |
-ROW |55037 |1275 |30077 |
-ROW |55038 |1275 |30078 |
-ROW |55039 |1275 |30079 |
-ROW |55040 |1278 |30080 |
-ROW |55041 |1278 |30081 |
-ROW |55042 |1278 |30082 |
-ROW |55043 |1272 |30083 |
-ROW |55044 |1272 |30084 |
-ROW |55045 |1272 |30085 |
-ROW |55046 |1070 |28341 |
-ROW |55047 |1073 |28342 |
-ROW |55048 |1073 |28344 |
-ROW |55049 |1073 |28345 |
-ROW |55050 |1073 |30141 |
-ROW |55051 |1076 |28354 |
-ROW |55052 |1076 |28355 |
-ROW |55053 |1076 |28356 |
-ROW |55054 |1076 |28357 |
-ROW |55055 |1075 |28358 |
-ROW |55056 |1072 |28359 |
-ROW |55057 |1072 |28360 |
-ROW |55058 |1074 |28361 |
-ROW |55059 |1074 |28362 |
-ROW |55060 |1074 |28363 |
-ROW |55061 |1074 |28364 |
-ROW |55062 |1074 |28365 |
-ROW |55063 |1074 |28366 |
-ROW |55064 |1074 |28367 |
-ROW |55065 |1077 |28368 |
-ROW |55066 |1077 |28369 |
-ROW |55067 |1077 |28370 |
-ROW |55068 |1077 |28371 |
-ROW |55069 |1077 |28372 |
-ROW |55070 |1077 |28373 |
-ROW |55071 |1071 |28374 |
-ROW |55072 |1071 |28375 |
-ROW |55073 |1071 |28376 |
-ROW |55074 |1085 |28388 |
-ROW |55075 |1082 |28390 |
-ROW |55076 |1082 |28391 |
-ROW |55077 |1079 |29994 |
-ROW |55078 |1085 |28404 |
-ROW |55079 |1085 |28405 |
-ROW |55080 |1085 |28406 |
-ROW |55081 |1085 |28407 |
-ROW |55082 |1085 |28408 |
-ROW |55083 |1085 |28409 |
-ROW |55084 |1085 |28410 |
-ROW |55085 |1084 |28411 |
-ROW |55086 |1081 |28412 |
-ROW |55087 |1080 |28413 |
-ROW |55088 |1080 |28414 |
-ROW |55089 |1080 |28415 |
-ROW |55090 |1080 |28416 |
-ROW |55091 |1083 |28417 |
-ROW |55092 |1083 |28418 |
-ROW |55093 |1083 |28419 |
-ROW |55094 |1083 |28420 |
-ROW |55095 |1083 |28421 |
-ROW |55096 |1083 |28422 |
-ROW |55097 |1086 |28423 |
-ROW |55098 |1086 |28424 |
-ROW |55099 |1086 |28425 |
-ROW |55100 |1088 |28437 |
-ROW |55101 |1090 |28438 |
-ROW |55102 |1090 |28439 |
-ROW |55103 |1093 |28446 |
-ROW |55104 |1093 |28447 |
-ROW |55105 |1093 |28448 |
-ROW |55106 |1092 |28449 |
-ROW |55107 |1089 |28450 |
-ROW |55108 |1089 |28451 |
-ROW |55109 |1091 |28452 |
-ROW |55110 |1091 |28453 |
-ROW |55111 |1095 |28465 |
-ROW |55112 |1097 |28466 |
-ROW |55113 |1097 |28467 |
-ROW |55114 |1100 |28474 |
-ROW |55115 |1100 |28475 |
-ROW |55116 |1100 |28476 |
-ROW |55117 |1099 |28477 |
-ROW |55118 |1096 |28478 |
-ROW |55119 |1096 |28479 |
-ROW |55120 |1098 |28480 |
-ROW |55121 |1098 |28481 |
-ROW |55122 |1104 |28495 |
-ROW |55123 |1103 |28496 |
+ROW |55124 |1117 |28742 |
+ROW |55125 |1116 |28743 |
+ROW |55126 |1116 |28744 |
+ROW |55127 |1116 |28745 |
+ROW |55128 |1116 |28746 |
+ROW |55129 |1116 |28747 |
+ROW |55130 |1116 |28748 |
+ROW |55131 |1116 |28749 |
+ROW |55132 |1116 |28750 |
+ROW |55133 |1116 |28751 |
+ROW |55134 |1116 |28752 |
+ROW |55135 |1116 |28753 |
+ROW |55136 |1116 |28754 |
+ROW |55137 |1116 |28755 |
+ROW |55138 |1116 |28756 |
+ROW |55139 |1116 |28757 |
+ROW |55140 |1116 |28758 |
+ROW |55141 |1116 |28759 |
+ROW |55142 |1116 |28760 |
+ROW |55143 |1116 |28761 |
+ROW |55144 |1116 |28762 |
+ROW |55145 |1116 |28763 |
+ROW |55146 |1116 |28764 |
+ROW |55147 |1116 |28765 |
+ROW |55148 |1116 |28766 |
+ROW |55149 |1116 |28767 |
+ROW |55150 |1116 |28769 |
+ROW |55151 |1116 |28770 |
+ROW |55152 |1116 |28771 |
+ROW |55153 |1116 |28772 |
+ROW |55154 |1116 |28773 |
+ROW |55155 |1116 |28774 |
+ROW |55156 |1119 |28775 |
+ROW |55157 |1118 |28776 |
+ROW |55158 |1118 |28777 |
+ROW |55159 |1118 |28778 |
+ROW |55160 |1118 |28779 |
+ROW |55161 |1118 |28780 |
+ROW |55162 |1118 |28781 |
+ROW |55163 |1118 |28782 |
+ROW |55164 |1118 |28783 |
+ROW |55165 |1118 |28784 |
+ROW |55166 |1118 |28785 |
+ROW |55167 |1118 |28786 |
+ROW |55168 |1118 |28787 |
+ROW |55169 |1118 |28788 |
+ROW |55170 |1118 |28789 |
+ROW |55171 |1118 |28790 |
+ROW |55172 |1118 |28791 |
+ROW |55173 |1118 |28792 |
+ROW |55174 |1118 |28793 |
+ROW |55175 |1118 |28794 |
+ROW |55176 |1118 |28795 |
+ROW |55177 |1118 |28796 |
+ROW |55178 |1118 |28798 |
+ROW |55179 |1118 |28799 |
+ROW |55180 |1118 |28800 |
+ROW |55181 |1118 |28801 |
+ROW |55182 |1118 |28802 |
+ROW |55183 |1118 |28803 |
+ROW |55184 |1319 |30527 |
+ROW |55185 |1319 |30528 |
+ROW |55186 |1319 |30529 |
+ROW |55187 |1318 |30530 |
+ROW |55188 |1319 |30531 |
+ROW |55189 |1318 |30532 |
+ROW |55190 |1318 |30533 |
+ROW |55191 |1318 |30534 |
+ROW |55192 |1318 |30535 |
+ROW |55193 |1318 |30536 |
+ROW |55194 |1318 |30537 |
+ROW |55195 |1318 |30538 |
+ROW |55196 |1318 |30539 |
+ROW |55197 |1318 |30540 |
+ROW |55198 |1318 |30541 |
+ROW |55199 |1318 |30542 |
+ROW |55200 |1318 |30543 |
+ROW |55201 |1318 |30544 |
+ROW |55202 |1318 |30545 |
+ROW |55203 |1318 |30546 |
+ROW |55204 |1318 |30547 |
+ROW |55205 |1318 |30548 |
+ROW |55206 |1318 |30549 |
+ROW |55207 |1318 |30550 |
+ROW |55208 |1318 |30551 |
+ROW |55209 |1318 |30552 |
+ROW |55210 |1318 |30553 |
+ROW |55211 |1318 |30554 |
+ROW |55212 |1318 |30555 |
+ROW |55213 |1318 |30556 |
+ROW |55214 |1318 |30557 |
+ROW |55215 |1318 |30558 |
+ROW |55216 |1318 |30559 |
+ROW |55217 |1318 |30560 |
+ROW |55218 |1318 |30561 |
+ROW |55219 |1318 |30562 |
+ROW |55220 |1318 |30563 |
+ROW |55221 |1318 |30564 |
+ROW |55222 |1318 |30565 |
+ROW |55223 |1318 |30566 |
+ROW |55224 |1318 |30567 |
+ROW |55225 |1318 |30568 |
+ROW |55226 |1318 |30569 |
+ROW |55227 |1318 |30570 |
+ROW |55228 |1298 |30187 |
+ROW |55229 |1298 |30188 |
+ROW |55230 |1299 |30189 |
+ROW |55231 |1299 |30190 |
+ROW |55232 |1298 |30191 |
+ROW |55233 |1298 |30192 |
+ROW |55234 |1301 |30230 |
+ROW |55235 |1301 |30231 |
+ROW |55236 |1300 |30232 |
+ROW |55237 |1300 |30233 |
+ROW |55238 |1300 |30234 |
+ROW |55239 |1300 |30235 |
+ROW |55240 |1320 |30611 |
+ROW |55241 |1321 |30612 |
+ROW |55242 |1320 |30613 |
+ROW |55243 |1320 |30614 |
+ROW |55244 |1320 |30615 |
+ROW |55245 |1320 |30616 |
+ROW |55246 |1320 |30617 |
+ROW |55247 |1320 |30618 |
+ROW |55248 |1320 |30619 |
+ROW |55249 |1320 |30620 |
+ROW |55250 |1320 |30621 |
+ROW |55251 |1320 |30622 |
+ROW |55252 |1320 |30623 |
+ROW |55253 |1320 |30624 |
+ROW |55254 |1320 |30625 |
+ROW |55255 |1320 |30626 |
+ROW |55256 |1320 |30627 |
+ROW |55257 |1320 |30628 |
+ROW |55258 |1320 |30629 |
+ROW |55259 |1320 |30630 |
+ROW |55260 |1320 |30631 |
+ROW |55261 |1320 |30632 |
+ROW |55262 |1320 |30633 |
+ROW |55263 |1320 |30634 |
+ROW |55264 |1320 |30635 |
+ROW |55265 |1320 |30636 |
+ROW |55266 |1121 |28804 |
+ROW |55267 |1120 |28805 |
+ROW |55268 |1120 |28806 |
+ROW |55269 |1120 |28807 |
+ROW |55270 |1120 |28808 |
+ROW |55271 |1120 |28809 |
+ROW |55272 |1120 |28810 |
+ROW |55273 |1120 |28811 |
+ROW |55274 |1120 |28812 |
+ROW |55275 |1120 |28813 |
+ROW |55276 |1120 |28814 |
+ROW |55277 |1120 |28815 |
+ROW |55278 |1120 |28816 |
+ROW |55279 |1120 |28817 |
+ROW |55280 |1120 |28818 |
+ROW |55281 |1120 |28819 |
+ROW |55282 |1120 |28820 |
+ROW |55283 |1123 |28821 |
+ROW |55284 |1122 |28822 |
+ROW |55285 |1122 |28823 |
+ROW |55286 |1122 |28824 |
+ROW |55287 |1122 |28825 |
+ROW |55288 |1122 |28826 |
+ROW |55289 |1122 |28827 |
+ROW |55290 |1122 |28828 |
+ROW |55291 |1122 |28829 |
+ROW |55292 |1122 |28830 |
+ROW |55293 |1122 |28831 |
+ROW |55294 |1122 |28832 |
+ROW |55295 |1122 |28833 |
+ROW |55296 |1264 |29653 |
+ROW |55297 |1264 |29654 |
+ROW |55298 |1263 |29655 |
+ROW |55299 |1263 |29656 |
+ROW |55300 |1263 |29657 |
+ROW |55301 |1263 |29658 |
+ROW |55302 |1263 |29659 |
+ROW |55303 |1263 |29660 |
+ROW |55304 |1264 |29661 |
+ROW |55305 |1263 |29662 |
+ROW |55306 |1262 |29998 |
+ROW |55307 |1262 |29999 |
+ROW |55308 |1263 |29687 |
+ROW |55309 |1263 |29688 |
+ROW |55310 |1263 |29691 |
+ROW |55311 |1263 |29692 |
+ROW |55312 |1263 |29693 |
+ROW |55313 |1263 |29694 |
+ROW |55314 |1263 |29695 |
+ROW |55315 |1263 |29696 |
+ROW |55316 |1263 |29697 |
+ROW |55317 |1263 |29698 |
+ROW |55318 |1263 |29699 |
+ROW |55319 |1263 |29700 |
+ROW |55320 |1263 |29701 |
+ROW |55321 |1261 |30000 |
+ROW |55322 |1261 |30001 |
+ROW |55323 |1261 |30002 |
+ROW |55324 |1261 |30003 |
+ROW |55325 |1261 |30004 |
+ROW |55326 |1261 |30005 |
+ROW |55327 |1261 |30006 |
+ROW |55328 |1261 |30007 |
+ROW |55329 |1261 |30008 |
+ROW |55330 |1261 |30009 |
+ROW |55331 |1261 |30010 |
+ROW |55332 |1261 |30011 |
+ROW |55333 |1261 |30012 |
+ROW |55334 |1261 |30013 |
+ROW |55335 |1261 |30014 |
+ROW |55336 |1261 |30015 |
+ROW |55337 |1261 |30016 |
+ROW |55338 |1261 |30017 |
+ROW |55339 |1261 |30018 |
+ROW |55340 |1261 |30019 |
+ROW |55341 |1261 |30020 |
+ROW |55342 |1261 |30021 |
+ROW |55343 |1261 |30022 |
+ROW |55344 |1261 |30023 |
+ROW |55345 |1263 |30024 |
+ROW |55346 |1263 |30025 |
+ROW |55347 |1266 |29738 |
+ROW |55348 |1266 |29739 |
+ROW |55349 |1268 |29741 |
+ROW |55350 |1267 |29742 |
+ROW |55351 |1267 |29743 |
+ROW |55352 |1267 |29744 |
+ROW |55353 |1268 |29745 |
+ROW |55354 |1268 |30043 |
+ROW |55355 |1265 |29746 |
+ROW |55356 |1265 |29747 |
+ROW |55357 |1265 |29748 |
+ROW |55358 |1265 |29749 |
+ROW |55359 |1265 |29750 |
+ROW |55360 |1265 |29751 |
+ROW |55361 |1265 |29752 |
+ROW |55362 |1265 |29753 |
+ROW |55363 |1265 |29754 |
+ROW |55364 |1265 |29755 |
+ROW |55365 |1265 |29756 |
+ROW |55366 |1265 |29757 |
+ROW |55367 |1265 |29758 |
+ROW |55368 |1265 |29759 |
+ROW |55369 |1265 |29760 |
+ROW |55370 |1265 |29761 |
+ROW |55371 |1265 |29762 |
+ROW |55372 |1265 |29763 |
+ROW |55373 |1265 |29764 |
+ROW |55374 |1265 |29765 |
+ROW |55375 |1265 |29766 |
+ROW |55376 |1265 |29767 |
+ROW |55377 |1265 |29768 |
+ROW |55378 |1265 |29769 |
+ROW |55379 |1267 |29771 |
+ROW |55380 |1267 |29772 |
+ROW |55381 |1267 |29773 |
+ROW |55382 |1267 |29774 |
+ROW |55383 |1267 |29775 |
+ROW |55384 |1267 |29776 |
+ROW |55385 |1267 |29777 |
+ROW |55386 |1267 |29779 |
+ROW |55387 |1267 |29780 |
+ROW |55388 |1267 |29781 |
+ROW |55389 |1267 |29782 |
+ROW |55390 |1267 |29783 |
+ROW |55391 |1267 |29784 |
+ROW |55392 |1267 |30044 |
+ROW |55393 |1267 |30045 |
+ROW |55394 |1107 |28501 |
+ROW |55395 |1108 |28502 |
+ROW |55396 |1105 |28503 |
+ROW |55397 |1105 |28504 |
+ROW |55398 |1106 |28505 |
+ROW |55399 |1106 |28506 |
+ROW |55400 |1106 |28507 |
+ROW |55401 |1107 |28508 |
+ROW |55402 |1107 |28509 |
+ROW |55403 |1107 |28510 |
+ROW |55404 |1109 |28511 |
+ROW |55405 |1106 |28512 |
+ROW |55406 |1105 |28513 |
+ROW |55407 |1108 |28514 |
+ROW |55408 |1108 |28515 |
+ROW |55409 |1108 |28516 |
+ROW |55410 |1107 |28517 |
+ROW |55411 |1108 |28518 |
+ROW |55412 |1105 |28519 |
+ROW |55413 |1105 |28520 |
+ROW |55414 |1105 |28521 |
+ROW |55415 |1105 |28522 |
+ROW |55416 |1105 |28523 |
+ROW |55417 |1106 |28524 |
+ROW |55418 |1106 |28525 |
+ROW |55419 |1106 |28526 |
+ROW |55420 |1106 |28527 |
+ROW |55421 |1106 |28528 |
+ROW |55422 |1107 |28529 |
+ROW |55423 |1107 |28530 |
+ROW |55424 |1107 |28531 |
+ROW |55425 |1105 |28532 |
+ROW |55426 |446 |23644 |
+ROW |55427 |736 |26856 |
+ROW |55428 |736 |26857 |
+ROW |55429 |736 |26858 |
+ROW |55430 |736 |26859 |
+ROW |55431 |736 |26860 |
+ROW |55432 |736 |26861 |
+ROW |55433 |736 |26862 |
+ROW |55434 |736 |26863 |
+ROW |55435 |736 |26864 |
+ROW |55436 |736 |26865 |
+ROW |55437 |736 |26866 |
+ROW |55438 |736 |26867 |
+ROW |55439 |736 |26868 |
+ROW |55440 |736 |26869 |
+ROW |55441 |739 |26870 |
+ROW |55442 |738 |26871 |
+ROW |55443 |739 |26872 |
+ROW |55444 |739 |26873 |
+ROW |55445 |739 |26874 |
+ROW |55446 |738 |26875 |
+ROW |55447 |738 |26876 |
+ROW |55448 |736 |26877 |
+ROW |55449 |736 |26878 |
+ROW |55450 |737 |26879 |
+ROW |55451 |737 |26880 |
+ROW |55452 |737 |26881 |
+ROW |55453 |736 |26882 |
+ROW |55454 |736 |26883 |
+ROW |55455 |734 |26884 |
+ROW |55456 |734 |26885 |
+ROW |55457 |734 |26886 |
+ROW |55458 |734 |26887 |
+ROW |55459 |734 |26888 |
+ROW |55460 |734 |26889 |
+ROW |55461 |734 |26890 |
+ROW |55462 |732 |26891 |
+ROW |55463 |732 |26892 |
+ROW |55464 |733 |26893 |
+ROW |55465 |733 |26894 |
+ROW |55466 |734 |26895 |
+ROW |55467 |734 |26896 |
+ROW |55468 |734 |26897 |
+ROW |55469 |735 |26898 |
+ROW |55470 |735 |26899 |
+ROW |55471 |736 |26900 |
+ROW |55472 |736 |26901 |
+ROW |55473 |736 |26902 |
+ROW |55474 |735 |26903 |
+ROW |55475 |735 |26904 |
+ROW |55476 |734 |26905 |
+ROW |55477 |734 |26906 |
+ROW |55478 |735 |26907 |
+ROW |55479 |735 |26908 |
+ROW |55480 |735 |26909 |
+ROW |55481 |732 |26910 |
+ROW |55482 |447 |23645 |
+ROW |55483 |448 |23646 |
+ROW |55484 |449 |23647 |
+ROW |55485 |450 |23648 |
+ROW |55486 |451 |23649 |
+ROW |55487 |452 |23650 |
+ROW |55488 |453 |23651 |
+ROW |55489 |1111 |28585 |
+ROW |55490 |1111 |28586 |
+ROW |55491 |1111 |28587 |
+ROW |55492 |1111 |28588 |
+ROW |55493 |1111 |28589 |
+ROW |55494 |1111 |28590 |
+ROW |55495 |1111 |28591 |
+ROW |55496 |1111 |28592 |
+ROW |55497 |1111 |28593 |
+ROW |55498 |1111 |28594 |
+ROW |55499 |1111 |28595 |
+ROW |55500 |1111 |28596 |
+ROW |55501 |1111 |28597 |
+ROW |55502 |1111 |28598 |
+ROW |55503 |1111 |28599 |
+ROW |55504 |1111 |28600 |
+ROW |55505 |1111 |28601 |
+ROW |55506 |1111 |28602 |
+ROW |55507 |1111 |28603 |
+ROW |55508 |1111 |28604 |
+ROW |55509 |1111 |28605 |
+ROW |55510 |1111 |28606 |
+ROW |55511 |1111 |28607 |
+ROW |55512 |1111 |28608 |
+ROW |55513 |1111 |28609 |
+ROW |55514 |1111 |28610 |
+ROW |55515 |1111 |28611 |
+ROW |55516 |1111 |28612 |
+ROW |55517 |1111 |28613 |
+ROW |55518 |1111 |28614 |
+ROW |55519 |1111 |28615 |
+ROW |55520 |1111 |28616 |
+ROW |55521 |1110 |28539 |
+ROW |55522 |1110 |28540 |
+ROW |55523 |1110 |28541 |
+ROW |55524 |1110 |28542 |
+ROW |55525 |1110 |28543 |
+ROW |55526 |1110 |28544 |
+ROW |55527 |1110 |28545 |
+ROW |55528 |1110 |28546 |
+ROW |55529 |1110 |28547 |
+ROW |55530 |1110 |28548 |
+ROW |55531 |1110 |28549 |
+ROW |55532 |1110 |28550 |
+ROW |55533 |1110 |28551 |
+ROW |55534 |1110 |28552 |
+ROW |55535 |1110 |28553 |
+ROW |55536 |1110 |28554 |
+ROW |55537 |1110 |28555 |
+ROW |55538 |1110 |28556 |
+ROW |55539 |1110 |28557 |
+ROW |55540 |1110 |28558 |
+ROW |55541 |1110 |28559 |
+ROW |55542 |1110 |28560 |
+ROW |55543 |1110 |28561 |
+ROW |55544 |1110 |28562 |
+ROW |55545 |1110 |28563 |
+ROW |55546 |1110 |28564 |
+ROW |55547 |1110 |28565 |
+ROW |55548 |1110 |28566 |
+ROW |55549 |1110 |28567 |
+ROW |55550 |1110 |28568 |
+ROW |55551 |1110 |28569 |
+ROW |55552 |1110 |28570 |
+ROW |55553 |1110 |28571 |
+ROW |55554 |1110 |28572 |
+ROW |55555 |1110 |28573 |
+ROW |55556 |1110 |28574 |
+ROW |55557 |1110 |28575 |
+ROW |55558 |1110 |28576 |
+ROW |55559 |1110 |28577 |
+ROW |55560 |1110 |28578 |
+ROW |55561 |1110 |28579 |
+ROW |55562 |1110 |28580 |
+ROW |55563 |1110 |28581 |
+ROW |55564 |1110 |28582 |
+ROW |55565 |1110 |28583 |
+ROW |55566 |1110 |28584 |
+ROW |55567 |1110 |29821 |
+ROW |55568 |454 |23652 |
+ROW |55569 |455 |23653 |
+ROW |55570 |456 |23654 |
+ROW |55571 |356 |10067 |
+ROW |55572 |356 |10068 |
+ROW |55573 |356 |10069 |
+ROW |55574 |356 |10070 |
+ROW |55575 |356 |10071 |
+ROW |55576 |356 |10072 |
+ROW |55577 |356 |23340 |
+ROW |55578 |356 |23341 |
+ROW |55579 |356 |23342 |
+ROW |55580 |356 |23343 |
+ROW |55581 |356 |23344 |
+ROW |55582 |356 |23345 |
+ROW |55583 |356 |23346 |
+ROW |55584 |356 |23347 |
+ROW |55585 |356 |23348 |
+ROW |55586 |356 |23349 |
+ROW |55587 |356 |23350 |
+ROW |55588 |356 |23351 |
+ROW |55589 |356 |23352 |
+ROW |55590 |356 |23353 |
+ROW |55591 |356 |23354 |
+ROW |55592 |356 |23355 |
+ROW |55593 |356 |23356 |
+ROW |55594 |356 |23357 |
+ROW |55595 |356 |23358 |
+ROW |55596 |356 |23359 |
+ROW |55597 |356 |23360 |
+ROW |55598 |356 |25368 |
+ROW |55599 |356 |25369 |
+ROW |55600 |356 |28250 |
+ROW |55601 |356 |28251 |
+ROW |55602 |356 |28617 |
+ROW |55603 |356 |28618 |
+ROW |55604 |356 |28619 |
+ROW |55605 |179 |10061 |
+ROW |55606 |179 |10062 |
+ROW |55607 |179 |10063 |
+ROW |55608 |179 |10064 |
+ROW |55609 |179 |10065 |
+ROW |55610 |179 |10066 |
+ROW |55611 |179 |22183 |
+ROW |55612 |179 |22185 |
+ROW |55613 |179 |22187 |
+ROW |55614 |179 |22189 |
+ROW |55615 |179 |22191 |
+ROW |55616 |179 |22196 |
+ROW |55617 |179 |22199 |
+ROW |55618 |179 |22219 |
+ROW |55619 |179 |22396 |
+ROW |55620 |179 |22399 |
+ROW |55621 |179 |22400 |
+ROW |55622 |179 |22401 |
+ROW |55623 |179 |22402 |
+ROW |55624 |179 |22404 |
+ROW |55625 |179 |22406 |
+ROW |55626 |179 |22408 |
+ROW |55627 |179 |22412 |
+ROW |55628 |179 |22414 |
+ROW |55629 |179 |22416 |
+ROW |55630 |179 |22418 |
+ROW |55631 |179 |22420 |
+ROW |55632 |179 |22422 |
+ROW |55633 |179 |22424 |
+ROW |55634 |179 |22426 |
+ROW |55635 |179 |22430 |
+ROW |55636 |179 |22689 |
+ROW |55637 |179 |23171 |
+ROW |55638 |179 |23251 |
+ROW |55639 |179 |23634 |
+ROW |55640 |179 |23661 |
+ROW |55641 |179 |23663 |
+ROW |55642 |179 |25366 |
+ROW |55643 |179 |25370 |
+ROW |55644 |179 |25665 |
+ROW |55645 |179 |25666 |
+ROW |55646 |179 |28248 |
+ROW |55647 |179 |28533 |
+ROW |55648 |179 |28535 |
+ROW |55649 |179 |28537 |
+ROW |55650 |179 |29822 |
+ROW |55651 |345 |10073 |
+ROW |55652 |345 |10074 |
+ROW |55653 |345 |10075 |
+ROW |55654 |345 |10076 |
+ROW |55655 |345 |10077 |
+ROW |55656 |345 |10078 |
+ROW |55657 |345 |23252 |
+ROW |55658 |345 |23253 |
+ROW |55659 |345 |23255 |
+ROW |55660 |345 |23256 |
+ROW |55661 |345 |23257 |
+ROW |55662 |345 |23258 |
+ROW |55663 |345 |23259 |
+ROW |55664 |345 |23260 |
+ROW |55665 |345 |23261 |
+ROW |55666 |345 |23262 |
+ROW |55667 |345 |23264 |
+ROW |55668 |345 |23265 |
+ROW |55669 |345 |23266 |
+ROW |55670 |345 |23267 |
+ROW |55671 |345 |23268 |
+ROW |55672 |345 |23269 |
+ROW |55673 |345 |23270 |
+ROW |55674 |345 |23271 |
+ROW |55675 |345 |23272 |
+ROW |55676 |345 |23273 |
+ROW |55677 |345 |23274 |
+ROW |55678 |345 |23275 |
+ROW |55679 |345 |23276 |
+ROW |55680 |345 |23277 |
+ROW |55681 |345 |23328 |
+ROW |55682 |345 |23620 |
+ROW |55683 |345 |23625 |
+ROW |55684 |345 |23628 |
+ROW |55685 |345 |23635 |
+ROW |55686 |345 |23662 |
+ROW |55687 |345 |23664 |
+ROW |55688 |345 |25367 |
+ROW |55689 |345 |25371 |
+ROW |55690 |345 |25667 |
+ROW |55691 |345 |25668 |
+ROW |55692 |345 |28249 |
+ROW |55693 |345 |28534 |
+ROW |55694 |345 |28536 |
+ROW |55695 |345 |28538 |
+ROW |55696 |345 |29823 |
+ROW |55697 |280 |22917 |
+ROW |55698 |280 |22918 |
+ROW |55699 |273 |22920 |
+ROW |55700 |279 |22920 |
+ROW |55701 |273 |22921 |
+ROW |55702 |279 |22921 |
+ROW |55703 |273 |22922 |
+ROW |55704 |279 |22922 |
+ROW |55705 |273 |22923 |
+ROW |55706 |279 |22923 |
+ROW |55707 |273 |22924 |
+ROW |55708 |279 |22924 |
+ROW |55709 |275 |22933 |
+ROW |55710 |278 |22933 |
+ROW |55711 |275 |22934 |
+ROW |55712 |278 |22934 |
+ROW |55713 |275 |22938 |
+ROW |55714 |278 |22938 |
+ROW |55715 |275 |22939 |
+ROW |55716 |278 |22939 |
+ROW |55717 |278 |22940 |
+ROW |55718 |281 |22940 |
+ROW |55719 |281 |22941 |
+ROW |55720 |276 |22942 |
+ROW |55721 |276 |22943 |
+ROW |55722 |273 |23108 |
+ROW |55723 |331 |23108 |
+ROW |55724 |279 |23108 |
+ROW |55725 |273 |23109 |
+ROW |55726 |331 |23109 |
+ROW |55727 |279 |23109 |
+ROW |55728 |273 |23110 |
+ROW |55729 |279 |23110 |
+ROW |55730 |273 |23111 |
+ROW |55731 |331 |23111 |
+ROW |55732 |279 |23111 |
+ROW |55733 |273 |23112 |
+ROW |55734 |331 |23112 |
+ROW |55735 |279 |23112 |
+ROW |55736 |273 |23113 |
+ROW |55737 |279 |23113 |
+ROW |55738 |273 |23114 |
+ROW |55739 |279 |23114 |
+ROW |55740 |273 |23115 |
+ROW |55741 |279 |23115 |
+ROW |55742 |274 |23116 |
+ROW |55743 |279 |23116 |
+ROW |55744 |274 |23117 |
+ROW |55745 |279 |23117 |
+ROW |55746 |273 |23118 |
+ROW |55747 |331 |23118 |
+ROW |55748 |273 |23119 |
+ROW |55749 |279 |23119 |
+ROW |55750 |273 |23120 |
+ROW |55751 |279 |23120 |
+ROW |55752 |273 |23121 |
+ROW |55753 |279 |23121 |
+ROW |55754 |276 |23122 |
+ROW |55755 |279 |23122 |
+ROW |55756 |273 |23123 |
+ROW |55757 |279 |23123 |
+ROW |55758 |276 |23124 |
+ROW |55759 |276 |23125 |
+ROW |55760 |276 |23126 |
+ROW |55761 |276 |23127 |
+ROW |55762 |276 |23128 |
+ROW |55763 |276 |23129 |
+ROW |55764 |276 |23130 |
+ROW |55765 |276 |23131 |
+ROW |55766 |277 |22945 |
+ROW |55767 |277 |22946 |
+ROW |55768 |274 |22948 |
+ROW |55769 |274 |22949 |
+ROW |55770 |274 |22950 |
+ROW |55771 |274 |22951 |
+ROW |55772 |274 |22952 |
+ROW |55773 |268 |22875 |
+ROW |55774 |268 |22876 |
+ROW |55775 |270 |22877 |
+ROW |55776 |270 |22878 |
+ROW |55777 |265 |22879 |
+ROW |55778 |268 |22879 |
+ROW |55779 |263 |22880 |
+ROW |55780 |269 |22880 |
+ROW |55781 |263 |22881 |
+ROW |55782 |269 |22881 |
+ROW |55783 |263 |22882 |
+ROW |55784 |269 |22882 |
+ROW |55785 |263 |22883 |
+ROW |55786 |269 |22883 |
+ROW |55787 |263 |22884 |
+ROW |55788 |269 |22884 |
+ROW |55789 |263 |22885 |
+ROW |55790 |269 |22885 |
+ROW |55791 |263 |22886 |
+ROW |55792 |269 |22886 |
+ROW |55793 |263 |22888 |
+ROW |55794 |269 |22888 |
+ROW |55795 |263 |22891 |
+ROW |55796 |269 |22891 |
+ROW |55797 |263 |22892 |
+ROW |55798 |269 |22892 |
+ROW |55799 |265 |22893 |
+ROW |55800 |268 |22893 |
+ROW |55801 |265 |22894 |
+ROW |55802 |268 |22894 |
+ROW |55803 |266 |22895 |
+ROW |55804 |266 |22896 |
+ROW |55805 |266 |22897 |
+ROW |55806 |265 |22898 |
+ROW |55807 |268 |22898 |
+ROW |55808 |265 |22899 |
+ROW |55809 |268 |22899 |
+ROW |55810 |268 |22900 |
+ROW |55811 |271 |22900 |
+ROW |55812 |271 |22901 |
+ROW |55813 |266 |22902 |
+ROW |55814 |266 |22903 |
+ROW |55815 |264 |22908 |
+ROW |55816 |264 |22909 |
+ROW |55817 |264 |22910 |
+ROW |55818 |264 |22911 |
+ROW |55819 |264 |22912 |
+ROW |55820 |267 |23073 |
+ROW |55821 |267 |23074 |
+ROW |55822 |283 |22961 |
+ROW |55823 |289 |22961 |
+ROW |55824 |283 |22962 |
+ROW |55825 |289 |22962 |
+ROW |55826 |283 |22963 |
+ROW |55827 |289 |22963 |
+ROW |55828 |283 |22965 |
+ROW |55829 |289 |22965 |
+ROW |55830 |283 |22968 |
+ROW |55831 |289 |22968 |
+ROW |55832 |283 |22971 |
+ROW |55833 |289 |22971 |
+ROW |55834 |283 |22972 |
+ROW |55835 |289 |22972 |
+ROW |55836 |285 |22973 |
+ROW |55837 |288 |22973 |
+ROW |55838 |285 |22974 |
+ROW |55839 |288 |22974 |
+ROW |55840 |285 |22978 |
+ROW |55841 |288 |22978 |
+ROW |55842 |288 |22980 |
+ROW |55843 |291 |22980 |
+ROW |55844 |291 |22981 |
+ROW |55845 |286 |22982 |
+ROW |55846 |286 |22983 |
+ROW |55847 |287 |22985 |
+ROW |55848 |287 |22986 |
+ROW |55849 |284 |22988 |
+ROW |55850 |284 |22989 |
+ROW |55851 |284 |22990 |
+ROW |55852 |284 |22991 |
+ROW |55853 |284 |22992 |
+ROW |55854 |308 |23035 |
+ROW |55855 |308 |23036 |
+ROW |55856 |305 |23039 |
+ROW |55857 |308 |23039 |
+ROW |55858 |303 |23041 |
+ROW |55859 |309 |23041 |
+ROW |55860 |303 |23042 |
+ROW |55861 |309 |23042 |
+ROW |55862 |303 |23043 |
+ROW |55863 |309 |23043 |
+ROW |55864 |305 |23053 |
+ROW |55865 |308 |23053 |
+ROW |55866 |305 |23054 |
+ROW |55867 |308 |23054 |
+ROW |55868 |305 |23058 |
+ROW |55869 |308 |23058 |
+ROW |55870 |305 |23059 |
+ROW |55871 |308 |23059 |
+ROW |55872 |308 |23060 |
+ROW |55873 |311 |23060 |
+ROW |55874 |311 |23061 |
+ROW |55875 |306 |23062 |
+ROW |55876 |306 |23063 |
+ROW |55877 |307 |23077 |
+ROW |55878 |307 |23078 |
+ROW |55879 |304 |23068 |
+ROW |55880 |304 |23069 |
+ROW |55881 |304 |23070 |
+ROW |55882 |304 |23071 |
+ROW |55883 |304 |23072 |
+ROW |55884 |258 |22835 |
+ROW |55885 |258 |22836 |
+ROW |55886 |260 |22837 |
+ROW |55887 |260 |22838 |
+ROW |55888 |255 |22839 |
+ROW |55889 |258 |22839 |
+ROW |55890 |253 |22840 |
+ROW |55891 |259 |22840 |
+ROW |55892 |253 |22841 |
+ROW |55893 |259 |22841 |
+ROW |55894 |253 |22842 |
+ROW |55895 |259 |22842 |
+ROW |55896 |253 |22843 |
+ROW |55897 |259 |22843 |
+ROW |55898 |253 |22844 |
+ROW |55899 |259 |22844 |
+ROW |55900 |253 |22845 |
+ROW |55901 |259 |22845 |
+ROW |55902 |253 |22846 |
+ROW |55903 |259 |22846 |
+ROW |55904 |253 |22848 |
+ROW |55905 |259 |22848 |
+ROW |55906 |253 |22851 |
+ROW |55907 |259 |22851 |
+ROW |55908 |253 |22852 |
+ROW |55909 |259 |22852 |
+ROW |55910 |255 |22853 |
+ROW |55911 |258 |22853 |
+ROW |55912 |255 |22854 |
+ROW |55913 |258 |22854 |
+ROW |55914 |256 |22855 |
+ROW |55915 |256 |22856 |
+ROW |55916 |256 |22857 |
+ROW |55917 |255 |22858 |
+ROW |55918 |258 |22858 |
+ROW |55919 |255 |22859 |
+ROW |55920 |258 |22859 |
+ROW |55921 |258 |22860 |
+ROW |55922 |261 |22860 |
+ROW |55923 |261 |22861 |
+ROW |55924 |256 |22862 |
+ROW |55925 |256 |22863 |
+ROW |55926 |254 |22868 |
+ROW |55927 |254 |22869 |
+ROW |55928 |254 |22870 |
+ROW |55929 |254 |22871 |
+ROW |55930 |254 |22872 |
+ROW |55931 |257 |23075 |
+ROW |55932 |257 |23076 |
+ROW |55933 |298 |22996 |
+ROW |55934 |300 |22997 |
+ROW |55935 |300 |22998 |
+ROW |55936 |295 |22999 |
+ROW |55937 |298 |22999 |
+ROW |55938 |293 |23000 |
+ROW |55939 |299 |23000 |
+ROW |55940 |293 |23001 |
+ROW |55941 |299 |23001 |
+ROW |55942 |293 |23002 |
+ROW |55943 |299 |23002 |
+ROW |55944 |293 |23003 |
+ROW |55945 |299 |23003 |
+ROW |55946 |293 |23004 |
+ROW |55947 |299 |23004 |
+ROW |55948 |293 |23005 |
+ROW |55949 |299 |23005 |
+ROW |55950 |293 |23007 |
+ROW |55951 |299 |23007 |
+ROW |55952 |293 |23011 |
+ROW |55953 |299 |23011 |
+ROW |55954 |293 |23012 |
+ROW |55955 |299 |23012 |
+ROW |55956 |295 |23013 |
+ROW |55957 |298 |23013 |
+ROW |55958 |295 |23014 |
+ROW |55959 |298 |23014 |
+ROW |55960 |296 |23015 |
+ROW |55961 |296 |23016 |
+ROW |55962 |296 |23017 |
+ROW |55963 |295 |23018 |
+ROW |55964 |298 |23018 |
+ROW |55965 |295 |23019 |
+ROW |55966 |298 |23019 |
+ROW |55967 |298 |23020 |
+ROW |55968 |301 |23020 |
+ROW |55969 |301 |23021 |
+ROW |55970 |296 |23022 |
+ROW |55971 |296 |23023 |
+ROW |55972 |297 |23025 |
+ROW |55973 |297 |23026 |
+ROW |55974 |294 |23028 |
+ROW |55975 |294 |23029 |
+ROW |55976 |294 |23030 |
+ROW |55977 |294 |23031 |
+ROW |55978 |294 |23032 |
+ROW |55979 |743 |26925 |
+ROW |55980 |743 |26926 |
+ROW |55981 |741 |26927 |
+ROW |55982 |742 |26928 |
+ROW |55983 |743 |26929 |
+ROW |55984 |743 |26930 |
+ROW |55985 |743 |26931 |
+ROW |55986 |743 |26932 |
+ROW |55987 |745 |26933 |
+ROW |55988 |746 |26934 |
+ROW |55989 |744 |26935 |
+ROW |55990 |744 |26936 |
+ROW |55991 |746 |26937 |
+ROW |55992 |746 |26938 |
+ROW |55993 |746 |26939 |
+ROW |55994 |746 |26940 |
+ROW |55995 |746 |26941 |
+ROW |55996 |746 |26942 |
+ROW |55997 |745 |26943 |
+ROW |55998 |748 |26944 |
+ROW |55999 |748 |26945 |
+ROW |56000 |749 |26946 |
+ROW |56001 |755 |26947 |
+ROW |56002 |755 |26948 |
+ROW |56003 |755 |26949 |
+ROW |56004 |753 |26950 |
+ROW |56005 |757 |26951 |
+ROW |56006 |753 |26952 |
+ROW |56007 |757 |26953 |
+ROW |56008 |757 |26954 |
+ROW |56009 |755 |26955 |
+ROW |56010 |755 |26956 |
+ROW |56011 |750 |26957 |
+ROW |56012 |750 |26958 |
+ROW |56013 |750 |26959 |
+ROW |56014 |753 |26960 |
+ROW |56015 |753 |26961 |
+ROW |56016 |755 |26962 |
+ROW |56017 |755 |26963 |
+ROW |56018 |755 |26964 |
+ROW |56019 |753 |26965 |
+ROW |56020 |763 |26966 |
+ROW |56021 |763 |26967 |
+ROW |56022 |762 |26968 |
+ROW |56023 |762 |26969 |
+ROW |56024 |760 |26970 |
+ROW |56025 |760 |26971 |
+ROW |56026 |760 |26972 |
+ROW |56027 |760 |26973 |
+ROW |56028 |760 |26974 |
+ROW |56029 |761 |26975 |
+ROW |56030 |761 |26976 |
+ROW |56031 |758 |26977 |
+ROW |56032 |761 |26977 |
+ROW |56033 |760 |26978 |
+ROW |56034 |760 |26979 |
+ROW |56035 |758 |26980 |
+ROW |56036 |758 |26981 |
+ROW |56037 |761 |26981 |
+ROW |56038 |758 |26982 |
+ROW |56039 |761 |26982 |
+ROW |56040 |761 |26983 |
+ROW |56041 |761 |26984 |
+ROW |56042 |762 |26984 |
+ROW |56043 |758 |26985 |
+ROW |56044 |761 |26985 |
+ROW |56045 |760 |26986 |
+ROW |56046 |747 |26994 |
+ROW |56047 |754 |26995 |
+ROW |56048 |754 |26996 |
+ROW |56049 |754 |26997 |
+ROW |56050 |754 |26998 |
+ROW |56051 |751 |26999 |
+ROW |56052 |751 |27000 |
+ROW |56053 |751 |27001 |
+ROW |56054 |751 |27002 |
+ROW |56055 |752 |27003 |
+ROW |56056 |752 |27004 |
+ROW |56057 |752 |27005 |
+ROW |56058 |752 |27006 |
+ROW |56059 |759 |27007 |
+ROW |56060 |759 |27008 |
+ROW |56061 |759 |27009 |
+ROW |56062 |759 |27010 |
+ROW |56063 |1112 |28621 |
+ROW |56064 |1112 |28622 |
+ROW |56065 |1112 |28623 |
+ROW |56066 |1112 |28624 |
+ROW |56067 |1314 |30431 |
+ROW |56068 |1314 |30432 |
+ROW |56069 |1315 |30433 |
+ROW |56070 |1314 |30434 |
+ROW |56071 |1314 |30435 |
+ROW |56072 |1315 |30436 |
+ROW |56073 |1314 |30437 |
+ROW |56074 |1314 |30438 |
+ROW |56075 |1314 |30439 |
+ROW |56076 |1314 |30440 |
+ROW |56077 |1314 |30441 |
+ROW |56078 |1314 |30442 |
+ROW |56079 |1315 |30443 |
+ROW |56080 |1314 |30444 |
+ROW |56081 |1314 |30445 |
+ROW |56082 |1314 |30446 |
+ROW |56083 |1314 |30447 |
+ROW |56084 |1314 |30448 |
+ROW |56085 |1314 |30449 |
+ROW |56086 |1314 |30450 |
+ROW |56087 |1314 |30451 |
+ROW |56088 |1314 |30452 |
+ROW |56089 |1314 |30453 |
+ROW |56090 |1314 |30454 |
+ROW |56091 |1314 |30455 |
+ROW |56092 |1314 |30456 |
+ROW |56093 |1314 |30457 |
+ROW |56094 |1314 |30458 |
+ROW |56095 |1314 |30459 |
+ROW |56096 |1314 |30460 |
+ROW |56097 |1314 |30461 |
+ROW |56098 |1314 |30462 |
+ROW |56099 |1314 |30463 |
+ROW |56100 |1314 |30464 |
+ROW |56101 |1314 |30465 |
+ROW |56102 |1314 |30466 |
+ROW |56103 |1314 |30467 |
+ROW |56104 |1314 |30468 |
+ROW |56105 |1314 |30469 |
+ROW |56106 |1314 |30470 |
+ROW |56107 |1314 |30471 |
+ROW |56108 |1314 |30474 |
+ROW |56109 |1315 |30475 |
+ROW |56110 |1314 |30476 |
+ROW |56111 |1314 |30477 |
+ROW |56112 |1314 |30478 |
+ROW |56113 |1322 |30637 |
+ROW |56114 |1322 |30638 |
+ROW |56115 |1323 |30639 |
+ROW |56116 |1322 |30640 |
+ROW |56117 |1322 |30641 |
+ROW |56118 |1323 |30642 |
+ROW |56119 |1322 |30643 |
+ROW |56120 |1322 |30644 |
+ROW |56121 |1322 |30645 |
+ROW |56122 |1322 |30646 |
+ROW |56123 |1322 |30647 |
+ROW |56124 |1322 |30648 |
+ROW |56125 |1323 |30649 |
+ROW |56126 |1322 |30650 |
+ROW |56127 |1322 |30651 |
+ROW |56128 |1322 |30652 |
+ROW |56129 |1322 |30653 |
+ROW |56130 |1322 |30654 |
+ROW |56131 |1322 |30655 |
+ROW |56132 |1322 |30656 |
+ROW |56133 |1322 |30657 |
+ROW |56134 |1322 |30658 |
+ROW |56135 |1322 |30659 |
+ROW |56136 |1322 |30660 |
+ROW |56137 |1322 |30661 |
+ROW |56138 |1322 |30662 |
+ROW |56139 |1322 |30663 |
+ROW |56140 |1322 |30664 |
+ROW |56141 |1322 |30665 |
+ROW |56142 |1322 |30666 |
+ROW |56143 |1322 |30667 |
+ROW |56144 |1322 |30668 |
+ROW |56145 |1322 |30669 |
+ROW |56146 |1322 |30670 |
+ROW |56147 |1322 |30671 |
+ROW |56148 |1322 |30672 |
+ROW |56149 |1322 |30673 |
+ROW |56150 |1322 |30674 |
+ROW |56151 |1322 |30675 |
+ROW |56152 |1322 |30676 |
+ROW |56153 |1322 |30677 |
+ROW |56154 |1322 |30680 |
+ROW |56155 |1323 |30681 |
+ROW |56156 |1322 |30682 |
+ROW |56157 |1322 |30683 |
+ROW |56158 |1322 |30684 |
+ROW |56159 |1317 |30479 |
+ROW |56160 |1316 |30480 |
+ROW |56161 |1316 |30481 |
+ROW |56162 |1316 |30482 |
+ROW |56163 |1316 |30483 |
+ROW |56164 |1316 |30484 |
+ROW |56165 |1317 |30485 |
+ROW |56166 |1316 |30486 |
+ROW |56167 |1317 |30487 |
+ROW |56168 |1316 |30488 |
+ROW |56169 |1316 |30489 |
+ROW |56170 |1316 |30490 |
+ROW |56171 |1316 |30491 |
+ROW |56172 |1316 |30492 |
+ROW |56173 |1316 |30493 |
+ROW |56174 |1316 |30494 |
+ROW |56175 |1316 |30495 |
+ROW |56176 |1316 |30496 |
+ROW |56177 |1316 |30497 |
+ROW |56178 |1316 |30498 |
+ROW |56179 |1316 |30499 |
+ROW |56180 |1316 |30500 |
+ROW |56181 |1316 |30501 |
+ROW |56182 |1316 |30502 |
+ROW |56183 |1316 |30503 |
+ROW |56184 |1316 |30504 |
+ROW |56185 |1316 |30505 |
+ROW |56186 |1316 |30506 |
+ROW |56187 |1316 |30507 |
+ROW |56188 |1316 |30508 |
+ROW |56189 |1316 |30509 |
+ROW |56190 |1316 |30510 |
+ROW |56191 |1316 |30511 |
+ROW |56192 |1316 |30512 |
+ROW |56193 |1316 |30513 |
+ROW |56194 |1316 |30514 |
+ROW |56195 |1316 |30515 |
+ROW |56196 |1316 |30516 |
+ROW |56197 |1316 |30517 |
+ROW |56198 |1316 |30518 |
+ROW |56199 |1316 |30519 |
+ROW |56200 |1316 |30522 |
+ROW |56201 |1317 |30523 |
+ROW |56202 |1316 |30524 |
+ROW |56203 |1316 |30525 |
+ROW |56204 |1316 |30526 |
+ROW |56205 |1115 |28671 |
+ROW |56206 |1115 |28672 |
+ROW |56207 |1114 |28673 |
+ROW |56208 |1114 |28674 |
+ROW |56209 |1115 |28675 |
+ROW |56210 |1114 |28676 |
+ROW |56211 |1114 |28677 |
+ROW |56212 |1114 |28678 |
+ROW |56213 |1114 |28679 |
+ROW |56214 |1114 |28680 |
+ROW |56215 |1114 |28681 |
+ROW |56216 |1115 |28682 |
+ROW |56217 |1115 |28683 |
+ROW |56218 |1114 |28684 |
+ROW |56219 |1114 |28685 |
+ROW |56220 |1115 |28686 |
+ROW |56221 |1115 |28687 |
+ROW |56222 |1114 |28688 |
+ROW |56223 |1114 |28689 |
+ROW |56224 |1114 |28690 |
+ROW |56225 |1114 |28691 |
+ROW |56226 |1114 |28692 |
+ROW |56227 |1114 |28693 |
+ROW |56228 |1114 |28694 |
+ROW |56229 |1114 |28695 |
+ROW |56230 |1114 |28696 |
+ROW |56231 |1114 |28697 |
+ROW |56232 |1114 |28698 |
+ROW |56233 |1114 |28699 |
+ROW |56234 |1114 |28700 |
+ROW |56235 |1114 |28701 |
+ROW |56236 |1114 |28702 |
+ROW |56237 |1114 |28703 |
+ROW |56238 |1114 |28704 |
+ROW |56239 |1114 |28705 |
+ROW |56240 |1114 |28706 |
+ROW |56241 |1114 |28707 |
+ROW |56242 |1114 |28708 |
+ROW |56243 |1114 |28709 |
+ROW |56244 |1114 |28710 |
+ROW |56245 |1115 |28713 |
+ROW |56246 |1115 |28714 |
+ROW |56247 |1302 |30273 |
+ROW |56248 |1302 |30274 |
+ROW |56249 |1303 |30275 |
+ROW |56250 |1303 |30276 |
+ROW |56251 |1302 |30277 |
+ROW |56252 |1302 |30278 |
+ROW |56253 |1302 |30279 |
+ROW |56254 |1302 |30280 |
+ROW |56255 |1302 |30281 |
+ROW |56256 |1302 |30282 |
+ROW |56257 |1302 |30283 |
+ROW |56258 |1302 |30284 |
+ROW |56259 |1302 |30285 |
+ROW |56260 |1302 |30286 |
+ROW |56261 |1302 |30287 |
+ROW |56262 |1302 |30288 |
+ROW |56263 |1302 |30289 |
+ROW |56264 |1302 |30290 |
+ROW |56265 |1302 |30291 |
+ROW |56266 |1302 |30292 |
+ROW |56267 |1302 |30293 |
+ROW |56268 |1302 |30294 |
+ROW |56269 |1302 |30295 |
+ROW |56270 |1302 |30296 |
+ROW |56271 |1302 |30297 |
+ROW |56272 |1302 |30298 |
+ROW |56273 |1302 |30299 |
+ROW |56274 |1302 |30300 |
+ROW |56275 |1302 |30301 |
+ROW |56276 |1302 |30302 |
+ROW |56277 |1302 |30303 |
+ROW |56278 |1302 |30304 |
+ROW |56279 |1302 |30305 |
+ROW |56280 |1302 |30306 |
+ROW |56281 |1302 |30307 |
+ROW |56282 |1302 |30308 |
+ROW |56283 |1302 |30309 |
+ROW |56284 |1302 |30310 |
+ROW |56285 |1302 |30311 |
+ROW |56286 |1302 |30312 |
+ROW |56287 |1302 |30313 |
+ROW |56288 |1302 |30314 |
+ROW |56289 |1302 |30315 |
+ROW |56290 |1302 |30316 |
+ROW |56291 |1302 |30317 |
+ROW |56292 |1302 |30318 |
+ROW |56293 |1302 |30319 |
+ROW |56294 |1302 |30320 |
+ROW |56295 |1302 |30321 |
+ROW |56296 |1302 |30322 |
+ROW |56297 |1302 |30323 |
+ROW |56298 |1302 |30324 |
+ROW |56299 |1302 |30325 |
+ROW |56300 |1302 |30326 |
+ROW |56301 |1302 |30327 |
+ROW |56302 |1302 |30328 |
+ROW |56303 |1302 |30329 |
+ROW |56304 |1302 |30330 |
+ROW |56305 |1302 |30331 |
+ROW |56306 |1302 |30332 |
+ROW |56307 |1302 |30333 |
+ROW |56308 |1302 |30334 |
+ROW |56309 |1302 |30335 |
+ROW |56310 |1302 |30336 |
+ROW |56311 |1302 |30344 |
+ROW |56312 |1302 |30345 |
+ROW |56313 |1302 |30346 |
+ROW |56314 |1302 |30347 |
+ROW |56315 |1302 |30351 |
+ROW |56316 |1302 |30352 |
+ROW |56317 |1302 |30353 |
+ROW |56318 |1302 |30354 |
+ROW |56319 |1302 |30355 |
+ROW |56320 |1302 |30356 |
+ROW |56321 |1302 |30357 |
+ROW |56322 |1302 |30358 |
+ROW |56323 |1302 |30359 |
+ROW |56324 |1302 |30360 |
+ROW |56325 |1302 |30361 |
+ROW |56326 |1302 |30362 |
+ROW |56327 |1302 |30363 |
+ROW |56328 |1302 |30364 |
+ROW |56329 |1302 |30365 |
+ROW |56330 |1302 |30366 |
+ROW |56331 |1302 |30367 |
+ROW |56332 |1302 |30368 |
+ROW |56333 |1302 |30369 |
+ROW |56334 |1302 |30370 |
+ROW |56335 |1302 |30371 |
+ROW |56336 |1302 |30372 |
+ROW |56337 |1302 |30373 |
+ROW |56338 |1302 |30374 |
+ROW |56339 |1302 |30375 |
+ROW |56340 |1302 |30376 |
+ROW |56341 |1302 |30377 |
+ROW |56342 |1302 |30378 |
+ROW |56343 |1302 |30379 |
+ROW |56344 |1302 |30380 |
+ROW |56345 |1302 |30381 |
+ROW |56346 |1302 |30382 |
+ROW |56347 |1302 |30383 |
+ROW |56348 |1302 |30384 |
+ROW |56349 |1302 |30385 |
+ROW |56350 |1302 |30386 |
+ROW |56351 |1302 |30387 |
+ROW |56352 |1302 |30388 |
+ROW |56353 |1302 |30389 |
+ROW |56354 |1302 |30390 |
+ROW |56355 |1302 |30391 |
+ROW |56356 |1302 |30392 |
+ROW |56357 |1302 |30393 |
+ROW |56358 |1302 |30394 |
+ROW |56359 |1302 |30395 |
+ROW |56360 |1302 |30397 |
+ROW |56361 |1302 |30398 |
+ROW |56362 |1302 |30399 |
+ROW |56363 |1302 |30400 |
+ROW |56364 |1302 |30401 |
+ROW |56365 |1302 |30402 |
+ROW |56366 |1302 |30403 |
+ROW |56367 |1302 |30404 |
+ROW |56368 |780 |27065 |
+ROW |56369 |780 |27066 |
+ROW |56370 |780 |27067 |
+ROW |56371 |797 |27138 |
+ROW |56372 |797 |27139 |
+ROW |56373 |797 |27140 |
+ROW |56374 |799 |27149 |
+ROW |56375 |799 |27150 |
+ROW |56376 |799 |27151 |
+ROW |56377 |805 |27192 |
+ROW |56378 |805 |27193 |
+ROW |56379 |805 |27194 |
+ROW |56380 |813 |27225 |
+ROW |56381 |813 |27226 |
+ROW |56382 |813 |27227 |
+ROW |56383 |822 |27261 |
+ROW |56384 |822 |27262 |
+ROW |56385 |822 |27263 |
+ROW |56386 |825 |27282 |
+ROW |56387 |825 |27283 |
+ROW |56388 |825 |27284 |
+ROW |56389 |842 |27333 |
+ROW |56390 |842 |27334 |
+ROW |56391 |842 |27335 |
+ROW |56392 |847 |27365 |
+ROW |56393 |847 |27366 |
+ROW |56394 |847 |27367 |
+ROW |56395 |876 |27462 |
+ROW |56396 |876 |27463 |
+ROW |56397 |876 |27464 |
+ROW |56398 |885 |27496 |
+ROW |56399 |885 |27497 |
+ROW |56400 |885 |27498 |
+ROW |56401 |894 |27532 |
+ROW |56402 |894 |27533 |
+ROW |56403 |894 |27534 |
+ROW |56404 |903 |27568 |
+ROW |56405 |903 |27569 |
+ROW |56406 |903 |27570 |
+ROW |56407 |912 |27608 |
+ROW |56408 |912 |27609 |
+ROW |56409 |912 |27610 |
+ROW |56410 |915 |27631 |
+ROW |56411 |915 |27632 |
+ROW |56412 |915 |27633 |
+ROW |56413 |918 |27654 |
+ROW |56414 |918 |27655 |
+ROW |56415 |918 |27656 |
+ROW |56416 |936 |27734 |
+ROW |56417 |936 |27735 |
+ROW |56418 |936 |27736 |
+ROW |56419 |944 |27766 |
+ROW |56420 |944 |27767 |
+ROW |56421 |944 |27768 |
+ROW |56422 |951 |27800 |
+ROW |56423 |951 |27801 |
+ROW |56424 |951 |27802 |
+ROW |56425 |971 |27882 |
+ROW |56426 |971 |27883 |
+ROW |56427 |971 |27884 |
+ROW |56428 |979 |27919 |
+ROW |56429 |979 |27920 |
+ROW |56430 |979 |27921 |
+ROW |56431 |988 |27956 |
+ROW |56432 |988 |27957 |
+ROW |56433 |988 |27958 |
+ROW |56434 |994 |27986 |
+ROW |56435 |994 |27987 |
+ROW |56436 |994 |27988 |
+ROW |56437 |1000 |28015 |
+ROW |56438 |1000 |28016 |
+ROW |56439 |1000 |28017 |
+ROW |56440 |1030 |28130 |
+ROW |56441 |1030 |28131 |
+ROW |56442 |1030 |28132 |
+ROW |56443 |1043 |28185 |
+ROW |56444 |1043 |28186 |
+ROW |56445 |1043 |28187 |
+ROW |56446 |1055 |28233 |
+ROW |56447 |1055 |28234 |
+ROW |56448 |1055 |28235 |
+ROW |56449 |1060 |28282 |
+ROW |56450 |1060 |28283 |
+ROW |56451 |1060 |28284 |
+ROW |56452 |1070 |28330 |
+ROW |56453 |1070 |28331 |
+ROW |56454 |1070 |28332 |
+ROW |56455 |1079 |28377 |
+ROW |56456 |1079 |28378 |
+ROW |56457 |1079 |28379 |
+ROW |56458 |1088 |28426 |
+ROW |56459 |1088 |28427 |
+ROW |56460 |1088 |28428 |
+ROW |56461 |1095 |28454 |
+ROW |56462 |1095 |28455 |
+ROW |56463 |1095 |28456 |
+ROW |56464 |1102 |28482 |
+ROW |56465 |1102 |28483 |
+ROW |56466 |1102 |28484 |
+ROW |56467 |1127 |28957 |
+ROW |56468 |1127 |28958 |
+ROW |56469 |1127 |28959 |
+ROW |56470 |1136 |29050 |
+ROW |56471 |1136 |29051 |
+ROW |56472 |1136 |29052 |
+ROW |56473 |1271 |30046 |
+ROW |56474 |1271 |30047 |
+ROW |56475 |1271 |30048 |
+ROW |56476 |798 |27141 |
+ROW |56477 |797 |27143 |
+ROW |56478 |798 |27146 |
+ROW |56479 |797 |29824 |
+ROW |56480 |798 |29825 |
+ROW |56481 |798 |29826 |
+ROW |56482 |798 |29827 |
+ROW |56483 |798 |29828 |
+ROW |56484 |911 |27611 |
+ROW |56485 |911 |27615 |
+ROW |56486 |912 |27618 |
+ROW |56487 |999 |28018 |
+ROW |56488 |999 |28022 |
+ROW |56489 |1000 |28025 |
+ROW |56490 |1087 |28429 |
+ROW |56491 |1087 |28433 |
+ROW |56492 |1088 |28436 |
+ROW |56493 |912 |29829 |
+ROW |56494 |911 |29830 |
+ROW |56495 |911 |29831 |
+ROW |56496 |911 |29832 |
+ROW |56497 |911 |29833 |
+ROW |56498 |1000 |29834 |
+ROW |56499 |999 |29835 |
+ROW |56500 |999 |29836 |
+ROW |56501 |999 |29837 |
+ROW |56502 |999 |29838 |
+ROW |56503 |1088 |29839 |
+ROW |56504 |1087 |29840 |
+ROW |56505 |1087 |29841 |
+ROW |56506 |1087 |29842 |
+ROW |56507 |1087 |29843 |
+ROW |56508 |800 |27152 |
+ROW |56509 |799 |27154 |
+ROW |56510 |800 |27157 |
+ROW |56511 |799 |29844 |
+ROW |56512 |800 |29845 |
+ROW |56513 |800 |29846 |
+ROW |56514 |800 |29847 |
+ROW |56515 |800 |29848 |
+ROW |56516 |804 |27195 |
+ROW |56517 |804 |27199 |
+ROW |56518 |805 |27202 |
+ROW |56519 |812 |27228 |
+ROW |56520 |812 |27232 |
+ROW |56521 |813 |27235 |
+ROW |56522 |821 |27264 |
+ROW |56523 |821 |27268 |
+ROW |56524 |822 |27271 |
+ROW |56525 |824 |27285 |
+ROW |56526 |824 |27289 |
+ROW |56527 |825 |27292 |
+ROW |56528 |841 |27336 |
+ROW |56529 |841 |27340 |
+ROW |56530 |842 |27343 |
+ROW |56531 |846 |27368 |
+ROW |56532 |846 |27372 |
+ROW |56533 |847 |27375 |
+ROW |56534 |875 |27465 |
+ROW |56535 |875 |27469 |
+ROW |56536 |876 |27472 |
+ROW |56537 |884 |27499 |
+ROW |56538 |884 |27503 |
+ROW |56539 |885 |27506 |
+ROW |56540 |893 |27535 |
+ROW |56541 |893 |27539 |
+ROW |56542 |894 |27542 |
+ROW |56543 |902 |27571 |
+ROW |56544 |902 |27575 |
+ROW |56545 |903 |27578 |
+ROW |56546 |914 |27634 |
+ROW |56547 |914 |27638 |
+ROW |56548 |915 |27641 |
+ROW |56549 |917 |27657 |
+ROW |56550 |917 |27661 |
+ROW |56551 |918 |27664 |
+ROW |56552 |935 |27737 |
+ROW |56553 |935 |27741 |
+ROW |56554 |936 |27744 |
+ROW |56555 |943 |27769 |
+ROW |56556 |943 |27773 |
+ROW |56557 |944 |27776 |
+ROW |56558 |950 |27803 |
+ROW |56559 |950 |27807 |
+ROW |56560 |951 |27810 |
+ROW |56561 |970 |27885 |
+ROW |56562 |970 |27889 |
+ROW |56563 |971 |27892 |
+ROW |56564 |978 |27922 |
+ROW |56565 |978 |27926 |
+ROW |56566 |979 |27929 |
+ROW |56567 |987 |27959 |
+ROW |56568 |987 |27963 |
+ROW |56569 |988 |27966 |
+ROW |56570 |993 |27989 |
+ROW |56571 |993 |27993 |
+ROW |56572 |994 |27996 |
+ROW |56573 |1029 |28133 |
+ROW |56574 |1029 |28137 |
+ROW |56575 |1030 |28140 |
+ROW |56576 |1042 |28188 |
+ROW |56577 |1042 |28192 |
+ROW |56578 |1043 |28195 |
+ROW |56579 |1054 |28236 |
+ROW |56580 |1054 |28240 |
+ROW |56581 |1055 |28243 |
+ROW |56582 |1059 |28285 |
+ROW |56583 |1059 |28289 |
+ROW |56584 |1060 |28292 |
+ROW |56585 |1069 |28333 |
+ROW |56586 |1069 |28337 |
+ROW |56587 |1070 |28340 |
+ROW |56588 |1078 |28380 |
+ROW |56589 |1078 |28384 |
+ROW |56590 |1079 |28387 |
+ROW |56591 |1094 |28457 |
+ROW |56592 |1094 |28461 |
+ROW |56593 |1095 |28464 |
+ROW |56594 |1101 |28485 |
+ROW |56595 |1101 |28489 |
+ROW |56596 |1102 |28492 |
+ROW |56597 |1126 |28960 |
+ROW |56598 |1126 |28964 |
+ROW |56599 |1127 |28967 |
+ROW |56600 |1135 |29053 |
+ROW |56601 |1135 |29057 |
+ROW |56602 |1136 |29060 |
+ROW |56603 |805 |29849 |
+ROW |56604 |804 |29850 |
+ROW |56605 |804 |29851 |
+ROW |56606 |804 |29852 |
+ROW |56607 |804 |29853 |
+ROW |56608 |813 |29854 |
+ROW |56609 |812 |29855 |
+ROW |56610 |812 |29856 |
+ROW |56611 |812 |29857 |
+ROW |56612 |812 |29858 |
+ROW |56613 |822 |29859 |
+ROW |56614 |821 |29860 |
+ROW |56615 |821 |29861 |
+ROW |56616 |821 |29862 |
+ROW |56617 |821 |29863 |
+ROW |56618 |825 |29864 |
+ROW |56619 |824 |29865 |
+ROW |56620 |824 |29866 |
+ROW |56621 |824 |29867 |
+ROW |56622 |824 |29868 |
+ROW |56623 |842 |29869 |
+ROW |56624 |841 |29870 |
+ROW |56625 |841 |29871 |
+ROW |56626 |841 |29872 |
+ROW |56627 |841 |29873 |
+ROW |56628 |847 |29874 |
+ROW |56629 |846 |29875 |
+ROW |56630 |846 |29876 |
+ROW |56631 |846 |29877 |
+ROW |56632 |846 |29878 |
+ROW |56633 |876 |29879 |
+ROW |56634 |875 |29880 |
+ROW |56635 |875 |29881 |
+ROW |56636 |875 |29882 |
+ROW |56637 |875 |29883 |
+ROW |56638 |885 |29884 |
+ROW |56639 |884 |29885 |
+ROW |56640 |884 |29886 |
+ROW |56641 |884 |29887 |
+ROW |56642 |884 |29888 |
+ROW |56643 |894 |29889 |
+ROW |56644 |893 |29890 |
+ROW |56645 |893 |29891 |
+ROW |56646 |893 |29892 |
+ROW |56647 |893 |29893 |
+ROW |56648 |903 |29894 |
+ROW |56649 |902 |29895 |
+ROW |56650 |902 |29896 |
+ROW |56651 |902 |29897 |
+ROW |56652 |902 |29898 |
+ROW |56653 |915 |29899 |
+ROW |56654 |914 |29900 |
+ROW |56655 |914 |29901 |
+ROW |56656 |914 |29902 |
+ROW |56657 |914 |29903 |
+ROW |56658 |918 |29904 |
+ROW |56659 |917 |29905 |
+ROW |56660 |917 |29906 |
+ROW |56661 |917 |29907 |
+ROW |56662 |917 |29908 |
+ROW |56663 |936 |29909 |
+ROW |56664 |935 |29910 |
+ROW |56665 |935 |29911 |
+ROW |56666 |935 |29912 |
+ROW |56667 |935 |29913 |
+ROW |56668 |944 |29914 |
+ROW |56669 |943 |29915 |
+ROW |56670 |943 |29916 |
+ROW |56671 |943 |29917 |
+ROW |56672 |943 |29918 |
+ROW |56673 |951 |29919 |
+ROW |56674 |950 |29920 |
+ROW |56675 |950 |29921 |
+ROW |56676 |950 |29922 |
+ROW |56677 |950 |29923 |
+ROW |56678 |971 |29924 |
+ROW |56679 |970 |29925 |
+ROW |56680 |970 |29926 |
+ROW |56681 |970 |29927 |
+ROW |56682 |970 |29928 |
+ROW |56683 |979 |29929 |
+ROW |56684 |978 |29930 |
+ROW |56685 |978 |29931 |
+ROW |56686 |978 |29932 |
+ROW |56687 |978 |29933 |
+ROW |56688 |988 |29934 |
+ROW |56689 |987 |29935 |
+ROW |56690 |987 |29936 |
+ROW |56691 |987 |29937 |
+ROW |56692 |987 |29938 |
+ROW |56693 |994 |29939 |
+ROW |56694 |993 |29940 |
+ROW |56695 |993 |29941 |
+ROW |56696 |993 |29942 |
+ROW |56697 |993 |29943 |
+ROW |56698 |1030 |29944 |
+ROW |56699 |1029 |29945 |
+ROW |56700 |1029 |29946 |
+ROW |56701 |1029 |29947 |
+ROW |56702 |1029 |29948 |
+ROW |56703 |1043 |29949 |
+ROW |56704 |1042 |29950 |
+ROW |56705 |1042 |29951 |
+ROW |56706 |1042 |29952 |
+ROW |56707 |1042 |29953 |
+ROW |56708 |1055 |29954 |
+ROW |56709 |1054 |29955 |
+ROW |56710 |1054 |29956 |
+ROW |56711 |1054 |29957 |
+ROW |56712 |1054 |29958 |
+ROW |56713 |1060 |29959 |
+ROW |56714 |1059 |29960 |
+ROW |56715 |1059 |29961 |
+ROW |56716 |1059 |29962 |
+ROW |56717 |1059 |29963 |
+ROW |56718 |1070 |29964 |
+ROW |56719 |1069 |29965 |
+ROW |56720 |1069 |29966 |
+ROW |56721 |1069 |29967 |
+ROW |56722 |1069 |29968 |
+ROW |56723 |1079 |29969 |
+ROW |56724 |1078 |29970 |
+ROW |56725 |1078 |29971 |
+ROW |56726 |1078 |29972 |
+ROW |56727 |1078 |29973 |
+ROW |56728 |1095 |29974 |
+ROW |56729 |1094 |29975 |
+ROW |56730 |1094 |29976 |
+ROW |56731 |1094 |29977 |
+ROW |56732 |1094 |29978 |
+ROW |56733 |1102 |29979 |
+ROW |56734 |1101 |29980 |
+ROW |56735 |1101 |29981 |
+ROW |56736 |1101 |29982 |
+ROW |56737 |1101 |29983 |
+ROW |56738 |1127 |29984 |
+ROW |56739 |1126 |29985 |
+ROW |56740 |1126 |29986 |
+ROW |56741 |1126 |29987 |
+ROW |56742 |1126 |29988 |
+ROW |56743 |1136 |29989 |
+ROW |56744 |1135 |29990 |
+ROW |56745 |1135 |29991 |
+ROW |56746 |1135 |29992 |
+ROW |56747 |1135 |29993 |
+ROW |56748 |1270 |30049 |
+ROW |56749 |1270 |30050 |
+ROW |56750 |1270 |30051 |
+ROW |56751 |1270 |30052 |
+ROW |56752 |1270 |30053 |
+ROW |56753 |1270 |30054 |
+ROW |56754 |1271 |30055 |
+ROW |56755 |1271 |30056 |
+ROW |56756 |1304 |30405 |
+ROW |56757 |1307 |30406 |
+ROW |56758 |1305 |30411 |
+ROW |56759 |1305 |30412 |
+ROW |56760 |1305 |30413 |
+ROW |56761 |1308 |30417 |
+ROW |56762 |1308 |30418 |
+ROW |56763 |1308 |30419 |
+ROW |56764 |1283 |30142 |
+ROW |56765 |1286 |30143 |
+ROW |56766 |1289 |30144 |
+ROW |56767 |1292 |30145 |
+ROW |56768 |1295 |30146 |
+ROW |56769 |1284 |30157 |
+ROW |56770 |1284 |30158 |
+ROW |56771 |1284 |30159 |
+ROW |56772 |1287 |30163 |
+ROW |56773 |1287 |30164 |
+ROW |56774 |1287 |30165 |
+ROW |56775 |1290 |30169 |
+ROW |56776 |1290 |30170 |
+ROW |56777 |1290 |30171 |
+ROW |56778 |1293 |30175 |
+ROW |56779 |1293 |30176 |
+ROW |56780 |1293 |30177 |
+ROW |56781 |1296 |30181 |
+ROW |56782 |1296 |30182 |
+ROW |56783 |1296 |30183 |
+ROW |56784 |1221 |22231 |
+ROW |56785 |1221 |22232 |
+ROW |56786 |1221 |23318 |
+ROW |56787 |1222 |29544 |
+ROW |56788 |1223 |29545 |
+ROW |56789 |1223 |29546 |
+ROW |56790 |1224 |29547 |
+ROW |56791 |1225 |10020 |
+ROW |56792 |1225 |10059 |
+ROW |56793 |1226 |22833 |
+ROW |56794 |1226 |22834 |
+ROW |56795 |1228 |22873 |
+ROW |56796 |1228 |22874 |
+ROW |56797 |1230 |22913 |
+ROW |56798 |1230 |22914 |
+ROW |56799 |1232 |22953 |
+ROW |56800 |1232 |22954 |
+ROW |56801 |1234 |22993 |
+ROW |56802 |1234 |22994 |
+ROW |56803 |1236 |23033 |
+ROW |56804 |1236 |23034 |
+ROW |56805 |1238 |23160 |
+ROW |56806 |1238 |23161 |
+ROW |56807 |1225 |23319 |
+ROW |56808 |1226 |23320 |
+ROW |56809 |1228 |23321 |
+ROW |56810 |1230 |23322 |
+ROW |56811 |1232 |23323 |
+ROW |56812 |1234 |23324 |
+ROW |56813 |1236 |23325 |
+ROW |56814 |1238 |23326 |
+ROW |56815 |1161 |29548 |
+ROW |56816 |1227 |29549 |
+ROW |56817 |1229 |29550 |
+ROW |56818 |1231 |29551 |
+ROW |56819 |1233 |29552 |
+ROW |56820 |1235 |29553 |
+ROW |56821 |1237 |29554 |
+ROW |56822 |1219 |29555 |
+ROW |56823 |1241 |29558 |
+ROW |56824 |1242 |29559 |
+ROW |56825 |1241 |29560 |
+ROW |56826 |1269 |29995 |
+ROW |56827 |1192 |29996 |
+ROW |56828 |1269 |29997 |
+ROW |56829 |1240 |23287 |
+ROW |56830 |1240 |23288 |
+ROW |56831 |1240 |23327 |
+ROW |56832 |1171 |29557 |
+ROW |56833 |810 |27203 |
+ROW |56834 |807 |27207 |
+ROW |56835 |806 |27208 |
+ROW |56836 |810 |30086 |
+ROW |56837 |807 |30087 |
+ROW |56838 |807 |30088 |
+ROW |56839 |807 |30089 |
+ROW |56840 |808 |27212 |
+ROW |56841 |809 |27213 |
+ROW |56842 |810 |27214 |
+ROW |56843 |1279 |30091 |
+ROW |56844 |1279 |30092 |
+ROW |56845 |1068 |28323 |
+ROW |56846 |1068 |28324 |
+ROW |56847 |1062 |28325 |
+ROW |56848 |1062 |28326 |
+ROW |56849 |1064 |28327 |
+ROW |56850 |1064 |28328 |
+ROW |56851 |1066 |28329 |
+ROW |56852 |819 |27236 |
+ROW |56853 |819 |27237 |
+ROW |56854 |813 |27238 |
+ROW |56855 |814 |27240 |
+ROW |56856 |815 |30093 |
+ROW |56857 |816 |27246 |
+ROW |56858 |816 |27247 |
+ROW |56859 |817 |27248 |
+ROW |56860 |818 |27249 |
+ROW |56861 |818 |27250 |
+ROW |56862 |826 |27294 |
+ROW |56863 |831 |27295 |
+ROW |56864 |831 |27296 |
+ROW |56865 |835 |27297 |
+ROW |56866 |827 |30094 |
+ROW |56867 |836 |27299 |
+ROW |56868 |838 |27301 |
+ROW |56869 |837 |30095 |
+ROW |56870 |839 |30096 |
+ROW |56871 |829 |27312 |
+ROW |56872 |830 |27313 |
+ROW |56873 |828 |27314 |
+ROW |56874 |828 |27315 |
+ROW |56875 |833 |27316 |
+ROW |56876 |834 |27317 |
+ROW |56877 |832 |27318 |
+ROW |56878 |835 |27319 |
+ROW |56879 |835 |27320 |
+ROW |56880 |851 |27376 |
+ROW |56881 |852 |27378 |
+ROW |56882 |852 |27379 |
+ROW |56883 |852 |30097 |
+ROW |56884 |869 |27380 |
+ROW |56885 |870 |27382 |
+ROW |56886 |870 |27383 |
+ROW |56887 |858 |27385 |
+ROW |56888 |858 |27386 |
+ROW |56889 |1048 |28209 |
+ROW |56890 |1048 |28210 |
+ROW |56891 |858 |30098 |
+ROW |56892 |870 |30099 |
+ROW |56893 |1048 |30100 |
+ROW |56894 |848 |27415 |
+ROW |56895 |848 |27416 |
+ROW |56896 |849 |27417 |
+ROW |56897 |852 |27419 |
+ROW |56898 |853 |27420 |
+ROW |56899 |853 |27421 |
+ROW |56900 |854 |27422 |
+ROW |56901 |855 |27423 |
+ROW |56902 |1056 |28246 |
+ROW |56903 |848 |30101 |
+ROW |56904 |856 |27425 |
+ROW |56905 |856 |27426 |
+ROW |56906 |857 |27427 |
+ROW |56907 |858 |27428 |
+ROW |56908 |859 |27429 |
+ROW |56909 |859 |27430 |
+ROW |56910 |860 |27431 |
+ROW |56911 |861 |27432 |
+ROW |56912 |868 |27443 |
+ROW |56913 |868 |27444 |
+ROW |56914 |870 |27445 |
+ROW |56915 |871 |27446 |
+ROW |56916 |871 |27447 |
+ROW |56917 |872 |27448 |
+ROW |56918 |873 |27449 |
+ROW |56919 |1048 |28208 |
+ROW |56920 |1049 |28215 |
+ROW |56921 |1050 |28216 |
+ROW |56922 |1051 |28217 |
+ROW |56923 |1051 |28218 |
+ROW |56924 |1052 |28220 |
+ROW |56925 |1052 |28222 |
+ROW |56926 |1057 |28247 |
+ROW |56927 |856 |30102 |
+ROW |56928 |868 |30103 |
+ROW |56929 |1052 |30104 |
+ROW |56930 |877 |27478 |
+ROW |56931 |880 |27479 |
+ROW |56932 |881 |27480 |
+ROW |56933 |882 |27481 |
+ROW |56934 |882 |27482 |
+ROW |56935 |882 |27483 |
+ROW |56936 |882 |27484 |
+ROW |56937 |879 |27485 |
+ROW |56938 |878 |30105 |
+ROW |56939 |891 |27508 |
+ROW |56940 |891 |27509 |
+ROW |56941 |891 |27510 |
+ROW |56942 |886 |27511 |
+ROW |56943 |891 |30106 |
+ROW |56944 |888 |27517 |
+ROW |56945 |890 |27518 |
+ROW |56946 |889 |27519 |
+ROW |56947 |887 |30107 |
+ROW |56948 |900 |27543 |
+ROW |56949 |900 |27544 |
+ROW |56950 |900 |27545 |
+ROW |56951 |900 |27546 |
+ROW |56952 |895 |27547 |
+ROW |56953 |897 |27553 |
+ROW |56954 |899 |27554 |
+ROW |56955 |898 |27555 |
+ROW |56956 |896 |30108 |
+ROW |56957 |909 |27579 |
+ROW |56958 |909 |27580 |
+ROW |56959 |909 |27582 |
+ROW |56960 |909 |27583 |
+ROW |56961 |906 |27584 |
+ROW |56962 |906 |27585 |
+ROW |56963 |904 |27586 |
+ROW |56964 |909 |30109 |
+ROW |56965 |905 |27591 |
+ROW |56966 |907 |27593 |
+ROW |56967 |908 |27594 |
+ROW |56968 |908 |27595 |
+ROW |56969 |905 |30110 |
+ROW |56970 |905 |30111 |
+ROW |56971 |919 |27671 |
+ROW |56972 |921 |27672 |
+ROW |56973 |922 |27673 |
+ROW |56974 |923 |27674 |
+ROW |56975 |924 |27675 |
+ROW |56976 |924 |27676 |
+ROW |56977 |924 |27677 |
+ROW |56978 |924 |27678 |
+ROW |56979 |924 |27679 |
+ROW |56980 |920 |30112 |
+ROW |56981 |1036 |28141 |
+ROW |56982 |1036 |28142 |
+ROW |56983 |1031 |28143 |
+ROW |56984 |1033 |28150 |
+ROW |56985 |1032 |28153 |
+ROW |56986 |1034 |28154 |
+ROW |56987 |1035 |28155 |
+ROW |56988 |1033 |28156 |
+ROW |56989 |1036 |28157 |
+ROW |56990 |1036 |28158 |
+ROW |56991 |1032 |30113 |
+ROW |56992 |1032 |30114 |
+ROW |56993 |1032 |30115 |
+ROW |56994 |941 |27748 |
+ROW |56995 |941 |27749 |
+ROW |56996 |941 |27750 |
+ROW |56997 |939 |27751 |
+ROW |56998 |937 |27753 |
+ROW |56999 |941 |27754 |
+ROW |57000 |940 |27755 |
+ROW |57001 |938 |30116 |
+ROW |57002 |948 |27777 |
+ROW |57003 |948 |27778 |
+ROW |57004 |945 |27783 |
+ROW |57005 |945 |27784 |
+ROW |57006 |948 |27785 |
+ROW |57007 |946 |27786 |
+ROW |57008 |947 |27787 |
+ROW |57009 |957 |27812 |
+ROW |57010 |957 |27813 |
+ROW |57011 |951 |27814 |
+ROW |57012 |957 |30117 |
+ROW |57013 |954 |27821 |
+ROW |57014 |956 |27822 |
+ROW |57015 |955 |27823 |
+ROW |57016 |952 |28894 |
+ROW |57017 |953 |30118 |
+ROW |57018 |1044 |28200 |
+ROW |57019 |1044 |28201 |
+ROW |57020 |1045 |28202 |
+ROW |57021 |1045 |28203 |
+ROW |57022 |1047 |28204 |
+ROW |57023 |1047 |28205 |
+ROW |57024 |1046 |28206 |
+ROW |57025 |976 |27893 |
+ROW |57026 |976 |27894 |
+ROW |57027 |976 |27895 |
+ROW |57028 |974 |27897 |
+ROW |57029 |973 |27898 |
+ROW |57030 |973 |27900 |
+ROW |57031 |976 |30119 |
+ROW |57032 |973 |30120 |
+ROW |57033 |972 |27904 |
+ROW |57034 |974 |27905 |
+ROW |57035 |975 |27906 |
+ROW |57036 |975 |27907 |
+ROW |57037 |975 |27908 |
+ROW |57038 |985 |27930 |
+ROW |57039 |985 |27931 |
+ROW |57040 |981 |27935 |
+ROW |57041 |980 |27936 |
+ROW |57042 |985 |30121 |
+ROW |57043 |981 |30122 |
+ROW |57044 |981 |30123 |
+ROW |57045 |982 |27940 |
+ROW |57046 |982 |27941 |
+ROW |57047 |984 |27942 |
+ROW |57048 |983 |27943 |
+ROW |57049 |991 |27967 |
+ROW |57050 |991 |27968 |
+ROW |57051 |991 |27970 |
+ROW |57052 |991 |27971 |
+ROW |57053 |990 |27972 |
+ROW |57054 |990 |27973 |
+ROW |57055 |989 |27975 |
+ROW |57056 |1282 |30124 |
+ROW |57057 |991 |30125 |
+ROW |57058 |990 |30126 |
+ROW |57059 |1280 |30129 |
+ROW |57060 |1281 |30130 |
+ROW |57061 |997 |27997 |
+ROW |57062 |997 |27998 |
+ROW |57063 |997 |27999 |
+ROW |57064 |997 |28000 |
+ROW |57065 |995 |28003 |
+ROW |57066 |996 |30131 |
+ROW |57067 |1003 |28026 |
+ROW |57068 |1003 |28027 |
+ROW |57069 |1001 |28031 |
+ROW |57070 |1002 |30132 |
+ROW |57071 |1002 |30133 |
+ROW |57072 |1002 |30134 |
+ROW |57073 |1002 |30135 |
+ROW |57074 |1002 |30136 |
+ROW |57075 |1142 |29087 |
+ROW |57076 |1142 |29088 |
+ROW |57077 |1142 |29089 |
+ROW |57078 |1142 |29090 |
+ROW |57079 |1142 |29091 |
+ROW |57080 |1142 |29092 |
+ROW |57081 |1142 |29093 |
+ROW |57082 |1142 |29094 |
+ROW |57083 |1142 |29095 |
+ROW |57084 |1142 |29096 |
+ROW |57085 |1142 |29097 |
+ROW |57086 |1142 |29098 |
+ROW |57087 |1142 |29099 |
+ROW |57088 |1142 |29100 |
+ROW |57089 |1142 |29101 |
+ROW |57090 |1142 |29102 |
+ROW |57091 |1144 |29103 |
+ROW |57092 |1144 |29104 |
+ROW |57093 |1144 |29105 |
+ROW |57094 |1144 |29106 |
+ROW |57095 |1144 |29107 |
+ROW |57096 |1144 |29108 |
+ROW |57097 |1146 |29109 |
+ROW |57098 |1151 |29110 |
+ROW |57099 |1148 |29111 |
+ROW |57100 |1148 |29112 |
+ROW |57101 |1148 |29113 |
+ROW |57102 |1148 |29114 |
+ROW |57103 |1148 |29115 |
+ROW |57104 |1148 |29116 |
+ROW |57105 |1148 |29117 |
+ROW |57106 |1148 |29118 |
+ROW |57107 |1148 |29119 |
+ROW |57108 |1150 |29120 |
+ROW |57109 |1149 |29121 |
+ROW |57110 |1149 |29122 |
+ROW |57111 |1149 |29123 |
+ROW |57112 |1152 |29124 |
+ROW |57113 |1152 |29125 |
+ROW |57114 |1152 |29126 |
+ROW |57115 |1152 |29127 |
+ROW |57116 |1152 |29128 |
+ROW |57117 |1152 |29129 |
+ROW |57118 |1152 |29130 |
+ROW |57119 |1152 |29131 |
+ROW |57120 |1152 |29132 |
+ROW |57121 |1152 |29133 |
+ROW |57122 |1152 |29134 |
+ROW |57123 |1152 |29135 |
+ROW |57124 |1152 |29136 |
+ROW |57125 |1152 |29137 |
+ROW |57126 |1152 |29138 |
+ROW |57127 |1152 |29139 |
+ROW |57128 |1154 |29140 |
+ROW |57129 |1154 |29141 |
+ROW |57130 |1154 |29142 |
+ROW |57131 |1154 |29143 |
+ROW |57132 |1154 |29144 |
+ROW |57133 |1154 |29145 |
+ROW |57134 |1156 |29146 |
+ROW |57135 |1161 |29147 |
+ROW |57136 |1158 |29148 |
+ROW |57137 |1158 |29149 |
+ROW |57138 |1158 |29150 |
+ROW |57139 |1158 |29151 |
+ROW |57140 |1158 |29152 |
+ROW |57141 |1158 |29153 |
+ROW |57142 |1158 |29154 |
+ROW |57143 |1158 |29155 |
+ROW |57144 |1158 |29156 |
+ROW |57145 |1160 |29157 |
+ROW |57146 |1159 |29158 |
+ROW |57147 |1159 |29159 |
+ROW |57148 |1159 |29160 |
+ROW |57149 |1162 |29161 |
+ROW |57150 |1162 |29162 |
+ROW |57151 |1162 |29163 |
+ROW |57152 |1162 |29164 |
+ROW |57153 |1162 |29165 |
+ROW |57154 |1162 |29166 |
+ROW |57155 |1162 |29167 |
+ROW |57156 |1162 |29168 |
+ROW |57157 |1162 |29169 |
+ROW |57158 |1162 |29170 |
+ROW |57159 |1162 |29171 |
+ROW |57160 |1162 |29172 |
+ROW |57161 |1162 |29173 |
+ROW |57162 |1162 |29174 |
+ROW |57163 |1162 |29175 |
+ROW |57164 |1162 |29176 |
+ROW |57165 |1164 |29177 |
+ROW |57166 |1164 |29178 |
+ROW |57167 |1164 |29179 |
+ROW |57168 |1164 |29180 |
+ROW |57169 |1164 |29181 |
+ROW |57170 |1164 |29182 |
+ROW |57171 |1166 |29183 |
+ROW |57172 |1171 |29184 |
+ROW |57173 |1168 |29185 |
+ROW |57174 |1168 |29186 |
+ROW |57175 |1168 |29187 |
+ROW |57176 |1168 |29188 |
+ROW |57177 |1168 |29189 |
+ROW |57178 |1168 |29190 |
+ROW |57179 |1168 |29191 |
+ROW |57180 |1168 |29192 |
+ROW |57181 |1168 |29193 |
+ROW |57182 |1170 |29194 |
+ROW |57183 |1169 |29195 |
+ROW |57184 |1169 |29196 |
+ROW |57185 |1169 |29197 |
+ROW |57186 |1142 |29198 |
+ROW |57187 |1152 |29199 |
+ROW |57188 |1162 |29200 |
+ROW |57189 |1146 |29254 |
+ROW |57190 |1146 |29255 |
+ROW |57191 |1156 |29260 |
+ROW |57192 |1156 |29261 |
+ROW |57193 |1166 |29266 |
+ROW |57194 |1166 |29267 |
+ROW |57195 |1173 |29273 |
+ROW |57196 |1173 |29274 |
+ROW |57197 |1173 |29275 |
+ROW |57198 |1173 |29276 |
+ROW |57199 |1173 |29277 |
+ROW |57200 |1173 |29278 |
+ROW |57201 |1173 |29279 |
+ROW |57202 |1173 |29280 |
+ROW |57203 |1173 |29281 |
+ROW |57204 |1173 |29282 |
+ROW |57205 |1173 |29283 |
+ROW |57206 |1173 |29284 |
+ROW |57207 |1173 |29285 |
+ROW |57208 |1173 |29286 |
+ROW |57209 |1173 |29287 |
+ROW |57210 |1173 |29288 |
+ROW |57211 |1175 |29289 |
+ROW |57212 |1175 |29290 |
+ROW |57213 |1175 |29291 |
+ROW |57214 |1175 |29292 |
+ROW |57215 |1175 |29293 |
+ROW |57216 |1175 |29294 |
+ROW |57217 |1177 |29295 |
+ROW |57218 |1182 |29296 |
+ROW |57219 |1179 |29297 |
+ROW |57220 |1179 |29298 |
+ROW |57221 |1179 |29299 |
+ROW |57222 |1179 |29300 |
+ROW |57223 |1179 |29301 |
+ROW |57224 |1179 |29302 |
+ROW |57225 |1179 |29303 |
+ROW |57226 |1179 |29304 |
+ROW |57227 |1179 |29305 |
+ROW |57228 |1181 |29306 |
+ROW |57229 |1180 |29307 |
+ROW |57230 |1180 |29308 |
+ROW |57231 |1180 |29309 |
+ROW |57232 |1183 |29310 |
+ROW |57233 |1183 |29311 |
+ROW |57234 |1183 |29312 |
+ROW |57235 |1183 |29313 |
+ROW |57236 |1183 |29314 |
+ROW |57237 |1183 |29315 |
+ROW |57238 |1183 |29316 |
+ROW |57239 |1183 |29317 |
+ROW |57240 |1183 |29318 |
+ROW |57241 |1183 |29319 |
+ROW |57242 |1183 |29320 |
+ROW |57243 |1183 |29321 |
+ROW |57244 |1183 |29322 |
+ROW |57245 |1183 |29323 |
+ROW |57246 |1183 |29324 |
+ROW |57247 |1183 |29325 |
+ROW |57248 |1185 |29326 |
+ROW |57249 |1185 |29327 |
+ROW |57250 |1185 |29328 |
+ROW |57251 |1185 |29329 |
+ROW |57252 |1185 |29330 |
+ROW |57253 |1185 |29331 |
+ROW |57254 |1187 |29332 |
+ROW |57255 |1192 |29333 |
+ROW |57256 |1189 |29334 |
+ROW |57257 |1189 |29335 |
+ROW |57258 |1189 |29336 |
+ROW |57259 |1189 |29337 |
+ROW |57260 |1189 |29338 |
+ROW |57261 |1189 |29339 |
+ROW |57262 |1189 |29340 |
+ROW |57263 |1189 |29341 |
+ROW |57264 |1189 |29342 |
+ROW |57265 |1191 |29343 |
+ROW |57266 |1190 |29344 |
+ROW |57267 |1190 |29345 |
+ROW |57268 |1190 |29346 |
+ROW |57269 |1173 |29347 |
+ROW |57270 |1183 |29348 |
+ROW |57271 |1177 |29385 |
+ROW |57272 |1177 |29386 |
+ROW |57273 |1187 |29391 |
+ROW |57274 |1187 |29392 |
+ROW |57275 |1201 |29395 |
+ROW |57276 |1196 |29396 |
+ROW |57277 |1196 |29397 |
+ROW |57278 |1194 |29398 |
+ROW |57279 |1193 |29399 |
+ROW |57280 |1196 |29400 |
+ROW |57281 |1196 |29401 |
+ROW |57282 |1196 |29402 |
+ROW |57283 |1196 |29403 |
+ROW |57284 |1194 |29404 |
+ROW |57285 |1193 |29405 |
+ROW |57286 |1193 |29406 |
+ROW |57287 |1193 |29407 |
+ROW |57288 |1193 |29408 |
+ROW |57289 |1193 |29409 |
+ROW |57290 |1193 |29410 |
+ROW |57291 |1193 |29411 |
+ROW |57292 |1193 |29412 |
+ROW |57293 |1193 |29413 |
+ROW |57294 |1194 |29414 |
+ROW |57295 |1197 |29415 |
+ROW |57296 |1193 |29416 |
+ROW |57297 |1193 |29417 |
+ROW |57298 |1193 |29418 |
+ROW |57299 |1193 |29419 |
+ROW |57300 |1193 |29420 |
+ROW |57301 |1199 |29421 |
+ROW |57302 |1195 |29422 |
+ROW |57303 |1194 |29423 |
+ROW |57304 |1194 |29424 |
+ROW |57305 |1194 |29425 |
+ROW |57306 |1193 |29426 |
+ROW |57307 |1193 |29427 |
+ROW |57308 |1195 |29428 |
+ROW |57309 |1201 |29450 |
+ROW |57310 |1201 |29451 |
+ROW |57311 |1128 |28978 |
+ROW |57312 |1128 |28979 |
+ROW |57313 |1128 |28980 |
+ROW |57314 |1128 |28981 |
+ROW |57315 |1128 |28982 |
+ROW |57316 |1128 |28983 |
+ROW |57317 |1128 |28984 |
+ROW |57318 |1128 |28985 |
+ROW |57319 |1128 |28986 |
+ROW |57320 |1130 |28987 |
+ROW |57321 |1130 |28988 |
+ROW |57322 |1130 |28989 |
+ROW |57323 |1130 |28990 |
+ROW |57324 |1130 |28991 |
+ROW |57325 |1130 |28992 |
+ROW |57326 |1132 |28993 |
+ROW |57327 |1132 |28994 |
+ROW |57328 |1132 |28995 |
+ROW |57329 |1132 |28996 |
+ROW |57330 |1132 |28997 |
+ROW |57331 |1132 |28998 |
+ROW |57332 |1132 |28999 |
+ROW |57333 |1132 |29000 |
+ROW |57334 |1132 |29001 |
+ROW |57335 |1134 |29002 |
+ROW |57336 |1134 |29003 |
+ROW |57337 |1134 |29004 |
+ROW |57338 |1134 |29005 |
+ROW |57339 |1134 |29006 |
+ROW |57340 |1134 |29007 |
+ROW |57341 |1130 |29017 |
+ROW |57342 |1130 |29018 |
+ROW |57343 |1130 |29019 |
+ROW |57344 |1130 |29020 |
+ROW |57345 |1130 |29021 |
+ROW |57346 |1130 |29022 |
+ROW |57347 |1130 |29023 |
+ROW |57348 |1130 |29024 |
+ROW |57349 |1130 |29025 |
+ROW |57350 |1130 |29026 |
+ROW |57351 |1134 |29034 |
+ROW |57352 |1134 |29035 |
+ROW |57353 |1134 |29036 |
+ROW |57354 |1134 |29037 |
+ROW |57355 |1134 |29038 |
+ROW |57356 |1134 |29039 |
+ROW |57357 |1134 |29040 |
+ROW |57358 |1134 |29041 |
+ROW |57359 |1134 |29042 |
+ROW |57360 |1134 |29043 |
+ROW |57361 |1130 |29048 |
+ROW |57362 |1134 |29049 |
+ROW |57363 |1202 |29454 |
+ROW |57364 |1202 |29455 |
+ROW |57365 |1202 |29456 |
+ROW |57366 |1202 |29457 |
+ROW |57367 |1202 |29458 |
+ROW |57368 |1202 |29459 |
+ROW |57369 |1203 |29460 |
+ROW |57370 |1203 |29461 |
+ROW |57371 |1203 |29462 |
+ROW |57372 |1203 |29463 |
+ROW |57373 |1203 |29464 |
+ROW |57374 |1203 |29465 |
+ROW |57375 |1203 |29466 |
+ROW |57376 |1203 |29467 |
+ROW |57377 |1203 |29468 |
+ROW |57378 |1203 |29469 |
+ROW |57379 |1203 |29470 |
+ROW |57380 |1206 |29471 |
+ROW |57381 |1209 |29472 |
+ROW |57382 |1207 |29473 |
+ROW |57383 |1207 |29474 |
+ROW |57384 |1207 |29475 |
+ROW |57385 |1207 |29476 |
+ROW |57386 |1207 |29477 |
+ROW |57387 |1208 |29478 |
+ROW |57388 |1211 |29479 |
+ROW |57389 |1202 |30137 |
+ROW |57390 |1212 |29480 |
+ROW |57391 |1212 |29481 |
+ROW |57392 |1212 |29482 |
+ROW |57393 |1212 |29483 |
+ROW |57394 |1212 |29484 |
+ROW |57395 |1212 |29485 |
+ROW |57396 |1213 |29486 |
+ROW |57397 |1213 |29487 |
+ROW |57398 |1213 |29488 |
+ROW |57399 |1213 |29489 |
+ROW |57400 |1213 |29490 |
+ROW |57401 |1213 |29491 |
+ROW |57402 |1213 |29492 |
+ROW |57403 |1213 |29493 |
+ROW |57404 |1213 |29494 |
+ROW |57405 |1213 |29495 |
+ROW |57406 |1213 |29496 |
+ROW |57407 |1216 |29497 |
+ROW |57408 |1219 |29498 |
+ROW |57409 |1217 |29499 |
+ROW |57410 |1217 |29500 |
+ROW |57411 |1217 |29501 |
+ROW |57412 |1217 |29502 |
+ROW |57413 |1217 |29503 |
+ROW |57414 |1218 |29504 |
+ROW |57415 |1216 |29505 |
+ROW |57416 |1212 |30138 |
+ROW |57417 |1310 |30425 |
+ROW |57418 |1311 |30426 |
+ROW |57419 |1243 |29561 |
+ROW |57420 |1243 |29562 |
+ROW |57421 |1243 |29563 |
+ROW |57422 |1243 |29564 |
+ROW |57423 |1243 |29565 |
+ROW |57424 |1243 |29566 |
+ROW |57425 |1244 |29567 |
+ROW |57426 |1244 |29568 |
+ROW |57427 |1244 |29569 |
+ROW |57428 |1244 |29570 |
+ROW |57429 |1244 |29571 |
+ROW |57430 |1244 |29572 |
+ROW |57431 |1244 |29573 |
+ROW |57432 |1244 |29574 |
+ROW |57433 |1244 |29575 |
+ROW |57434 |1244 |29576 |
+ROW |57435 |1244 |29577 |
+ROW |57436 |1247 |29578 |
+ROW |57437 |1250 |29579 |
+ROW |57438 |1248 |29580 |
+ROW |57439 |1248 |29581 |
+ROW |57440 |1248 |29582 |
+ROW |57441 |1248 |29583 |
+ROW |57442 |1248 |29584 |
+ROW |57443 |1249 |29585 |
+ROW |57444 |1252 |29586 |
+ROW |57445 |1243 |30139 |
+ROW |57446 |1253 |29587 |
+ROW |57447 |1253 |29588 |
+ROW |57448 |1253 |29589 |
+ROW |57449 |1253 |29590 |
+ROW |57450 |1253 |29591 |
+ROW |57451 |1253 |29592 |
+ROW |57452 |1254 |29593 |
+ROW |57453 |1254 |29594 |
+ROW |57454 |1254 |29595 |
+ROW |57455 |1254 |29596 |
+ROW |57456 |1254 |29597 |
+ROW |57457 |1254 |29598 |
+ROW |57458 |1254 |29599 |
+ROW |57459 |1254 |29600 |
+ROW |57460 |1254 |29601 |
+ROW |57461 |1254 |29602 |
+ROW |57462 |1254 |29603 |
+ROW |57463 |1257 |29604 |
+ROW |57464 |1242 |29605 |
+ROW |57465 |1258 |29606 |
+ROW |57466 |1258 |29607 |
+ROW |57467 |1258 |29608 |
+ROW |57468 |1258 |29609 |
+ROW |57469 |1258 |29610 |
+ROW |57470 |1259 |29611 |
+ROW |57471 |1257 |29612 |
+ROW |57472 |1253 |30140 |
+ROW |57473 |1312 |30429 |
+ROW |57474 |1313 |30430 |
+ROW |57475 |1325 |30685 |
+ROW |57476 |1277 |30066 |
+ROW |57477 |1277 |30067 |
+ROW |57478 |1277 |30068 |
+ROW |57479 |1277 |30069 |
+ROW |57480 |1277 |30070 |
+ROW |57481 |1276 |30071 |
+ROW |57482 |1271 |30072 |
+ROW |57483 |1274 |30073 |
+ROW |57484 |1274 |30074 |
+ROW |57485 |1273 |30075 |
+ROW |57486 |1275 |30076 |
+ROW |57487 |1275 |30077 |
+ROW |57488 |1275 |30078 |
+ROW |57489 |1275 |30079 |
+ROW |57490 |1278 |30080 |
+ROW |57491 |1278 |30081 |
+ROW |57492 |1278 |30082 |
+ROW |57493 |1272 |30083 |
+ROW |57494 |1272 |30084 |
+ROW |57495 |1272 |30085 |
+ROW |57496 |1070 |28341 |
+ROW |57497 |1073 |28342 |
+ROW |57498 |1073 |28344 |
+ROW |57499 |1073 |28345 |
+ROW |57500 |1073 |30141 |
+ROW |57501 |1076 |28354 |
+ROW |57502 |1076 |28355 |
+ROW |57503 |1076 |28356 |
+ROW |57504 |1076 |28357 |
+ROW |57505 |1075 |28358 |
+ROW |57506 |1072 |28359 |
+ROW |57507 |1072 |28360 |
+ROW |57508 |1074 |28361 |
+ROW |57509 |1074 |28362 |
+ROW |57510 |1074 |28363 |
+ROW |57511 |1074 |28364 |
+ROW |57512 |1074 |28365 |
+ROW |57513 |1074 |28366 |
+ROW |57514 |1074 |28367 |
+ROW |57515 |1077 |28368 |
+ROW |57516 |1077 |28369 |
+ROW |57517 |1077 |28370 |
+ROW |57518 |1077 |28371 |
+ROW |57519 |1077 |28372 |
+ROW |57520 |1077 |28373 |
+ROW |57521 |1071 |28374 |
+ROW |57522 |1071 |28375 |
+ROW |57523 |1071 |28376 |
+ROW |57524 |1085 |28388 |
+ROW |57525 |1082 |28390 |
+ROW |57526 |1082 |28391 |
+ROW |57527 |1079 |29994 |
+ROW |57528 |1085 |28404 |
+ROW |57529 |1085 |28405 |
+ROW |57530 |1085 |28406 |
+ROW |57531 |1085 |28407 |
+ROW |57532 |1085 |28408 |
+ROW |57533 |1085 |28409 |
+ROW |57534 |1085 |28410 |
+ROW |57535 |1084 |28411 |
+ROW |57536 |1081 |28412 |
+ROW |57537 |1080 |28413 |
+ROW |57538 |1080 |28414 |
+ROW |57539 |1080 |28415 |
+ROW |57540 |1080 |28416 |
+ROW |57541 |1083 |28417 |
+ROW |57542 |1083 |28418 |
+ROW |57543 |1083 |28419 |
+ROW |57544 |1083 |28420 |
+ROW |57545 |1083 |28421 |
+ROW |57546 |1083 |28422 |
+ROW |57547 |1086 |28423 |
+ROW |57548 |1086 |28424 |
+ROW |57549 |1086 |28425 |
+ROW |57550 |1088 |28437 |
+ROW |57551 |1090 |28438 |
+ROW |57552 |1090 |28439 |
+ROW |57553 |1093 |28446 |
+ROW |57554 |1093 |28447 |
+ROW |57555 |1093 |28448 |
+ROW |57556 |1092 |28449 |
+ROW |57557 |1089 |28450 |
+ROW |57558 |1089 |28451 |
+ROW |57559 |1091 |28452 |
+ROW |57560 |1091 |28453 |
+ROW |57561 |1095 |28465 |
+ROW |57562 |1097 |28466 |
+ROW |57563 |1097 |28467 |
+ROW |57564 |1100 |28474 |
+ROW |57565 |1100 |28475 |
+ROW |57566 |1100 |28476 |
+ROW |57567 |1099 |28477 |
+ROW |57568 |1096 |28478 |
+ROW |57569 |1096 |28479 |
+ROW |57570 |1098 |28480 |
+ROW |57571 |1098 |28481 |
+ROW |57572 |1104 |28495 |
+ROW |57573 |1103 |28496 |
TABLE |mappings
FIELDS|mappingid|valuemapid|value|newvalue |
@@ -15344,8 +15344,8 @@ FIELDS|sysmapid|name |width|height|backgroundid|label_type|label_locatio
ROW |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 |
TABLE |sysmaps_elements
-FIELDS|selementid|sysmapid|elementid|elementtype|iconid_off|iconid_on|label |label_location|x |y |iconid_disabled|iconid_maintenance|elementsubtype|areatype|width|height|viewtype|use_iconmap|application|
-ROW |1 |1 |10084 |0 |185 |NULL |{HOST.NAME}&eol;{HOST.CONN}|0 |111|61|NULL |NULL |0 |0 |200 |200 |0 |0 | |
+FIELDS|selementid|sysmapid|elementid|elementtype|iconid_off|iconid_on|label |label_location|x |y |iconid_disabled|iconid_maintenance|elementsubtype|areatype|width|height|viewtype|use_iconmap|application|
+ROW |1 |1 |10084 |0 |185 |NULL |{HOST.NAME}&eol;{HOST.CONN}|0 |111 |61 |NULL |NULL |0 |0 |200 |200 |0 |0 | |
TABLE |item_discovery
FIELDS|itemdiscoveryid|itemid|parent_itemid|
@@ -18440,2470 +18440,2470 @@ ROW |23367 |28953 |1 |11 |/resultset/row/field[@name='Slave_IO_Runn
ROW |23368 |28953 |2 |20 |1h |0 | |
ROW |23369 |28954 |1 |11 |/resultset/row/field[@name='Slave_SQL_Running']/text() |0 | |
ROW |23370 |28954 |2 |20 |1h |0 | |
-ROW |29224 |28742 |1 |21 |// Convert Apache status to JSON&bsn;var lines = value.split("\n");&bsn;var fields = {},&bsn; output = {},&bsn; workers = {&bsn; "_": 0, "S": 0, "R": 0,&bsn; "W": 0, "K": 0, "D": 0,&bsn; "C": 0, "L": 0, "G": 0,&bsn; "I": 0, ".": 0&bsn; };&bsn;&bsn;// Get all "Key: Value" pairs as an object&bsn;for (var i = 0; i < lines.length; i++) {&bsn; var line = lines[i].match(/([A-z0-9 ]+): (.*)/);&bsn; if (line !== null) {&bsn; output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);&bsn; }&bsn;}&bsn;&bsn;// For versions without "ServerUptimeSeconds" metric&bsn;output.ServerUptimeSeconds = output.ServerUptimeSeconds &pipe;&pipe; output.Uptime&bsn; &bsn;// Parse "Scoreboard" to get worker count&bsn;if (typeof output.Scoreboard === 'string') {&bsn; for (var i = 0; i < output.Scoreboard.length; i++) {&bsn; var char = output.Scoreboard[i];&bsn; workers[char]++;&bsn; }&bsn;}&bsn; &bsn;// Add worker data to the output&bsn;output.Workers = {&bsn; waiting: workers["_"], starting: workers["S"], reading: workers["R"],&bsn; sending: workers["W"], keepalive: workers["K"], dnslookup: workers["D"],&bsn; closing: workers["C"], logging: workers["L"], finishing: workers["G"],&bsn; cleanup: workers["I"], slot: workers["."]&bsn;};&bsn; &bsn;// Return JSON string&bsn;return JSON.stringify(output);|0 | |
-ROW |29225 |28743 |1 |20 |10m |0 | |
-ROW |29226 |28749 |1 |12 |$["Total Accesses"] |0 | |
-ROW |29227 |28750 |1 |12 |$.Workers.reading |0 | |
-ROW |29228 |28751 |1 |12 |$["Total kBytes"] |0 | |
-ROW |29229 |28751 |2 |1 |1024 |0 | |
-ROW |29230 |28752 |1 |12 |$["Total kBytes"] |0 | |
-ROW |29231 |28752 |2 |1 |1024 |0 | |
-ROW |29232 |28752 |3 |10 | |0 | |
-ROW |29233 |28753 |1 |12 |$.Workers.waiting |0 | |
-ROW |29234 |28754 |1 |12 |$.Workers.starting |0 | |
-ROW |29235 |28755 |1 |12 |$.Workers.slot |0 | |
-ROW |29236 |28756 |1 |12 |$.Workers.sending |0 | |
-ROW |29237 |28757 |1 |12 |$.Workers.logging |0 | |
-ROW |29238 |28758 |1 |12 |$.ServerUptimeSeconds |0 | |
-ROW |29239 |28759 |1 |12 |$.Workers.keepalive |0 | |
-ROW |29240 |28760 |1 |12 |$.Workers.cleanup |0 | |
-ROW |29241 |28761 |1 |12 |$["Total Accesses"] |0 | |
-ROW |29242 |28761 |2 |10 | |0 | |
-ROW |29243 |28762 |1 |12 |$.Workers.dnslookup |0 | |
-ROW |29244 |28763 |1 |12 |$.Workers.closing |0 | |
-ROW |29245 |28764 |1 |12 |$.IdleWorkers |0 | |
-ROW |29246 |28765 |1 |12 |$.BusyWorkers |0 | |
-ROW |29247 |28766 |1 |12 |$.ServerVersion |0 | |
-ROW |29248 |28766 |2 |20 |1d |0 | |
-ROW |29249 |28767 |1 |12 |$.Workers.finishing |0 | |
-ROW |29250 |28768 |1 |12 |$.ServerMPM |0 | |
-ROW |29251 |28768 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |29252 |28769 |1 |12 |$.ConnsAsyncClosing |0 | |
-ROW |29253 |28770 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
-ROW |29254 |28771 |1 |12 |$.ConnsAsyncWriting |0 | |
-ROW |29255 |28772 |1 |12 |$.ConnsTotal |0 | |
-ROW |29256 |28773 |1 |12 |$.BytesPerReq |0 | |
-ROW |29257 |28774 |1 |12 |$.Processes |0 | |
-ROW |29258 |28775 |1 |21 |// Convert Apache status to JSON&bsn;var lines = value.split("\n");&bsn;var fields = {},&bsn; output = {},&bsn; workers = {&bsn; "_": 0, "S": 0, "R": 0,&bsn; "W": 0, "K": 0, "D": 0,&bsn; "C": 0, "L": 0, "G": 0,&bsn; "I": 0, ".": 0&bsn; };&bsn;&bsn;// Get all "Key: Value" pairs as an object&bsn;for (var i = 0; i < lines.length; i++) {&bsn; var line = lines[i].match(/([A-z0-9 ]+): (.*)/);&bsn; if (line !== null) {&bsn; output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);&bsn; }&bsn;}&bsn;&bsn;// For versions without "ServerUptimeSeconds" metric&bsn;output.ServerUptimeSeconds = output.ServerUptimeSeconds &pipe;&pipe; output.Uptime&bsn; &bsn;// Parse "Scoreboard" to get worker count.&bsn;if (typeof output.Scoreboard === 'string') {&bsn; for (var i = 0; i < output.Scoreboard.length; i++) {&bsn; var char = output.Scoreboard[i];&bsn; workers[char]++;&bsn; }&bsn;}&bsn; &bsn;// Add worker data to the output&bsn;output.Workers = {&bsn; waiting: workers["_"], starting: workers["S"], reading: workers["R"],&bsn; sending: workers["W"], keepalive: workers["K"], dnslookup: workers["D"],&bsn; closing: workers["C"], logging: workers["L"], finishing: workers["G"],&bsn; cleanup: workers["I"], slot: workers["."]&bsn;};&bsn; &bsn;// Return JSON string&bsn;return JSON.stringify(output);|0 | |
-ROW |29259 |28776 |1 |20 |10m |0 | |
-ROW |29260 |28778 |1 |12 |$.Workers.starting |0 | |
-ROW |29261 |28779 |1 |12 |$.Workers.slot |0 | |
-ROW |29262 |28780 |1 |12 |$.Workers.sending |0 | |
-ROW |29263 |28781 |1 |12 |$.Workers.reading |0 | |
-ROW |29264 |28782 |1 |12 |$.Workers.logging |0 | |
-ROW |29265 |28783 |1 |12 |$.Workers.keepalive |0 | |
-ROW |29266 |28784 |1 |12 |$.Workers.cleanup |0 | |
-ROW |29267 |28785 |1 |12 |$.Workers.finishing |0 | |
-ROW |29268 |28786 |1 |12 |$.Workers.closing |0 | |
-ROW |29269 |28787 |1 |12 |$.Workers.dnslookup |0 | |
-ROW |29270 |28788 |1 |12 |$.IdleWorkers |0 | |
-ROW |29271 |28789 |1 |12 |$.BusyWorkers |0 | |
-ROW |29272 |28790 |1 |12 |$.ServerVersion |0 | |
-ROW |29273 |28790 |2 |20 |1d |0 | |
-ROW |29274 |28791 |1 |12 |$.ServerUptimeSeconds |0 | |
-ROW |29275 |28792 |1 |12 |$["Total Accesses"] |0 | |
-ROW |29276 |28793 |1 |12 |$["Total Accesses"] |0 | |
-ROW |29277 |28793 |2 |10 | |0 | |
-ROW |29278 |28794 |1 |12 |$["Total kBytes"] |0 | |
-ROW |29279 |28794 |2 |1 |1024 |0 | |
-ROW |29280 |28794 |3 |10 | |0 | |
-ROW |29281 |28795 |1 |12 |$["Total kBytes"] |0 | |
-ROW |29282 |28795 |2 |1 |1024 |0 | |
-ROW |29283 |28796 |1 |12 |$.Workers.waiting |0 | |
-ROW |29284 |28797 |1 |12 |$.ServerMPM |0 | |
-ROW |29285 |28797 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |29286 |28798 |1 |12 |$.ConnsAsyncClosing |0 | |
-ROW |29287 |28799 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
-ROW |29288 |28800 |1 |12 |$.ConnsAsyncWriting |0 | |
-ROW |29289 |28801 |1 |12 |$.ConnsTotal |0 | |
-ROW |29290 |28802 |1 |12 |$.BytesPerReq |0 | |
-ROW |29291 |28803 |1 |12 |$.Processes |0 | |
-ROW |29292 |30530 |1 |20 |10m |0 | |
-ROW |29293 |30532 |1 |12 |$.Architecture |0 | |
-ROW |29294 |30532 |2 |20 |1d |0 | |
-ROW |29295 |30533 |1 |12 |$.LiveRestoreEnabled |0 | |
-ROW |29296 |30533 |2 |6 | |0 | |
-ROW |29297 |30533 |3 |20 |1d |0 | |
-ROW |29298 |30534 |1 |12 |$.LoggingDriver |0 | |
-ROW |29299 |30534 |2 |20 |1d |0 | |
-ROW |29300 |30535 |1 |12 |$.MemoryLimit |0 | |
-ROW |29301 |30535 |2 |6 | |0 | |
-ROW |29302 |30535 |3 |20 |1d |0 | |
-ROW |29303 |30536 |1 |12 |$.MemTotal |0 | |
-ROW |29304 |30537 |1 |12 |$.Name |0 | |
-ROW |29305 |30538 |1 |12 |$.NCPU |0 | |
-ROW |29306 |30539 |1 |12 |$.NFd |0 | |
-ROW |29307 |30540 |1 |12 |$.NEventsListener |0 | |
-ROW |29308 |30541 |1 |12 |$.KernelVersion |0 | |
-ROW |29309 |30541 |2 |20 |1d |0 | |
-ROW |29310 |30542 |1 |12 |$.OomKillDisable |0 | |
-ROW |29311 |30542 |2 |6 | |0 | |
-ROW |29312 |30542 |3 |20 |1d |0 | |
-ROW |29313 |30543 |1 |12 |$.OperatingSystem |0 | |
-ROW |29314 |30543 |2 |20 |1d |0 | |
-ROW |29315 |30544 |1 |12 |$.OSType |0 | |
-ROW |29316 |30544 |2 |20 |1d |0 | |
-ROW |29317 |30545 |1 |12 |$.PidsLimit |0 | |
-ROW |29318 |30545 |2 |6 | |0 | |
-ROW |29319 |30545 |3 |20 |1d |0 | |
-ROW |29320 |30546 |1 |12 |$.DockerRootDir |0 | |
-ROW |29321 |30546 |2 |20 |1d |0 | |
-ROW |29322 |30547 |1 |12 |$.ServerVersion |0 | |
-ROW |29323 |30547 |2 |20 |1d |0 | |
-ROW |29324 |30548 |1 |12 |$.SwapLimit |0 | |
-ROW |29325 |30548 |2 |6 | |0 | |
-ROW |29326 |30548 |3 |20 |1d |0 | |
-ROW |29327 |30549 |1 |12 |$.LayersSize |0 | |
-ROW |29328 |30550 |1 |12 |$.IPv4Forwarding |0 | |
-ROW |29329 |30550 |2 |6 | |0 | |
-ROW |29330 |30550 |3 |20 |1d |0 | |
-ROW |29331 |30551 |1 |12 |$.KernelMemory |0 | |
-ROW |29332 |30551 |2 |6 | |0 | |
-ROW |29333 |30551 |3 |20 |1d |0 | |
-ROW |29334 |30552 |1 |12 |$.CPUSet |0 | |
-ROW |29335 |30552 |2 |6 | |0 | |
-ROW |29336 |30552 |3 |20 |1d |0 | |
-ROW |29337 |30553 |1 |12 |$.Containers[*].SizeRw.sum() |0 | |
-ROW |29338 |30554 |1 |12 |$.ContainersPaused |0 | |
-ROW |29339 |30555 |1 |12 |$.ContainersRunning |0 | |
-ROW |29340 |30556 |1 |12 |$.ContainersStopped |0 | |
-ROW |29341 |30557 |1 |12 |$.Containers |0 | |
-ROW |29342 |30558 |1 |12 |$.CpuCfsPeriod |0 | |
-ROW |29343 |30558 |2 |6 | |0 | |
-ROW |29344 |30558 |3 |20 |1d |0 | |
-ROW |29345 |30559 |1 |12 |$.CpuCfsQuota |0 | |
-ROW |29346 |30559 |2 |6 | |0 | |
-ROW |29347 |30559 |3 |20 |1d |0 | |
-ROW |29348 |30560 |1 |12 |$.CPUShares |0 | |
-ROW |29349 |30560 |2 |6 | |0 | |
-ROW |29350 |30560 |3 |20 |1d |0 | |
-ROW |29351 |30561 |1 |12 |$.KernelMemoryTCP |0 | |
-ROW |29352 |30561 |2 |6 | |0 | |
-ROW |29353 |30561 |3 |20 |1d |0 | |
-ROW |29354 |30562 |1 |12 |$.Debug |0 | |
-ROW |29355 |30562 |2 |6 | |0 | |
-ROW |29356 |30562 |3 |20 |1d |0 | |
-ROW |29357 |30563 |1 |12 |$.DefaultRuntime |0 | |
-ROW |29358 |30563 |2 |20 |1d |0 | |
-ROW |29359 |30564 |1 |12 |$.Driver |0 | |
-ROW |29360 |30564 |2 |20 |1d |0 | |
-ROW |29361 |30565 |1 |12 |$.NGoroutines |0 | |
-ROW |29362 |30566 |1 |12 |$.Images[*].Size.sum() |0 | |
-ROW |29363 |30567 |1 |12 |$.length() |0 | |
-ROW |29364 |30568 |1 |12 |$.Images |0 | |
-ROW |29365 |30569 |1 |12 |$.CgroupDriver |0 | |
-ROW |29366 |30569 |2 |20 |1d |0 | |
-ROW |29367 |30570 |1 |12 |$.Volumes[*].UsageData.Size.sum() |0 | |
-ROW |29368 |30575 |1 |12 |$.cpu_stats.online_cpus |0 | |
-ROW |29369 |30576 |1 |12 |$.memory_stats.commitbytes |0 | |
-ROW |29370 |30577 |1 |12 |$.memory_stats.commitpeakbytes |0 | |
-ROW |29371 |30578 |1 |12 |$.memory_stats.max_usage |0 | |
-ROW |29372 |30579 |1 |12 |$.memory_stats.privateworkingset |0 | |
-ROW |29373 |30580 |1 |12 |$.memory_stats.usage |0 | |
-ROW |29374 |30581 |1 |12 |$.Created |0 | |
-ROW |29375 |30581 |2 |20 |1d |0 | |
-ROW |29376 |30582 |1 |12 |$.cpu_stats.cpu_usage.total_usage |0 | |
-ROW |29377 |30582 |2 |10 | |0 | |
-ROW |29378 |30582 |3 |1 |1.0E-9 |0 | |
-ROW |29379 |30583 |1 |12 |$.networks[*].rx_bytes.sum() |2 |0 |
-ROW |29380 |30583 |2 |10 | |0 | |
-ROW |29381 |30584 |1 |12 |$.networks[*].rx_dropped.sum() |2 |0 |
-ROW |29382 |30584 |2 |10 | |0 | |
-ROW |29383 |30585 |1 |12 |$.networks[*].rx_errors.sum() |2 |0 |
-ROW |29384 |30585 |2 |10 | |0 | |
-ROW |29385 |30586 |1 |12 |$.networks[*].rx_packets.sum() |2 |0 |
-ROW |29386 |30586 |2 |10 | |0 | |
-ROW |29387 |30587 |1 |12 |$.networks[*].tx_bytes.sum() |2 |0 |
-ROW |29388 |30587 |2 |10 | |0 | |
-ROW |29389 |30588 |1 |12 |$.networks[*].tx_dropped.sum() |2 |0 |
-ROW |29390 |30588 |2 |10 | |0 | |
-ROW |29391 |30589 |1 |12 |$.networks[*].tx_errors.sum() |2 |0 |
-ROW |29392 |30589 |2 |10 | |0 | |
-ROW |29393 |30590 |1 |12 |$.cpu_stats.cpu_usage.usage_in_usermode |0 | |
-ROW |29394 |30590 |2 |10 | |0 | |
-ROW |29395 |30590 |3 |1 |1.0E-9 |0 | |
-ROW |29396 |30591 |1 |12 |$.cpu_stats.throttling_data.periods |0 | |
-ROW |29397 |30592 |1 |12 |$.State.FinishedAt |0 | |
-ROW |29398 |30592 |2 |20 |1d |0 | |
-ROW |29399 |30593 |1 |12 |$.State.OOMKilled |0 | |
-ROW |29400 |30593 |2 |6 | |0 | |
-ROW |29401 |30594 |1 |12 |$[?(@.Names[0] == "{#NAME}")].Image.first() |0 | |
-ROW |29402 |30594 |2 |20 |1d |0 | |
-ROW |29403 |30595 |1 |12 |$.RestartCount |0 | |
-ROW |29404 |30596 |1 |12 |$.State.StartedAt |0 | |
-ROW |29405 |30596 |2 |20 |1d |0 | |
-ROW |29406 |30597 |1 |12 |$.State.Dead |0 | |
-ROW |29407 |30597 |2 |6 | |0 | |
-ROW |29408 |30598 |1 |12 |$.State.Error |0 | |
-ROW |29409 |30598 |2 |20 |1d |0 | |
-ROW |29410 |30599 |1 |12 |$.State.ExitCode |0 | |
-ROW |29411 |30599 |2 |20 |1d |0 | |
-ROW |29412 |30600 |1 |12 |$.State.Paused |0 | |
-ROW |29413 |30600 |2 |6 | |0 | |
-ROW |29414 |30601 |1 |12 |$.cpu_stats.throttling_data.throttled_time |0 | |
-ROW |29415 |30601 |2 |1 |1.0E-9 |0 | |
-ROW |29416 |30602 |1 |12 |$.State.Pid |0 | |
-ROW |29417 |30602 |2 |20 |1d |0 | |
-ROW |29418 |30603 |1 |12 |$.State.Restarting |0 | |
-ROW |29419 |30603 |2 |6 | |0 | |
-ROW |29420 |30604 |1 |12 |$.State.Running |0 | |
-ROW |29421 |30604 |2 |6 | |0 | |
-ROW |29422 |30605 |1 |12 |$.State.Status |0 | |
-ROW |29423 |30605 |2 |20 |1h |0 | |
-ROW |29424 |30606 |1 |12 |$.cpu_stats.cpu_usage.usage_in_kernelmode |0 | |
-ROW |29425 |30606 |2 |10 | |0 | |
-ROW |29426 |30606 |3 |1 |1.0E-9 |0 | |
-ROW |29427 |30607 |1 |12 |$.cpu_stats.throttling_data.throttled_periods |0 | |
-ROW |29428 |30608 |1 |12 |$.networks[*].tx_packets.sum() |2 |0 |
-ROW |29429 |30608 |2 |10 | |0 | |
-ROW |29430 |30609 |1 |12 |$[?(@.Id == "{#ID}")].Created.first() |0 | |
-ROW |29431 |30609 |2 |20 |1d |0 | |
-ROW |29432 |30610 |1 |12 |$[?(@.Id == "{#ID}")].Size.first() |0 | |
-ROW |29433 |30188 |1 |20 |10m |0 | |
-ROW |29434 |30189 |1 |5 |# ([\s\S]*)&bsn;\1 |0 | |
-ROW |29435 |30189 |2 |24 |&bsn;&bsn;1 |0 | |
-ROW |29436 |30191 |1 |21 |try {&bsn; var t = value.match(/(\d+)d (\d+)h(\d+)m(\d+)s/);&bsn; return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy uptime is not found : " + error;&bsn;} |0 | |
-ROW |29437 |30192 |1 |21 |try {&bsn; return value.match(/HAProxy version (\d+\.\d+\.\d+),/)[1];&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy version is not found : " + error;&bsn;} |0 | |
-ROW |29438 |30192 |2 |20 |1d |0 | |
-ROW |29439 |30197 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |29440 |30197 |2 |10 | |0 | |
-ROW |29441 |30198 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |29442 |30198 |2 |10 | |0 | |
-ROW |29443 |30199 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |29444 |30199 |2 |10 | |0 | |
-ROW |29445 |30200 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |29446 |30201 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |29447 |30201 |2 |1 |0.001 |0 | |
-ROW |29448 |30202 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |29449 |30202 |2 |1 |0.001 |0 | |
-ROW |29450 |30203 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |29451 |30203 |2 |6 | |0 | |
-ROW |29452 |30203 |3 |20 |10m |0 | |
-ROW |29453 |30204 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |29454 |30204 |2 |10 | |0 | |
-ROW |29455 |30205 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |29456 |30205 |2 |10 | |0 | |
-ROW |29457 |30206 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |29458 |30206 |2 |1 |8 |0 | |
-ROW |29459 |30206 |3 |10 | |0 | |
-ROW |29460 |30207 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |29461 |30207 |2 |1 |8 |0 | |
-ROW |29462 |30207 |3 |10 | |0 | |
-ROW |29463 |30208 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |29464 |30208 |2 |10 | |0 | |
-ROW |29465 |30209 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |29466 |30209 |2 |10 | |0 | |
-ROW |29467 |30210 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
-ROW |29468 |30210 |2 |10 | |0 | |
-ROW |29469 |30211 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
-ROW |29470 |30211 |2 |10 | |0 | |
-ROW |29471 |30212 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
-ROW |29472 |30212 |2 |10 | |0 | |
-ROW |29473 |30213 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |29474 |30213 |2 |10 | |0 | |
-ROW |29475 |30214 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |29476 |30214 |2 |10 | |0 | |
-ROW |29477 |30215 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |29478 |30216 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |29479 |30217 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |29480 |30218 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |29481 |30218 |2 |20 |1h |0 | |
-ROW |29482 |30219 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |29483 |30219 |2 |10 | |0 | |
-ROW |29484 |30220 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |29485 |30220 |2 |10 | |0 | |
-ROW |29486 |30221 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |29487 |30221 |2 |10 | |0 | |
-ROW |29488 |30222 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |29489 |30222 |2 |10 | |0 | |
-ROW |29490 |30223 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |29491 |30223 |2 |10 | |0 | |
-ROW |29492 |30224 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |29493 |30225 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |29494 |30225 |2 |1 |0.001 |0 | |
-ROW |29495 |30226 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |29496 |30226 |2 |1 |0.001 |0 | |
-ROW |29497 |30227 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |29498 |30227 |2 |6 | |0 | |
-ROW |29499 |30227 |3 |20 |10m |0 | |
-ROW |29500 |30228 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |29501 |30228 |2 |10 | |0 | |
-ROW |29502 |30229 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |29503 |30229 |2 |10 | |0 | |
-ROW |29504 |30230 |1 |5 |# ([\s\S]*)\n&bsn;\1 |0 | |
-ROW |29505 |30230 |2 |24 |&bsn;&bsn;1 |0 | |
-ROW |29506 |30233 |1 |20 |10m |0 | |
-ROW |29507 |30234 |1 |21 |try {&bsn; var t = value.match(/(\d+)d (\d+)h(\d+)m(\d+)s/);&bsn; return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy uptime is not found : " + error;&bsn;} |0 | |
-ROW |29508 |30235 |1 |21 |try {&bsn; return value.match(/HAProxy version (\d+\.\d+\.\d+),/)[1];&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy version is not found : " + error;&bsn;} |0 | |
-ROW |29509 |30235 |2 |20 |1d |0 | |
-ROW |29510 |30240 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |29511 |30240 |2 |10 | |0 | |
-ROW |29512 |30241 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |29513 |30241 |2 |10 | |0 | |
-ROW |29514 |30242 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |29515 |30242 |2 |10 | |0 | |
-ROW |29516 |30243 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |29517 |30244 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |29518 |30244 |2 |1 |0.001 |0 | |
-ROW |29519 |30245 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |29520 |30245 |2 |1 |0.001 |0 | |
-ROW |29521 |30246 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |29522 |30246 |2 |6 | |0 | |
-ROW |29523 |30246 |3 |20 |10m |0 | |
-ROW |29524 |30247 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |29525 |30247 |2 |10 | |0 | |
-ROW |29526 |30248 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |29527 |30248 |2 |10 | |0 | |
-ROW |29528 |30249 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |29529 |30249 |2 |1 |8 |0 | |
-ROW |29530 |30249 |3 |10 | |0 | |
-ROW |29531 |30250 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |29532 |30250 |2 |1 |8 |0 | |
-ROW |29533 |30250 |3 |10 | |0 | |
-ROW |29534 |30251 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |29535 |30251 |2 |10 | |0 | |
-ROW |29536 |30252 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |29537 |30252 |2 |10 | |0 | |
-ROW |29538 |30253 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
-ROW |29539 |30253 |2 |10 | |0 | |
-ROW |29540 |30254 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
-ROW |29541 |30254 |2 |10 | |0 | |
-ROW |29542 |30255 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
-ROW |29543 |30255 |2 |10 | |0 | |
-ROW |29544 |30256 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |29545 |30256 |2 |10 | |0 | |
-ROW |29546 |30257 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |29547 |30257 |2 |10 | |0 | |
-ROW |29548 |30258 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |29549 |30259 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |29550 |30260 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |29551 |30261 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |29552 |30261 |2 |20 |1h |0 | |
-ROW |29553 |30262 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |29554 |30262 |2 |10 | |0 | |
-ROW |29555 |30263 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |29556 |30263 |2 |10 | |0 | |
-ROW |29557 |30264 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |29558 |30264 |2 |10 | |0 | |
-ROW |29559 |30265 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |29560 |30265 |2 |10 | |0 | |
-ROW |29561 |30266 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |29562 |30266 |2 |10 | |0 | |
-ROW |29563 |30267 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |29564 |30268 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |29565 |30268 |2 |1 |0.001 |0 | |
-ROW |29566 |30269 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |29567 |30269 |2 |1 |0.001 |0 | |
-ROW |29568 |30270 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |29569 |30270 |2 |6 | |0 | |
-ROW |29570 |30270 |3 |20 |10m |0 | |
-ROW |29571 |30271 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |29572 |30271 |2 |10 | |0 | |
-ROW |29573 |30272 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |29574 |30272 |2 |10 | |0 | |
-ROW |29575 |30611 |1 |20 |10m |0 | |
-ROW |29576 |30613 |1 |12 |$.cmd_flush |0 | |
-ROW |29577 |30613 |2 |10 | |0 | |
-ROW |29578 |30614 |1 |12 |$.bytes |0 | |
-ROW |29579 |30615 |1 |12 |$.uptime |0 | |
-ROW |29580 |30616 |1 |12 |$.total_items |0 | |
-ROW |29581 |30616 |2 |10 | |0 | |
-ROW |29582 |30617 |1 |12 |$.threads |0 | |
-ROW |29583 |30618 |1 |12 |$.get_misses |0 | |
-ROW |29584 |30618 |2 |10 | |0 | |
-ROW |29585 |30619 |1 |12 |$.get_hits |0 | |
-ROW |29586 |30619 |2 |10 | |0 | |
-ROW |29587 |30620 |1 |12 |$.evictions |0 | |
-ROW |29588 |30620 |2 |10 | |0 | |
-ROW |29589 |30621 |1 |12 |$.curr_items |0 | |
-ROW |29590 |30622 |1 |12 |$.bytes_written |0 | |
-ROW |29591 |30622 |2 |10 | |0 | |
-ROW |29592 |30623 |1 |12 |$.bytes_read |0 | |
-ROW |29593 |30623 |2 |10 | |0 | |
-ROW |29594 |30624 |1 |12 |$.pid |0 | |
-ROW |29595 |30624 |2 |20 |1d |0 | |
-ROW |29596 |30625 |1 |12 |$.cmd_get |0 | |
-ROW |29597 |30625 |2 |10 | |0 | |
-ROW |29598 |30626 |1 |12 |$.rusage_user |0 | |
-ROW |29599 |30627 |1 |12 |$.rusage_system |0 | |
-ROW |29600 |30628 |1 |12 |$.conn_yields |0 | |
-ROW |29601 |30628 |2 |10 | |0 | |
-ROW |29602 |30629 |1 |12 |$.connection_structures |0 | |
-ROW |29603 |30630 |1 |12 |$.total_connections |0 | |
-ROW |29604 |30630 |2 |10 | |0 | |
-ROW |29605 |30631 |1 |12 |$.listen_disabled_num |0 | |
-ROW |29606 |30631 |2 |10 | |0 | |
-ROW |29607 |30632 |1 |12 |$.max_connections |0 | |
-ROW |29608 |30632 |2 |20 |30m |0 | |
-ROW |29609 |30633 |1 |12 |$.curr_connections |0 | |
-ROW |29610 |30634 |1 |12 |$.limit_maxbytes |0 | |
-ROW |29611 |30634 |2 |20 |30m |0 | |
-ROW |29612 |30635 |1 |12 |$.cmd_set |0 | |
-ROW |29613 |30635 |2 |10 | |0 | |
-ROW |29614 |30636 |1 |12 |$.version |0 | |
-ROW |29615 |30636 |2 |20 |1d |0 | |
-ROW |29616 |28810 |1 |20 |10m |0 | |
-ROW |29617 |28811 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
-ROW |29618 |28812 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
-ROW |29619 |28813 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
-ROW |29620 |28814 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
-ROW |29621 |28815 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
-ROW |29622 |28815 |2 |10 | |0 | |
-ROW |29623 |28816 |1 |21 |var a = value.match(/server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)/)&bsn;if (a) {&bsn; return a[1]-a[2]&bsn;} |0 | |
-ROW |29624 |28816 |2 |10 | |0 | |
-ROW |29625 |28817 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
-ROW |29626 |28817 |2 |10 | |0 | |
-ROW |29627 |28818 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |29628 |28818 |2 |10 | |0 | |
-ROW |29629 |28819 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |29630 |28820 |1 |5 |Server: nginx/(.+)&bsn;\1 |0 | |
-ROW |29631 |28820 |2 |20 |1d |0 | |
-ROW |29632 |28822 |1 |20 |10m |0 | |
-ROW |29633 |28824 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |29634 |28825 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |29635 |28825 |2 |10 | |0 | |
-ROW |29636 |28826 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
-ROW |29637 |28826 |2 |10 | |0 | |
-ROW |29638 |28827 |1 |21 |var a = value.match(/server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)/)&bsn;if (a) {&bsn; return a[1]-a[2]&bsn;} |0 | |
-ROW |29639 |28827 |2 |10 | |0 | |
-ROW |29640 |28828 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
-ROW |29641 |28828 |2 |10 | |0 | |
-ROW |29642 |28829 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
-ROW |29643 |28830 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
-ROW |29644 |28831 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
-ROW |29645 |28832 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
-ROW |29646 |28833 |1 |5 |Server: nginx/(.+)&bsn;\1 |0 | |
-ROW |29647 |28833 |2 |20 |1d |0 | |
-ROW |29648 |29653 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |29649 |29654 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |29650 |29655 |1 |20 |10m |0 | |
-ROW |29651 |29661 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |29652 |29662 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |29653 |29662 |2 |12 |$.status |0 | |
-ROW |29654 |29662 |3 |6 | |2 |0 |
-ROW |29655 |29998 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |29656 |29999 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |29657 |29687 |1 |12 |$.mem_used |0 | |
-ROW |29658 |29688 |1 |12 |$.disk_free_alarm |0 | |
-ROW |29659 |29688 |2 |6 | |0 | |
-ROW |29660 |29691 |1 |12 |$.fd_used |0 | |
-ROW |29661 |29692 |1 |12 |$.uptime |0 | |
-ROW |29662 |29692 |2 |1 |0.001 |0 | |
-ROW |29663 |29693 |1 |12 |$.mem_alarm |0 | |
-ROW |29664 |29693 |2 |6 | |0 | |
-ROW |29665 |29694 |1 |12 |$.mem_limit |0 | |
-ROW |29666 |29695 |1 |12 |$.running |0 | |
-ROW |29667 |29695 |2 |6 | |0 | |
-ROW |29668 |29696 |1 |12 |$.partitions |0 | |
-ROW |29669 |29696 |2 |21 |return JSON.parse(value).length; |0 | |
-ROW |29670 |29697 |1 |12 |$.sockets_total |0 | |
-ROW |29671 |29698 |1 |12 |$.disk_free |0 | |
-ROW |29672 |29699 |1 |12 |$.run_queue |0 | |
-ROW |29673 |29700 |1 |12 |$.disk_free_limit |0 | |
-ROW |29674 |29701 |1 |12 |$.sockets_used |0 | |
-ROW |29675 |30000 |1 |12 |$.message_stats.redeliver |2 |0 |
-ROW |29676 |30001 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
-ROW |29677 |30002 |1 |12 |$.message_stats.return_unroutable |2 |0 |
-ROW |29678 |30003 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
-ROW |29679 |30004 |1 |12 |$.message_stats.publish_out |2 |0 |
-ROW |29680 |30005 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
-ROW |29681 |30006 |1 |12 |$.message_stats.publish_in |2 |0 |
-ROW |29682 |30007 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
-ROW |29683 |30008 |1 |12 |$.message_stats.publish |2 |0 |
-ROW |29684 |30009 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
-ROW |29685 |30010 |1 |12 |$.message_stats.deliver_get |2 |0 |
-ROW |29686 |30011 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
-ROW |29687 |30012 |1 |12 |$.message_stats.confirm |2 |0 |
-ROW |29688 |30013 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
-ROW |29689 |30014 |1 |12 |$.message_stats.ack |2 |0 |
-ROW |29690 |30015 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
-ROW |29691 |30016 |1 |12 |$.queue_totals.messages_ready |0 | |
-ROW |29692 |30017 |1 |12 |$.queue_totals.messages |0 | |
-ROW |29693 |30018 |1 |12 |$.object_totals.exchanges |0 | |
-ROW |29694 |30019 |1 |12 |$.object_totals.consumers |0 | |
-ROW |29695 |30020 |1 |12 |$.object_totals.queues |0 | |
-ROW |29696 |30021 |1 |12 |$.object_totals.channels |0 | |
-ROW |29697 |30022 |1 |12 |$.object_totals.connections |0 | |
-ROW |29698 |30023 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
-ROW |29699 |30024 |1 |12 |$.management_version |0 | |
-ROW |29700 |30024 |2 |20 |1d |0 | |
-ROW |29701 |30025 |1 |12 |$.rabbitmq_version |0 | |
-ROW |29702 |30025 |2 |20 |1d |0 | |
-ROW |29703 |29720 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
-ROW |29704 |29721 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
-ROW |29705 |29722 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
-ROW |29706 |29723 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |29707 |29724 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
-ROW |29708 |29725 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |29709 |29726 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
-ROW |29710 |29727 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
-ROW |29711 |29728 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |29712 |29729 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
-ROW |29713 |29730 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
-ROW |29714 |29731 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
-ROW |29715 |29732 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
-ROW |29716 |29733 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
-ROW |29717 |29734 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
-ROW |29718 |29735 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
-ROW |29719 |29736 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
-ROW |29720 |29737 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |29721 |30027 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
-ROW |29722 |30028 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |29723 |30029 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
-ROW |29724 |30030 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
-ROW |29725 |30031 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
-ROW |29726 |30032 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |29727 |30033 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
-ROW |29728 |30034 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |29729 |30035 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
-ROW |29730 |30036 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
-ROW |29731 |30037 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
-ROW |29732 |30038 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
-ROW |29733 |30039 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
-ROW |29734 |30040 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
-ROW |29735 |30041 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
-ROW |29736 |30042 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |29737 |29742 |1 |20 |10m |0 | |
-ROW |29738 |29744 |1 |12 |$.status |0 | |
-ROW |29739 |29744 |2 |6 | |2 |0 |
-ROW |29740 |29746 |1 |12 |$.message_stats.redeliver |2 |0 |
-ROW |29741 |29747 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
-ROW |29742 |29748 |1 |12 |$.message_stats.return_unroutable |2 |0 |
-ROW |29743 |29749 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
-ROW |29744 |29750 |1 |12 |$.message_stats.publish_out |2 |0 |
-ROW |29745 |29751 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
-ROW |29746 |29752 |1 |12 |$.message_stats.publish_in |2 |0 |
-ROW |29747 |29753 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
-ROW |29748 |29754 |1 |12 |$.message_stats.publish |2 |0 |
-ROW |29749 |29755 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
-ROW |29750 |29756 |1 |12 |$.message_stats.deliver_get |2 |0 |
-ROW |29751 |29757 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
-ROW |29752 |29758 |1 |12 |$.message_stats.confirm |2 |0 |
-ROW |29753 |29759 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
-ROW |29754 |29760 |1 |12 |$.message_stats.ack |2 |0 |
-ROW |29755 |29761 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
-ROW |29756 |29762 |1 |12 |$.queue_totals.messages_ready |0 | |
-ROW |29757 |29763 |1 |12 |$.queue_totals.messages |0 | |
-ROW |29758 |29764 |1 |12 |$.object_totals.exchanges |0 | |
-ROW |29759 |29765 |1 |12 |$.object_totals.consumers |0 | |
-ROW |29760 |29766 |1 |12 |$.object_totals.queues |0 | |
-ROW |29761 |29767 |1 |12 |$.object_totals.channels |0 | |
-ROW |29762 |29768 |1 |12 |$.object_totals.connections |0 | |
-ROW |29763 |29769 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
-ROW |29764 |29771 |1 |12 |$.partitions |0 | |
-ROW |29765 |29771 |2 |21 |return JSON.parse(value).length; |0 | |
-ROW |29766 |29772 |1 |12 |$.uptime |0 | |
-ROW |29767 |29772 |2 |1 |0.001 |0 | |
-ROW |29768 |29773 |1 |12 |$.disk_free_alarm |0 | |
-ROW |29769 |29773 |2 |6 | |0 | |
-ROW |29770 |29774 |1 |12 |$.mem_alarm |0 | |
-ROW |29771 |29774 |2 |6 | |0 | |
-ROW |29772 |29775 |1 |12 |$.running |0 | |
-ROW |29773 |29775 |2 |6 | |0 | |
-ROW |29774 |29776 |1 |12 |$.sockets_used |0 | |
-ROW |29775 |29777 |1 |12 |$.sockets_total |0 | |
-ROW |29776 |29779 |1 |12 |$.run_queue |0 | |
-ROW |29777 |29780 |1 |12 |$.mem_used |0 | |
-ROW |29778 |29781 |1 |12 |$.disk_free_limit |0 | |
-ROW |29779 |29782 |1 |12 |$.disk_free |0 | |
-ROW |29780 |29783 |1 |12 |$.fd_used |0 | |
-ROW |29781 |29784 |1 |12 |$.mem_limit |0 | |
-ROW |29782 |30044 |1 |12 |$.management_version |0 | |
-ROW |29783 |30044 |2 |20 |1d |0 | |
-ROW |29784 |30045 |1 |12 |$.rabbitmq_version |0 | |
-ROW |29785 |30045 |2 |20 |1d |0 | |
-ROW |29786 |29787 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
-ROW |29787 |29788 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |29788 |29789 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
-ROW |29789 |29790 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
-ROW |29790 |29791 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
-ROW |29791 |29792 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |29792 |29793 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
-ROW |29793 |29794 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |29794 |29795 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
-ROW |29795 |29796 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
-ROW |29796 |29797 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
-ROW |29797 |29798 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
-ROW |29798 |29799 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
-ROW |29799 |29800 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
-ROW |29800 |29801 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
-ROW |29801 |29802 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |29802 |29803 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
-ROW |29803 |29804 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
-ROW |29804 |29805 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
-ROW |29805 |29806 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |29806 |29807 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
-ROW |29807 |29808 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |29808 |29809 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
-ROW |29809 |29810 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
-ROW |29810 |29811 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |29811 |29812 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
-ROW |29812 |29813 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
-ROW |29813 |29814 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
-ROW |29814 |29815 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
-ROW |29815 |29816 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
-ROW |29816 |29817 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
-ROW |29817 |29818 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
-ROW |29818 |29819 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
-ROW |29819 |29820 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |29820 |28501 |1 |10 | |0 | |
-ROW |29821 |28514 |1 |10 | |0 | |
-ROW |29822 |28517 |1 |10 | |0 | |
-ROW |29823 |28519 |1 |10 | |0 | |
-ROW |29824 |28520 |1 |1 |0.001 |0 | |
-ROW |29825 |28521 |1 |10 | |0 | |
-ROW |29826 |28522 |1 |10 | |0 | |
-ROW |29827 |28523 |1 |10 | |0 | |
-ROW |29828 |28524 |1 |10 | |0 | |
-ROW |29829 |28525 |1 |1 |0.001 |0 | |
-ROW |29830 |28526 |1 |10 | |0 | |
-ROW |29831 |28527 |1 |10 | |0 | |
-ROW |29832 |28528 |1 |10 | |0 | |
-ROW |29833 |28529 |1 |10 | |0 | |
-ROW |29834 |28530 |1 |1 |0.001 |0 | |
-ROW |29835 |28531 |1 |10 | |0 | |
-ROW |29836 |26876 |1 |1 |0.001 |0 | |
-ROW |29837 |26881 |1 |1 |100 |0 | |
-ROW |29838 |26884 |1 |10 | |0 | |
-ROW |29839 |26885 |1 |1 |0.001 |0 | |
-ROW |29840 |26886 |1 |1 |0.001 |0 | |
-ROW |29841 |26887 |1 |10 | |0 | |
-ROW |29842 |26888 |1 |1 |0.001 |0 | |
-ROW |29843 |26889 |1 |10 | |0 | |
-ROW |29844 |26890 |1 |1 |0.001 |0 | |
-ROW |29845 |26894 |1 |1 |0.001 |0 | |
-ROW |29846 |26895 |1 |10 | |0 | |
-ROW |29847 |26896 |1 |10 | |0 | |
-ROW |29848 |26897 |1 |1 |0.001 |0 | |
-ROW |29849 |26905 |1 |1 |0.001 |0 | |
-ROW |29850 |26906 |1 |10 | |0 | |
-ROW |29851 |28586 |1 |12 |$.queue |0 | |
-ROW |29852 |28587 |1 |12 |$.queue |0 | |
-ROW |29853 |28588 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
-ROW |29854 |28589 |1 |12 |$.data.wcache.values.uint |0 | |
-ROW |29855 |28589 |2 |10 | |0 | |
-ROW |29856 |28590 |1 |12 |$.data.wcache.values.text |0 | |
-ROW |29857 |28590 |2 |10 | |0 | |
-ROW |29858 |28591 |1 |12 |$.data.wcache.values.str |0 | |
-ROW |29859 |28591 |2 |10 | |0 | |
-ROW |29860 |28592 |1 |12 |$.data.wcache.values['not supported'] |0 | |
-ROW |29861 |28592 |2 |10 | |0 | |
-ROW |29862 |28593 |1 |12 |$.data.wcache.values.log |0 | |
-ROW |29863 |28593 |2 |10 | |0 | |
-ROW |29864 |28594 |1 |12 |$.data.wcache.values.float |0 | |
-ROW |29865 |28594 |2 |10 | |0 | |
-ROW |29866 |28595 |1 |12 |$.data.wcache.values.all |0 | |
-ROW |29867 |28595 |2 |10 | |0 | |
-ROW |29868 |28596 |1 |12 |$.data.wcache.index.pused |0 | |
-ROW |29869 |28597 |1 |12 |$.data.wcache.history.pused |0 | |
-ROW |29870 |28598 |1 |12 |$.data.vmware.pused |0 | |
-ROW |29871 |28599 |1 |12 |$.data.rcache.pused |0 | |
-ROW |29872 |28600 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
-ROW |29873 |28601 |1 |12 |$.data.process['data sender'].busy.avg |0 | |
-ROW |29874 |28602 |1 |12 |$.data.process.trapper.busy.avg |0 | |
-ROW |29875 |28603 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
-ROW |29876 |28604 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
-ROW |29877 |28605 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
-ROW |29878 |28606 |1 |12 |$.data.process.poller.busy.avg |0 | |
-ROW |29879 |28607 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
-ROW |29880 |28608 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
-ROW |29881 |28609 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
-ROW |29882 |28610 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
-ROW |29883 |28611 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
-ROW |29884 |28612 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
-ROW |29885 |28613 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
-ROW |29886 |28614 |1 |12 |$.data.process['heartbeat sender'].busy.avg |0 | |
-ROW |29887 |28615 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
-ROW |29888 |28616 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
-ROW |29889 |28540 |1 |12 |$.queue |0 | |
-ROW |29890 |28541 |1 |12 |$.queue |0 | |
-ROW |29891 |28542 |1 |12 |$.data.wcache.index.pused |0 | |
-ROW |29892 |28543 |1 |12 |$.data.rcache.pused |0 | |
-ROW |29893 |28544 |1 |12 |$.data.vcache.buffer.pused |0 | |
-ROW |29894 |28545 |1 |12 |$.data.vcache.cache.hits |0 | |
-ROW |29895 |28545 |2 |10 | |0 | |
-ROW |29896 |28546 |1 |12 |$.data.vcache.cache.misses |0 | |
-ROW |29897 |28546 |2 |10 | |0 | |
-ROW |29898 |28547 |1 |12 |$.data.vcache.cache.mode |0 | |
-ROW |29899 |28548 |1 |12 |$.data.vmware.pused |0 | |
-ROW |29900 |28549 |1 |12 |$.data.wcache.history.pused |0 | |
-ROW |29901 |28550 |1 |12 |$.data.wcache.values.all |0 | |
-ROW |29902 |28550 |2 |10 | |0 | |
-ROW |29903 |28551 |1 |12 |$.data.wcache.trend.pused |0 | |
-ROW |29904 |28552 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
-ROW |29905 |28553 |1 |12 |$.data.wcache.values.float |0 | |
-ROW |29906 |28553 |2 |10 | |0 | |
-ROW |29907 |28554 |1 |12 |$.data.wcache.values.log |0 | |
-ROW |29908 |28554 |2 |10 | |0 | |
-ROW |29909 |28555 |1 |12 |$.data.wcache.values['not supported'] |0 | |
-ROW |29910 |28555 |2 |10 | |0 | |
-ROW |29911 |28556 |1 |12 |$.data.wcache.values.str |0 | |
-ROW |29912 |28556 |2 |10 | |0 | |
-ROW |29913 |28557 |1 |12 |$.data.wcache.values.text |0 | |
-ROW |29914 |28557 |2 |10 | |0 | |
-ROW |29915 |28558 |1 |12 |$.data.wcache.values.uint |0 | |
-ROW |29916 |28558 |2 |10 | |0 | |
-ROW |29917 |28559 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
-ROW |29918 |28560 |1 |12 |$.data.preprocessing_queue |0 | |
-ROW |29919 |28561 |1 |12 |$.data.process.alerter.busy.avg |0 | |
-ROW |29920 |28562 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
-ROW |29921 |28563 |1 |12 |$.data.process['alert manager'].busy.avg |0 | |
-ROW |29922 |28564 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
-ROW |29923 |28565 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
-ROW |29924 |28566 |1 |12 |$.data.process.escalator.busy.avg |0 | |
-ROW |29925 |28567 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
-ROW |29926 |28568 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
-ROW |29927 |28569 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
-ROW |29928 |28570 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
-ROW |29929 |28571 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
-ROW |29930 |28572 |1 |12 |$.data.process.timer.busy.avg |0 | |
-ROW |29931 |28573 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
-ROW |29932 |28574 |1 |12 |$.data.process.poller.busy.avg |0 | |
-ROW |29933 |28575 |1 |12 |$.data.process['preprocessing manager'].busy.avg |0 | |
-ROW |29934 |28576 |1 |12 |$.data.process['preprocessing worker'].busy.avg |0 | |
-ROW |29935 |28577 |1 |12 |$.data.process['proxy poller'].busy.avg |0 | |
-ROW |29936 |28578 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
-ROW |29937 |28579 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
-ROW |29938 |28580 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
-ROW |29939 |28581 |1 |12 |$.data.process.trapper.busy.avg |0 | |
-ROW |29940 |28582 |1 |12 |$.data.process['lld manager'].busy.avg |0 | |
-ROW |29941 |28583 |1 |12 |$.data.process['lld worker'].busy.avg |0 | |
-ROW |29942 |28584 |1 |12 |$.data.lld_queue |0 | |
-ROW |29943 |29821 |1 |12 |$.data.process['alert syncer'].busy.avg |0 | |
-ROW |29944 |10067 |1 |10 | |0 | |
-ROW |29945 |10068 |1 |10 | |0 | |
-ROW |29946 |10069 |1 |10 | |0 | |
-ROW |29947 |10070 |1 |10 | |0 | |
-ROW |29948 |10071 |1 |10 | |0 | |
-ROW |29949 |10072 |1 |10 | |0 | |
-ROW |29950 |23340 |1 |10 | |0 | |
-ROW |29951 |10061 |1 |10 | |0 | |
-ROW |29952 |10062 |1 |10 | |0 | |
-ROW |29953 |10063 |1 |10 | |0 | |
-ROW |29954 |10064 |1 |10 | |0 | |
-ROW |29955 |10065 |1 |10 | |0 | |
-ROW |29956 |10066 |1 |10 | |0 | |
-ROW |29957 |22187 |1 |10 | |0 | |
-ROW |29958 |22196 |1 |10 | |0 | |
-ROW |29959 |22199 |1 |10 | |0 | |
-ROW |29960 |10073 |1 |10 | |0 | |
-ROW |29961 |10074 |1 |10 | |0 | |
-ROW |29962 |10075 |1 |10 | |0 | |
-ROW |29963 |10076 |1 |10 | |0 | |
-ROW |29964 |10077 |1 |10 | |0 | |
-ROW |29965 |10078 |1 |10 | |0 | |
-ROW |29966 |23277 |1 |10 | |0 | |
-ROW |29967 |23625 |1 |10 | |0 | |
-ROW |29968 |23628 |1 |10 | |0 | |
-ROW |29969 |22920 |1 |10 | |0 | |
-ROW |29970 |22924 |1 |10 | |0 | |
-ROW |29971 |22945 |1 |10 | |0 | |
-ROW |29972 |22945 |2 |1 |8 |0 | |
-ROW |29973 |22946 |1 |10 | |0 | |
-ROW |29974 |22946 |2 |1 |8 |0 | |
-ROW |29975 |22880 |1 |10 | |0 | |
-ROW |29976 |22884 |1 |10 | |0 | |
-ROW |29977 |23073 |1 |10 | |0 | |
-ROW |29978 |23073 |2 |1 |8 |0 | |
-ROW |29979 |23074 |1 |10 | |0 | |
-ROW |29980 |23074 |2 |1 |8 |0 | |
-ROW |29981 |22985 |1 |10 | |0 | |
-ROW |29982 |22985 |2 |1 |8 |0 | |
-ROW |29983 |22986 |1 |10 | |0 | |
-ROW |29984 |22986 |2 |1 |8 |0 | |
-ROW |29985 |23077 |1 |10 | |0 | |
-ROW |29986 |23077 |2 |1 |8 |0 | |
-ROW |29987 |23078 |1 |10 | |0 | |
-ROW |29988 |23078 |2 |1 |8 |0 | |
-ROW |29989 |22840 |1 |10 | |0 | |
-ROW |29990 |22844 |1 |10 | |0 | |
-ROW |29991 |23075 |1 |10 | |0 | |
-ROW |29992 |23075 |2 |1 |8 |0 | |
-ROW |29993 |23076 |1 |10 | |0 | |
-ROW |29994 |23076 |2 |1 |8 |0 | |
-ROW |29995 |23000 |1 |10 | |0 | |
-ROW |29996 |23004 |1 |10 | |0 | |
-ROW |29997 |23025 |1 |10 | |0 | |
-ROW |29998 |23025 |2 |1 |8 |0 | |
-ROW |29999 |23026 |1 |10 | |0 | |
-ROW |30000 |23026 |2 |1 |8 |0 | |
-ROW |30001 |30431 |1 |5 |(Server version)\s+(.+)&bsn;\2 |0 | |
-ROW |30002 |30431 |2 |20 |1d |0 | |
-ROW |30003 |30432 |1 |21 |return value.indexOf('is alive') !== -1 ? 1 : 0; |0 | |
-ROW |30004 |30432 |2 |20 |10m |0 | |
-ROW |30005 |30436 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
-ROW |30006 |30437 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
-ROW |30007 |30437 |2 |10 | |0 | |
-ROW |30008 |30438 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time']/field[@name='Value']/text() |0 | |
-ROW |30009 |30438 |2 |1 |0.001 |0 | |
-ROW |30010 |30438 |3 |20 |1h |0 | |
-ROW |30011 |30439 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time_max']/field[@name='Value']/text() |0 | |
-ROW |30012 |30439 |2 |1 |0.001 |0 | |
-ROW |30013 |30439 |3 |20 |1h |0 | |
-ROW |30014 |30440 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_waits']/field[@name='Value']/text() |0 | |
-ROW |30015 |30441 |1 |11 |/resultset/row[field/text()='Max_used_connections']/field[@name='Value']/text() |0 | |
-ROW |30016 |30441 |2 |20 |1h |0 | |
-ROW |30017 |30442 |1 |11 |/resultset/row[field/text()='Queries']/field[@name='Value']/text() |0 | |
-ROW |30018 |30442 |2 |10 | |0 | |
-ROW |30019 |30443 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
-ROW |30020 |30444 |1 |11 |/resultset/row[field/text()='Questions']/field[@name='Value']/text() |0 | |
-ROW |30021 |30444 |2 |10 | |0 | |
-ROW |30022 |30445 |1 |11 |/resultset/row[field/text()='Slow_queries']/field[@name='Value']/text() |0 | |
-ROW |30023 |30445 |2 |10 | |0 | |
-ROW |30024 |30446 |1 |11 |/resultset/row[field/text()='Threads_cached']/field[@name='Value']/text() |0 | |
-ROW |30025 |30447 |1 |11 |/resultset/row[field/text()='Threads_connected']/field[@name='Value']/text() |0 | |
-ROW |30026 |30448 |1 |11 |/resultset/row[field/text()='Threads_created']/field[@name='Value']/text() |0 | |
-ROW |30027 |30449 |1 |11 |/resultset/row[field/text()='Threads_running']/field[@name='Value']/text() |0 | |
-ROW |30028 |30450 |1 |11 |/resultset/row[field/text()='Uptime']/field[@name='Value']/text() |0 | |
-ROW |30029 |30451 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
-ROW |30030 |30451 |2 |10 | |0 | |
-ROW |30031 |30452 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_total']/field[@name='Value']/text() |0 | |
-ROW |30032 |30452 |2 |20 |1h |0 | |
-ROW |30033 |30453 |1 |11 |/resultset/row[field/text()='Bytes_received']/field[@name='Value']/text() |0 | |
-ROW |30034 |30453 |2 |10 | |0 | |
-ROW |30035 |30454 |1 |11 |/resultset/row[field/text()='Connection_errors_max_connections']/field[@name='Value']/text() |0 | |
-ROW |30036 |30454 |2 |10 | |0 | |
-ROW |30037 |30455 |1 |11 |/resultset/row[field/text()='Bytes_sent']/field[@name='Value']/text() |0 | |
-ROW |30038 |30455 |2 |10 | |0 | |
-ROW |30039 |30456 |1 |11 |/resultset/row[field/text()='Com_delete']/field[@name='Value']/text() |0 | |
-ROW |30040 |30456 |2 |10 | |0 | |
-ROW |30041 |30457 |1 |11 |/resultset/row[field/text()='Com_insert']/field[@name='Value']/text() |0 | |
-ROW |30042 |30457 |2 |10 | |0 | |
-ROW |30043 |30458 |1 |11 |/resultset/row[field/text()='Com_select']/field[@name='Value']/text() |0 | |
-ROW |30044 |30458 |2 |10 | |0 | |
-ROW |30045 |30459 |1 |11 |/resultset/row[field/text()='Com_update']/field[@name='Value']/text() |0 | |
-ROW |30046 |30459 |2 |10 | |0 | |
-ROW |30047 |30460 |1 |11 |/resultset/row[field/text()='Connection_errors_accept']/field[@name='Value']/text() |0 | |
-ROW |30048 |30460 |2 |10 | |0 | |
-ROW |30049 |30461 |1 |11 |/resultset/row[field/text()='Connection_errors_internal']/field[@name='Value']/text() |0 | |
-ROW |30050 |30461 |2 |10 | |0 | |
-ROW |30051 |30462 |1 |11 |/resultset/row[field/text()='Connection_errors_peer_address']/field[@name='Value']/text() |0 | |
-ROW |30052 |30462 |2 |10 | |0 | |
-ROW |30053 |30463 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_free']/field[@name='Value']/text() |0 | |
-ROW |30054 |30464 |1 |11 |/resultset/row[field/text()='Connection_errors_select']/field[@name='Value']/text() |0 | |
-ROW |30055 |30464 |2 |10 | |0 | |
-ROW |30056 |30465 |1 |11 |/resultset/row[field/text()='Connection_errors_tcpwrap']/field[@name='Value']/text() |0 | |
-ROW |30057 |30465 |2 |10 | |0 | |
-ROW |30058 |30466 |1 |11 |/resultset/row[field/text()='Connections']/field[@name='Value']/text() |0 | |
-ROW |30059 |30466 |2 |10 | |0 | |
-ROW |30060 |30467 |1 |11 |/resultset/row[field/text()='Created_tmp_disk_tables']/field[@name='Value']/text() |0 | |
-ROW |30061 |30468 |1 |11 |/resultset/row[field/text()='Created_tmp_files']/field[@name='Value']/text() |0 | |
-ROW |30062 |30469 |1 |11 |/resultset/row[field/text()='Created_tmp_tables']/field[@name='Value']/text() |0 | |
-ROW |30063 |30470 |1 |11 |/resultset/row[field/text()='Aborted_connects']/field[@name='Value']/text() |0 | |
-ROW |30064 |30470 |2 |10 | |0 | |
-ROW |30065 |30471 |1 |11 |/resultset/row[field/text()='Aborted_clients']/field[@name='Value']/text() |0 | |
-ROW |30066 |30471 |2 |10 | |0 | |
-ROW |30067 |30472 |1 |21 |return JSON.stringify(value.split("\n").map(function (name) {&bsn; return ({"{#DBNAME}": name});&bsn;})); |0 | |
-ROW |30068 |30472 |2 |20 |1d |0 | |
-ROW |30069 |30473 |1 |21 |var matches = value.match(/Master_Host.*>(.*)<.*/);&bsn;if (matches) {&bsn; return JSON.stringify([{"{#MASTERHOST}": matches[1]}]);&bsn;}&bsn;&bsn;return '[]'; |0 | |
-ROW |30070 |30473 |2 |20 |1d |0 | |
-ROW |30071 |30474 |1 |20 |1h |0 | |
-ROW |30072 |30476 |1 |11 |/resultset/row/field[@name='Seconds_Behind_Master']/text() |0 | |
-ROW |30073 |30476 |2 |20 |1h |0 | |
-ROW |30074 |30476 |3 |15 |null |3 |Replication is not performed.|
-ROW |30075 |30477 |1 |11 |/resultset/row/field[@name='Slave_IO_Running']/text() |0 | |
-ROW |30076 |30477 |2 |20 |1h |0 | |
-ROW |30077 |30478 |1 |11 |/resultset/row/field[@name='Slave_SQL_Running']/text() |0 | |
-ROW |30078 |30478 |2 |20 |1h |0 | |
-ROW |30079 |30637 |1 |20 |1d |0 | |
-ROW |30080 |30638 |1 |20 |10m |0 | |
-ROW |30081 |30642 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
-ROW |30082 |30643 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
-ROW |30083 |30643 |2 |10 | |0 | |
-ROW |30084 |30644 |1 |12 |$.Innodb_row_lock_time |0 | |
-ROW |30085 |30644 |2 |1 |0.001 |0 | |
-ROW |30086 |30644 |3 |20 |1h |0 | |
-ROW |30087 |30645 |1 |12 |$.Innodb_row_lock_time_max |0 | |
-ROW |30088 |30645 |2 |1 |0.001 |0 | |
-ROW |30089 |30645 |3 |20 |1h |0 | |
-ROW |30090 |30646 |1 |12 |$.Innodb_row_lock_waits |0 | |
-ROW |30091 |30647 |1 |12 |$.Max_used_connections |0 | |
-ROW |30092 |30647 |2 |20 |1h |0 | |
-ROW |30093 |30648 |1 |12 |$.Queries |0 | |
-ROW |30094 |30648 |2 |10 | |0 | |
-ROW |30095 |30649 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
-ROW |30096 |30650 |1 |12 |$.Questions |0 | |
-ROW |30097 |30650 |2 |10 | |0 | |
-ROW |30098 |30651 |1 |12 |$.Slow_queries |0 | |
-ROW |30099 |30651 |2 |10 | |0 | |
-ROW |30100 |30652 |1 |12 |$.Threads_cached |0 | |
-ROW |30101 |30653 |1 |12 |$.Threads_connected |0 | |
-ROW |30102 |30654 |1 |12 |$.Threads_created |0 | |
-ROW |30103 |30655 |1 |12 |$.Threads_running |0 | |
-ROW |30104 |30656 |1 |12 |$.Uptime |0 | |
-ROW |30105 |30657 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
-ROW |30106 |30657 |2 |10 | |0 | |
-ROW |30107 |30658 |1 |12 |$.Innodb_buffer_pool_pages_total |0 | |
-ROW |30108 |30658 |2 |20 |1h |0 | |
-ROW |30109 |30659 |1 |12 |$.Bytes_received |0 | |
-ROW |30110 |30659 |2 |10 | |0 | |
-ROW |30111 |30660 |1 |12 |$.Connection_errors_max_connections |0 | |
-ROW |30112 |30660 |2 |10 | |0 | |
-ROW |30113 |30661 |1 |12 |$.Bytes_sent |0 | |
-ROW |30114 |30661 |2 |10 | |0 | |
-ROW |30115 |30662 |1 |12 |$.Com_delete |0 | |
-ROW |30116 |30662 |2 |10 | |0 | |
-ROW |30117 |30663 |1 |12 |$.Com_insert |0 | |
-ROW |30118 |30663 |2 |10 | |0 | |
-ROW |30119 |30664 |1 |12 |$.Com_select |0 | |
-ROW |30120 |30664 |2 |10 | |0 | |
-ROW |30121 |30665 |1 |12 |$.Com_update |0 | |
-ROW |30122 |30665 |2 |10 | |0 | |
-ROW |30123 |30666 |1 |12 |$.Connection_errors_accept |0 | |
-ROW |30124 |30666 |2 |10 | |0 | |
-ROW |30125 |30667 |1 |12 |$.Connection_errors_internal |0 | |
-ROW |30126 |30667 |2 |10 | |0 | |
-ROW |30127 |30668 |1 |12 |$.Connection_errors_peer_address |0 | |
-ROW |30128 |30668 |2 |10 | |0 | |
-ROW |30129 |30669 |1 |12 |$.Innodb_buffer_pool_pages_free |0 | |
-ROW |30130 |30670 |1 |12 |$.Connection_errors_select |0 | |
-ROW |30131 |30670 |2 |10 | |0 | |
-ROW |30132 |30671 |1 |12 |$.Connection_errors_tcpwrap |0 | |
-ROW |30133 |30671 |2 |10 | |0 | |
-ROW |30134 |30672 |1 |12 |$.Connections |0 | |
-ROW |30135 |30672 |2 |10 | |0 | |
-ROW |30136 |30673 |1 |12 |$.Created_tmp_disk_tables |0 | |
-ROW |30137 |30674 |1 |12 |$.Created_tmp_files |0 | |
-ROW |30138 |30675 |1 |12 |$.Created_tmp_tables |0 | |
-ROW |30139 |30676 |1 |12 |$.Aborted_connects |0 | |
-ROW |30140 |30676 |2 |10 | |0 | |
-ROW |30141 |30677 |1 |12 |$.Aborted_clients |0 | |
-ROW |30142 |30677 |2 |10 | |0 | |
-ROW |30143 |30678 |1 |20 |1d |0 | |
-ROW |30144 |30679 |1 |20 |1d |0 | |
-ROW |30145 |30680 |1 |20 |1h |0 | |
-ROW |30146 |30682 |1 |12 |$.Seconds_Behind_Master |0 | |
-ROW |30147 |30682 |2 |14 |\d+ |3 |Replication is not performed.|
-ROW |30148 |30682 |3 |20 |1h |0 | |
-ROW |30149 |30683 |1 |12 |$.Slave_IO_Running |0 | |
-ROW |30150 |30683 |2 |20 |1h |0 | |
-ROW |30151 |30684 |1 |12 |$.Slave_SQL_Running |0 | |
-ROW |30152 |30684 |2 |20 |1h |0 | |
-ROW |30153 |30480 |1 |20 |1d |0 | |
-ROW |30154 |30481 |1 |20 |10m |0 | |
-ROW |30155 |30484 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_waits')].Value.first() |0 | |
-ROW |30156 |30485 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
-ROW |30157 |30486 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
-ROW |30158 |30486 |2 |10 | |0 | |
-ROW |30159 |30487 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
-ROW |30160 |30488 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
-ROW |30161 |30488 |2 |10 | |0 | |
-ROW |30162 |30489 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time')].Value.first() |0 | |
-ROW |30163 |30489 |2 |1 |0.001 |0 | |
-ROW |30164 |30489 |3 |20 |1h |0 | |
-ROW |30165 |30490 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time_max')].Value.first() |0 | |
-ROW |30166 |30490 |2 |1 |0.001 |0 | |
-ROW |30167 |30490 |3 |20 |1h |0 | |
-ROW |30168 |30491 |1 |12 |$[?(@.Variable_name=='Queries')].Value.first() |0 | |
-ROW |30169 |30491 |2 |10 | |0 | |
-ROW |30170 |30492 |1 |12 |$[?(@.Variable_name=='Max_used_connections')].Value.first() |0 | |
-ROW |30171 |30492 |2 |20 |1h |0 | |
-ROW |30172 |30493 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_free')].Value.first() |0 | |
-ROW |30173 |30494 |1 |12 |$[?(@.Variable_name=='Questions')].Value.first() |0 | |
-ROW |30174 |30494 |2 |10 | |0 | |
-ROW |30175 |30495 |1 |12 |$[?(@.Variable_name=='Slow_queries')].Value.first() |0 | |
-ROW |30176 |30495 |2 |10 | |0 | |
-ROW |30177 |30496 |1 |12 |$[?(@.Variable_name=='Threads_cached')].Value.first() |0 | |
-ROW |30178 |30497 |1 |12 |$[?(@.Variable_name=='Threads_connected')].Value.first() |0 | |
-ROW |30179 |30498 |1 |12 |$[?(@.Variable_name=='Threads_created')].Value.first() |0 | |
-ROW |30180 |30499 |1 |12 |$[?(@.Variable_name=='Threads_running')].Value.first() |0 | |
-ROW |30181 |30500 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_total')].Value.first() |0 | |
-ROW |30182 |30500 |2 |20 |1h |0 | |
-ROW |30183 |30501 |1 |12 |$[?(@.Variable_name=='Created_tmp_disk_tables')].Value.first() |0 | |
-ROW |30184 |30502 |1 |12 |$[?(@.Variable_name=='Created_tmp_tables')].Value.first() |0 | |
-ROW |30185 |30503 |1 |12 |$[?(@.Variable_name=='Com_select')].Value.first() |0 | |
-ROW |30186 |30503 |2 |10 | |0 | |
-ROW |30187 |30504 |1 |12 |$[?(@.Variable_name=='Aborted_clients')].Value.first() |0 | |
-ROW |30188 |30504 |2 |10 | |0 | |
-ROW |30189 |30505 |1 |12 |$[?(@.Variable_name=='Aborted_connects')].Value.first() |0 | |
-ROW |30190 |30505 |2 |10 | |0 | |
-ROW |30191 |30506 |1 |12 |$[?(@.Variable_name=='Bytes_received')].Value.first() |0 | |
-ROW |30192 |30506 |2 |10 | |0 | |
-ROW |30193 |30507 |1 |12 |$[?(@.Variable_name=='Bytes_sent')].Value.first() |0 | |
-ROW |30194 |30507 |2 |10 | |0 | |
-ROW |30195 |30508 |1 |12 |$[?(@.Variable_name=='Com_delete')].Value.first() |0 | |
-ROW |30196 |30508 |2 |10 | |0 | |
-ROW |30197 |30509 |1 |12 |$[?(@.Variable_name=='Com_insert')].Value.first() |0 | |
-ROW |30198 |30509 |2 |10 | |0 | |
-ROW |30199 |30510 |1 |12 |$[?(@.Variable_name=='Com_update')].Value.first() |0 | |
-ROW |30200 |30510 |2 |10 | |0 | |
-ROW |30201 |30511 |1 |12 |$[?(@.Variable_name=='Created_tmp_files')].Value.first() |0 | |
-ROW |30202 |30512 |1 |12 |$[?(@.Variable_name=='Connection_errors_accept')].Value.first() |0 | |
-ROW |30203 |30512 |2 |10 | |0 | |
-ROW |30204 |30513 |1 |12 |$[?(@.Variable_name=='Connection_errors_internal')].Value.first() |0 | |
-ROW |30205 |30513 |2 |10 | |0 | |
-ROW |30206 |30514 |1 |12 |$[?(@.Variable_name=='Connection_errors_max_connections')].Value.first() |0 | |
-ROW |30207 |30514 |2 |10 | |0 | |
-ROW |30208 |30515 |1 |12 |$[?(@.Variable_name=='Connection_errors_peer_address')].Value.first() |0 | |
-ROW |30209 |30515 |2 |10 | |0 | |
-ROW |30210 |30516 |1 |12 |$[?(@.Variable_name=='Connection_errors_select')].Value.first() |0 | |
-ROW |30211 |30516 |2 |10 | |0 | |
-ROW |30212 |30517 |1 |12 |$[?(@.Variable_name=='Connection_errors_tcpwrap')].Value.first() |0 | |
-ROW |30213 |30517 |2 |10 | |0 | |
-ROW |30214 |30518 |1 |12 |$[?(@.Variable_name=='Connections')].Value.first() |0 | |
-ROW |30215 |30518 |2 |10 | |0 | |
-ROW |30216 |30519 |1 |12 |$[?(@.Variable_name=='Uptime')].Value.first() |0 | |
-ROW |30217 |30520 |1 |20 |1d |0 | |
-ROW |30218 |30521 |1 |20 |1d |0 | |
-ROW |30219 |30522 |1 |20 |1h |0 | |
-ROW |30220 |30524 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Seconds_Behind_Master'].first() |0 | |
-ROW |30221 |30524 |2 |14 |\d+ |3 |Replication is not performed.|
-ROW |30222 |30524 |3 |20 |1h |0 | |
-ROW |30223 |30525 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_IO_Running'].first() |0 | |
-ROW |30224 |30525 |2 |20 |1h |0 | |
-ROW |30225 |30526 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_SQL_Running'].first() |0 | |
-ROW |30226 |30526 |2 |20 |1h |0 | |
-ROW |30227 |28673 |1 |5 |Time:\s(\d+\.\d+)\sms&bsn;\1 |0 | |
-ROW |30228 |28674 |1 |21 |return value.search(/accepting connections/)>0 ? 1 : 0 |0 | |
-ROW |30229 |28674 |2 |20 |1h |0 | |
-ROW |30230 |28680 |1 |20 |1h |0 | |
-ROW |30231 |28685 |1 |20 |1d |0 | |
-ROW |30232 |28688 |1 |12 |$.idle |0 | |
-ROW |30233 |28689 |1 |12 |$.active |0 | |
-ROW |30234 |28690 |1 |12 |$.prepared |0 | |
-ROW |30235 |28691 |1 |12 |$.waiting |0 | |
-ROW |30236 |28692 |1 |12 |$.count |0 | |
-ROW |30237 |28693 |1 |12 |$.buffers_alloc |0 | |
-ROW |30238 |28693 |2 |10 | |0 | |
-ROW |30239 |28694 |1 |12 |$.buffers_backend |0 | |
-ROW |30240 |28694 |2 |10 | |0 | |
-ROW |30241 |28695 |1 |12 |$.checkpoint_write_time |0 | |
-ROW |30242 |28695 |2 |1 |0.001 |0 | |
-ROW |30243 |28695 |3 |10 | |0 | |
-ROW |30244 |28696 |1 |12 |$.buffers_backend_fsync |0 | |
-ROW |30245 |28696 |2 |10 | |0 | |
-ROW |30246 |28697 |1 |12 |$.buffers_checkpoint |0 | |
-ROW |30247 |28697 |2 |10 | |0 | |
-ROW |30248 |28698 |1 |12 |$.buffers_clean |0 | |
-ROW |30249 |28698 |2 |10 | |0 | |
-ROW |30250 |28699 |1 |12 |$.checkpoints_req |0 | |
-ROW |30251 |28699 |2 |10 | |0 | |
-ROW |30252 |28700 |1 |12 |$.checkpoints_timed |0 | |
-ROW |30253 |28700 |2 |10 | |0 | |
-ROW |30254 |28701 |1 |12 |$.checkpoint_write_time |0 | |
-ROW |30255 |28701 |2 |1 |0.001 |0 | |
-ROW |30256 |28701 |3 |10 | |0 | |
-ROW |30257 |28702 |1 |12 |$.maxwritten_clean |0 | |
-ROW |30258 |28702 |2 |10 | |0 | |
-ROW |30259 |28703 |1 |12 |$.waiting |0 | |
-ROW |30260 |28704 |1 |12 |$.active |0 | |
-ROW |30261 |28705 |1 |12 |$.idle |0 | |
-ROW |30262 |28706 |1 |12 |$.idle_in_transaction |0 | |
-ROW |30263 |28707 |1 |12 |$.prepared |0 | |
-ROW |30264 |28708 |1 |12 |$.total |0 | |
-ROW |30265 |28709 |1 |12 |$.total_pct |0 | |
-ROW |30266 |28710 |1 |12 |$.write |0 | |
-ROW |30267 |28710 |2 |10 | |0 | |
-ROW |30268 |28715 |1 |12 |$['{#DBNAME}'].conflicts |0 | |
-ROW |30269 |28715 |2 |10 | |0 | |
-ROW |30270 |28716 |1 |12 |$['{#DBNAME}'].total |0 | |
-ROW |30271 |28717 |1 |12 |$.seq |0 | |
-ROW |30272 |28717 |2 |10 | |0 | |
-ROW |30273 |28718 |1 |12 |$.idx |0 | |
-ROW |30274 |28718 |2 |10 | |0 | |
-ROW |30275 |28719 |1 |12 |$['{#DBNAME}'].tx_time_sum |0 | |
-ROW |30276 |28720 |1 |12 |$['{#DBNAME}'].tx_time_max |0 | |
-ROW |30277 |28721 |1 |12 |$['{#DBNAME}'].tx_slow_count |0 | |
-ROW |30278 |28722 |1 |12 |$['{#DBNAME}'].query_time_sum |0 | |
-ROW |30279 |28723 |1 |12 |$['{#DBNAME}'].query_time_max |0 | |
-ROW |30280 |28724 |1 |12 |$['{#DBNAME}'].query_slow_count |0 | |
-ROW |30281 |28725 |1 |12 |$['{#DBNAME}'].mro_time_sum |0 | |
-ROW |30282 |28726 |1 |12 |$['{#DBNAME}'].mro_time_max |0 | |
-ROW |30283 |28727 |1 |12 |$['{#DBNAME}'].mro_slow_count |0 | |
-ROW |30284 |28728 |1 |12 |$['{#DBNAME}'].blks_read |0 | |
-ROW |30285 |28728 |2 |10 | |0 | |
-ROW |30286 |28729 |1 |12 |$['{#DBNAME}'].deadlocks |0 | |
-ROW |30287 |28729 |2 |10 | |0 | |
-ROW |30288 |28730 |1 |12 |$['{#DBNAME}'].blks_hit |0 | |
-ROW |30289 |28730 |2 |10 | |0 | |
-ROW |30290 |28731 |1 |12 |$.prc_before_av |0 | |
-ROW |30291 |28732 |1 |12 |$['{#DBNAME}'].xact_rollback |0 | |
-ROW |30292 |28732 |2 |10 | |0 | |
-ROW |30293 |28733 |1 |12 |$['{#DBNAME}'].xact_commit |0 | |
-ROW |30294 |28733 |2 |10 | |0 | |
-ROW |30295 |28734 |1 |12 |$['{#DBNAME}'].tup_updated |0 | |
-ROW |30296 |28734 |2 |10 | |0 | |
-ROW |30297 |28735 |1 |12 |$['{#DBNAME}'].tup_returned |0 | |
-ROW |30298 |28735 |2 |10 | |0 | |
-ROW |30299 |28736 |1 |12 |$['{#DBNAME}'].tup_inserted |0 | |
-ROW |30300 |28736 |2 |10 | |0 | |
-ROW |30301 |28737 |1 |12 |$['{#DBNAME}'].tup_fetched |0 | |
-ROW |30302 |28737 |2 |10 | |0 | |
-ROW |30303 |28738 |1 |12 |$['{#DBNAME}'].tup_deleted |0 | |
-ROW |30304 |28738 |2 |10 | |0 | |
-ROW |30305 |28739 |1 |12 |$['{#DBNAME}'].temp_files |0 | |
-ROW |30306 |28739 |2 |10 | |0 | |
-ROW |30307 |28740 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
-ROW |30308 |28740 |2 |10 | |0 | |
-ROW |30309 |28741 |1 |12 |$.prc_before_stop |0 | |
-ROW |30310 |30273 |1 |20 |10m |0 | |
-ROW |30311 |30274 |1 |10 | |0 | |
-ROW |30312 |30275 |1 |20 |1h |0 | |
-ROW |30313 |30277 |1 |12 |$.Clients.blocked_clients |0 | |
-ROW |30314 |30278 |1 |12 |$.Server.tcp_port |0 | |
-ROW |30315 |30278 |2 |20 |1d |0 | |
-ROW |30316 |30279 |1 |12 |$.Stats.expired_keys |0 | |
-ROW |30317 |30280 |1 |12 |$.Stats.evicted_keys |0 | |
-ROW |30318 |30281 |1 |12 |$.Server.uptime_in_seconds |0 | |
-ROW |30319 |30282 |1 |12 |$.Server.redis_mode |0 | |
-ROW |30320 |30282 |2 |20 |1d |0 | |
-ROW |30321 |30283 |1 |12 |$.Server.redis_version |0 | |
-ROW |30322 |30283 |2 |20 |1d |0 | |
-ROW |30323 |30284 |1 |12 |$.Stats.instantaneous_ops_per_sec |0 | |
-ROW |30324 |30285 |1 |12 |$.Server.process_id |0 | |
-ROW |30325 |30285 |2 |20 |1d |0 | |
-ROW |30326 |30286 |1 |12 |$.Replication.role |0 | |
-ROW |30327 |30286 |2 |20 |1d |0 | |
-ROW |30328 |30287 |1 |12 |$.Replication.repl_backlog_size |0 | |
-ROW |30329 |30288 |1 |12 |$.Replication.repl_backlog_histlen |0 | |
-ROW |30330 |30289 |1 |12 |$.Stats.instantaneous_input_kbps |0 | |
-ROW |30331 |30289 |2 |1 |1024 |0 | |
-ROW |30332 |30290 |1 |12 |$.Stats.keyspace_hits |0 | |
-ROW |30333 |30291 |1 |12 |$.Stats.instantaneous_output_kbps |0 | |
-ROW |30334 |30291 |2 |1 |1024 |0 | |
-ROW |30335 |30292 |1 |12 |$.Replication.repl_backlog_active |0 | |
-ROW |30336 |30293 |1 |12 |$.Stats.keyspace_misses |0 | |
-ROW |30337 |30294 |1 |12 |$.Stats.latest_fork_usec |0 | |
-ROW |30338 |30294 |2 |1 |1.0E-5 |0 | |
-ROW |30339 |30295 |1 |12 |$.Stats.migrate_cached_sockets |0 | |
-ROW |30340 |30296 |1 |12 |$.Stats.pubsub_channels |0 | |
-ROW |30341 |30297 |1 |12 |$.Stats.pubsub_patterns |0 | |
-ROW |30342 |30298 |1 |12 |$.Stats.rejected_connections |0 | |
-ROW |30343 |30299 |1 |12 |$.Stats.sync_full |0 | |
-ROW |30344 |30300 |1 |12 |$.Stats.sync_partial_err |0 | |
-ROW |30345 |30301 |1 |12 |$.Stats.sync_partial_ok |0 | |
-ROW |30346 |30302 |1 |12 |$.Stats.total_commands_processed |0 | |
-ROW |30347 |30303 |1 |12 |$.Stats.total_connections_received |0 | |
-ROW |30348 |30304 |1 |12 |$.Stats.total_net_input_bytes |0 | |
-ROW |30349 |30305 |1 |12 |$.Replication.repl_backlog_first_byte_offset |0 | |
-ROW |30350 |30306 |1 |12 |$.Replication.connected_slaves |0 | |
-ROW |30351 |30307 |1 |12 |$.Replication.master_repl_offset |0 | |
-ROW |30352 |30308 |1 |12 |$.Memory.used_memory_rss |0 | |
-ROW |30353 |30309 |1 |21 |var clients = JSON.parse(value).Clients&bsn;return clients.client_recent_max_input_buffer &pipe;&pipe; clients.client_biggest_input_buf |0 | |
-ROW |30354 |30310 |1 |21 |var clients = JSON.parse(value).Clients&bsn;return clients.client_recent_max_output_buffer &pipe;&pipe; clients.client_longest_output_list |0 | |
-ROW |30355 |30311 |1 |12 |$.Cluster.cluster_enabled |0 | |
-ROW |30356 |30312 |1 |12 |$.maxclients |0 | |
-ROW |30357 |30312 |2 |20 |30m |0 | |
-ROW |30358 |30313 |1 |12 |$.CPU.used_cpu_sys |0 | |
-ROW |30359 |30314 |1 |12 |$.CPU.used_cpu_sys_children |0 | |
-ROW |30360 |30315 |1 |12 |$.CPU.used_cpu_user |0 | |
-ROW |30361 |30316 |1 |12 |$.CPU.used_cpu_user_children |0 | |
-ROW |30362 |30317 |1 |12 |$.Memory.mem_fragmentation_ratio |0 | |
-ROW |30363 |30318 |1 |12 |$.Memory.used_memory |0 | |
-ROW |30364 |30319 |1 |12 |$.Memory.used_memory_lua |0 | |
-ROW |30365 |30320 |1 |12 |$.Memory.used_memory_peak |0 | |
-ROW |30366 |30321 |1 |12 |$.Persistence.aof_current_rewrite_time_sec |0 | |
-ROW |30367 |30322 |1 |12 |$.Clients.connected_clients |0 | |
-ROW |30368 |30323 |1 |12 |$.Persistence.aof_enabled |0 | |
-ROW |30369 |30324 |1 |12 |$.Persistence.aof_last_bgrewrite_status |0 | |
-ROW |30370 |30324 |2 |6 | |0 | |
-ROW |30371 |30325 |1 |12 |$.Persistence.aof_last_rewrite_time_sec |0 | |
-ROW |30372 |30326 |1 |12 |$.Persistence.aof_last_write_status |0 | |
-ROW |30373 |30326 |2 |6 | |0 | |
-ROW |30374 |30327 |1 |12 |$.Persistence.aof_rewrite_in_progress |0 | |
-ROW |30375 |30328 |1 |12 |$.Persistence.aof_rewrite_scheduled |0 | |
-ROW |30376 |30329 |1 |12 |$.Persistence.loading |0 | |
-ROW |30377 |30330 |1 |12 |$.Persistence.rdb_bgsave_in_progress |0 | |
-ROW |30378 |30331 |1 |12 |$.Persistence.rdb_changes_since_last_save |0 | |
-ROW |30379 |30332 |1 |12 |$.Persistence.rdb_current_bgsave_time_sec |0 | |
-ROW |30380 |30333 |1 |12 |$.Persistence.rdb_last_bgsave_status |0 | |
-ROW |30381 |30333 |2 |6 | |0 | |
-ROW |30382 |30334 |1 |12 |$.Persistence.rdb_last_bgsave_time_sec |0 | |
-ROW |30383 |30335 |1 |12 |$.Persistence.rdb_last_save_time |0 | |
-ROW |30384 |30336 |1 |12 |$.Stats.total_net_output_bytes |0 | |
-ROW |30385 |30337 |1 |21 |return JSON.stringify(value > 0 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |30386 |30338 |1 |21 |return JSON.stringify(Object.keys(JSON.parse(value).Keyspace)&bsn; .map(function (v){return {"{#DB}": v}})); |0 | |
-ROW |30387 |30339 |1 |12 |$.Server.redis_version |0 | |
-ROW |30388 |30339 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 4 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |30389 |30340 |1 |12 |$.Server.redis_version |0 | |
-ROW |30390 |30340 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 5 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |30391 |30341 |1 |21 |return JSON.stringify(JSON.parse(value).Persistence.aof_enabled === '1'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
-ROW |30392 |30342 |1 |21 |var repl = JSON.parse(value).Replication;&bsn;return JSON.stringify(Object.keys(repl)&bsn; .filter(function (v) {return v.match(/slave\d+/)})&bsn; .map(function (v){&bsn; return {"{#SLAVE_IP}": repl[v].ip, "{#SLAVE_PORT}": repl[v].port}&bsn; })); |0 | |
-ROW |30393 |30343 |1 |21 |return JSON.stringify(JSON.parse(value).Replication.role === 'slave'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
-ROW |30394 |30348 |1 |12 |$.Keyspace["{#DB}"].avg_ttl |0 | |
-ROW |30395 |30348 |2 |1 |0.001 |0 | |
-ROW |30396 |30349 |1 |12 |$.Keyspace["{#DB}"].expires |0 | |
-ROW |30397 |30350 |1 |12 |$.Keyspace["{#DB}"].keys |0 | |
-ROW |30398 |30351 |1 |12 |$.Memory.active_defrag_running |0 | |
-ROW |30399 |30352 |1 |12 |$.Persistence.rdb_last_cow_size |0 | |
-ROW |30400 |30353 |1 |12 |$.Stats.expired_time_cap_reached_count |0 | |
-ROW |30401 |30354 |1 |12 |$.Stats.expired_stale_perc |0 | |
-ROW |30402 |30355 |1 |12 |$.Stats.active_defrag_misses |0 | |
-ROW |30403 |30356 |1 |12 |$.Stats.active_defrag_key_misses |0 | |
-ROW |30404 |30357 |1 |12 |$.Stats.active_defrag_key_hits |0 | |
-ROW |30405 |30358 |1 |12 |$.Stats.active_defrag_hits |0 | |
-ROW |30406 |30359 |1 |12 |$.Server.executable |0 | |
-ROW |30407 |30359 |2 |20 |1d |0 | |
-ROW |30408 |30360 |1 |12 |$.Replication.second_repl_offset |0 | |
-ROW |30409 |30361 |1 |12 |$.Persistence.aof_last_cow_size |0 | |
-ROW |30410 |30362 |1 |12 |$.Memory.lazyfree_pending_objects |0 | |
-ROW |30411 |30363 |1 |12 |$.Memory.used_memory_startup |0 | |
-ROW |30412 |30364 |1 |12 |$.Memory.used_memory_peak_perc |0 | |
-ROW |30413 |30364 |2 |5 |(.+)%&bsn;\1 |0 | |
-ROW |30414 |30365 |1 |12 |$.Memory.used_memory_overhead |0 | |
-ROW |30415 |30366 |1 |12 |$.Memory.used_memory_dataset |0 | |
-ROW |30416 |30367 |1 |12 |$.Memory.used_memory_dataset_perc |0 | |
-ROW |30417 |30367 |2 |5 |(.+)%&bsn;\1 |0 | |
-ROW |30418 |30368 |1 |12 |$.Memory.total_system_memory |0 | |
-ROW |30419 |30369 |1 |12 |$.Memory.maxmemory |0 | |
-ROW |30420 |30370 |1 |12 |$.Memory.maxmemory_policy |0 | |
-ROW |30421 |30370 |2 |20 |1d |0 | |
-ROW |30422 |30371 |1 |12 |$.Stats.slave_expires_tracked_keys |0 | |
-ROW |30423 |30372 |1 |12 |$.Memory.allocator_active |0 | |
-ROW |30424 |30373 |1 |12 |$.Memory.mem_clients_normal |0 | |
-ROW |30425 |30374 |1 |12 |$.Memory.rss_overhead_ratio |0 | |
-ROW |30426 |30375 |1 |12 |$.Memory.rss_overhead_bytes |0 | |
-ROW |30427 |30376 |1 |12 |$.Memory.mem_replication_backlog |0 | |
-ROW |30428 |30377 |1 |12 |$.Memory.number_of_cached_scripts |0 | |
-ROW |30429 |30378 |1 |12 |$.Memory.mem_not_counted_for_evict |0 | |
-ROW |30430 |30379 |1 |12 |$.Memory.mem_clients_slaves |0 | |
-ROW |30431 |30380 |1 |12 |$.Memory.mem_aof_buffer |0 | |
-ROW |30432 |30381 |1 |12 |$.Memory.allocator_allocated |0 | |
-ROW |30433 |30382 |1 |12 |$.Memory.mem_fragmentation_bytes |0 | |
-ROW |30434 |30383 |1 |12 |$.Memory.allocator_rss_ratio |0 | |
-ROW |30435 |30384 |1 |12 |$.Memory.allocator_rss_bytes |0 | |
-ROW |30436 |30385 |1 |12 |$.Memory.allocator_resident |0 | |
-ROW |30437 |30386 |1 |12 |$.Memory.allocator_frag_ratio |0 | |
-ROW |30438 |30387 |1 |12 |$.Memory.allocator_frag_bytes |0 | |
-ROW |30439 |30388 |1 |12 |$.Memory.used_memory_scripts |0 | |
-ROW |30440 |30389 |1 |12 |$.Persistence.aof_base_size |0 | |
-ROW |30441 |30390 |1 |12 |$.Persistence.aof_buffer_length |0 | |
-ROW |30442 |30391 |1 |12 |$.Persistence.aof_current_size |0 | |
-ROW |30443 |30392 |1 |12 |$.Persistence.aof_delayed_fsync |0 | |
-ROW |30444 |30393 |1 |12 |$.Persistence.aof_pending_bio_fsync |0 | |
-ROW |30445 |30394 |1 |12 |$.Persistence.aof_pending_rewrite |0 | |
-ROW |30446 |30395 |1 |12 |$.Persistence.aof_rewrite_buffer_length |0 | |
-ROW |30447 |30396 |1 |21 |var repl = JSON.parse(value).Replication;&bsn;var res = Object.keys(repl)&bsn; .filter(function (v) {return v.match(/slave\d+/)})&bsn; .filter(function (v) {return (repl[v].ip === "{#SLAVE_IP}" && repl[v].port === "{#SLAVE_PORT}")})&bsn; .map(function (v) {return repl[v].offset})[0];&bsn;&bsn;if (res === undefined) {&bsn; throw 'Slave {#SLAVE_IP}:{#SLAVE_PORT} is no longer available.';&bsn;}&bsn;&bsn;return res; |0 | |
-ROW |30448 |30397 |1 |12 |$.Replication.master_host |0 | |
-ROW |30449 |30397 |2 |20 |1d |0 | |
-ROW |30450 |30398 |1 |12 |$.Replication.master_last_io_seconds_ago |0 | |
-ROW |30451 |30399 |1 |12 |$.Replication.master_link_status |0 | |
-ROW |30452 |30399 |2 |6 | |0 | |
-ROW |30453 |30400 |1 |12 |$.Replication.master_port |0 | |
-ROW |30454 |30400 |2 |20 |1d |0 | |
-ROW |30455 |30401 |1 |12 |$.Replication.master_sync_in_progress |0 | |
-ROW |30456 |30402 |1 |12 |$.Replication.slave_priority |0 | |
-ROW |30457 |30403 |1 |12 |$.Replication.slave_read_only |0 | |
-ROW |30458 |30403 |2 |20 |1d |0 | |
-ROW |30459 |30404 |1 |12 |$.Replication.slave_repl_offset |0 | |
-ROW |30460 |27141 |1 |20 |1h |0 | |
-ROW |30461 |29824 |1 |1 |0.01 |0 | |
-ROW |30462 |29825 |1 |20 |1h |0 | |
-ROW |30463 |29826 |1 |20 |1d |0 | |
-ROW |30464 |29827 |1 |20 |1h |0 | |
-ROW |30465 |29828 |1 |20 |1d |0 | |
-ROW |30466 |27615 |1 |20 |1h |0 | |
-ROW |30467 |28022 |1 |20 |1h |0 | |
-ROW |30468 |28433 |1 |20 |1h |0 | |
-ROW |30469 |29829 |1 |1 |0.01 |0 | |
-ROW |30470 |29830 |1 |20 |1h |0 | |
-ROW |30471 |29831 |1 |20 |1d |0 | |
-ROW |30472 |29832 |1 |20 |1h |0 | |
-ROW |30473 |29833 |1 |20 |1d |0 | |
-ROW |30474 |29834 |1 |1 |0.01 |0 | |
-ROW |30475 |29835 |1 |20 |1h |0 | |
-ROW |30476 |29836 |1 |20 |1d |0 | |
-ROW |30477 |29837 |1 |20 |1h |0 | |
-ROW |30478 |29838 |1 |20 |1d |0 | |
-ROW |30479 |29839 |1 |1 |0.01 |0 | |
-ROW |30480 |29840 |1 |20 |1h |0 | |
-ROW |30481 |29841 |1 |20 |1d |0 | |
-ROW |30482 |29842 |1 |20 |1h |0 | |
-ROW |30483 |29843 |1 |20 |1d |0 | |
-ROW |30484 |27152 |1 |20 |1h |0 | |
-ROW |30485 |29844 |1 |1 |0.01 |0 | |
-ROW |30486 |29845 |1 |20 |1h |0 | |
-ROW |30487 |29846 |1 |20 |1d |0 | |
-ROW |30488 |29847 |1 |20 |1h |0 | |
-ROW |30489 |29848 |1 |20 |1d |0 | |
-ROW |30490 |27199 |1 |20 |1h |0 | |
-ROW |30491 |27232 |1 |20 |1h |0 | |
-ROW |30492 |27268 |1 |20 |1h |0 | |
-ROW |30493 |27289 |1 |20 |1h |0 | |
-ROW |30494 |27340 |1 |20 |1h |0 | |
-ROW |30495 |27372 |1 |20 |1h |0 | |
-ROW |30496 |27469 |1 |20 |1h |0 | |
-ROW |30497 |27503 |1 |20 |1h |0 | |
-ROW |30498 |27539 |1 |20 |1h |0 | |
-ROW |30499 |27575 |1 |20 |1h |0 | |
-ROW |30500 |27638 |1 |20 |1h |0 | |
-ROW |30501 |27661 |1 |20 |1h |0 | |
-ROW |30502 |27741 |1 |20 |1h |0 | |
-ROW |30503 |27773 |1 |20 |1h |0 | |
-ROW |30504 |27807 |1 |20 |1h |0 | |
-ROW |30505 |27889 |1 |20 |1h |0 | |
-ROW |30506 |27926 |1 |20 |1h |0 | |
-ROW |30507 |27963 |1 |20 |1h |0 | |
-ROW |30508 |27993 |1 |20 |1h |0 | |
-ROW |30509 |28137 |1 |20 |1h |0 | |
-ROW |30510 |28192 |1 |20 |1h |0 | |
-ROW |30511 |28240 |1 |20 |1h |0 | |
-ROW |30512 |28289 |1 |20 |1h |0 | |
-ROW |30513 |28337 |1 |20 |1h |0 | |
-ROW |30514 |28384 |1 |20 |1h |0 | |
-ROW |30515 |28461 |1 |20 |1h |0 | |
-ROW |30516 |28489 |1 |20 |1h |0 | |
-ROW |30517 |28964 |1 |20 |1h |0 | |
-ROW |30518 |29057 |1 |20 |1h |0 | |
-ROW |30519 |29849 |1 |1 |0.01 |0 | |
-ROW |30520 |29850 |1 |20 |1h |0 | |
-ROW |30521 |29851 |1 |20 |1d |0 | |
-ROW |30522 |29852 |1 |20 |1h |0 | |
-ROW |30523 |29853 |1 |20 |1d |0 | |
-ROW |30524 |29854 |1 |1 |0.01 |0 | |
-ROW |30525 |29855 |1 |20 |1h |0 | |
-ROW |30526 |29856 |1 |20 |1d |0 | |
-ROW |30527 |29857 |1 |20 |1h |0 | |
-ROW |30528 |29858 |1 |20 |1d |0 | |
-ROW |30529 |29859 |1 |1 |0.01 |0 | |
-ROW |30530 |29860 |1 |20 |1h |0 | |
-ROW |30531 |29861 |1 |20 |1d |0 | |
-ROW |30532 |29862 |1 |20 |1h |0 | |
-ROW |30533 |29863 |1 |20 |1d |0 | |
-ROW |30534 |29864 |1 |1 |0.01 |0 | |
-ROW |30535 |29865 |1 |20 |1h |0 | |
-ROW |30536 |29866 |1 |20 |1d |0 | |
-ROW |30537 |29867 |1 |20 |1h |0 | |
-ROW |30538 |29868 |1 |20 |1d |0 | |
-ROW |30539 |29869 |1 |1 |0.01 |0 | |
-ROW |30540 |29870 |1 |20 |1h |0 | |
-ROW |30541 |29871 |1 |20 |1d |0 | |
-ROW |30542 |29872 |1 |20 |1h |0 | |
-ROW |30543 |29873 |1 |20 |1d |0 | |
-ROW |30544 |29874 |1 |1 |0.01 |0 | |
-ROW |30545 |29875 |1 |20 |1h |0 | |
-ROW |30546 |29876 |1 |20 |1d |0 | |
-ROW |30547 |29877 |1 |20 |1h |0 | |
-ROW |30548 |29878 |1 |20 |1d |0 | |
-ROW |30549 |29879 |1 |1 |0.01 |0 | |
-ROW |30550 |29880 |1 |20 |1h |0 | |
-ROW |30551 |29881 |1 |20 |1d |0 | |
-ROW |30552 |29882 |1 |20 |1h |0 | |
-ROW |30553 |29883 |1 |20 |1d |0 | |
-ROW |30554 |29884 |1 |1 |0.01 |0 | |
-ROW |30555 |29885 |1 |20 |1h |0 | |
-ROW |30556 |29886 |1 |20 |1d |0 | |
-ROW |30557 |29887 |1 |20 |1h |0 | |
-ROW |30558 |29888 |1 |20 |1d |0 | |
-ROW |30559 |29889 |1 |1 |0.01 |0 | |
-ROW |30560 |29890 |1 |20 |1h |0 | |
-ROW |30561 |29891 |1 |20 |1d |0 | |
-ROW |30562 |29892 |1 |20 |1h |0 | |
-ROW |30563 |29893 |1 |20 |1d |0 | |
-ROW |30564 |29894 |1 |1 |0.01 |0 | |
-ROW |30565 |29895 |1 |20 |1h |0 | |
-ROW |30566 |29896 |1 |20 |1d |0 | |
-ROW |30567 |29897 |1 |20 |1h |0 | |
-ROW |30568 |29898 |1 |20 |1d |0 | |
-ROW |30569 |29899 |1 |1 |0.01 |0 | |
-ROW |30570 |29900 |1 |20 |1h |0 | |
-ROW |30571 |29901 |1 |20 |1d |0 | |
-ROW |30572 |29902 |1 |20 |1h |0 | |
-ROW |30573 |29903 |1 |20 |1d |0 | |
-ROW |30574 |29904 |1 |1 |0.01 |0 | |
-ROW |30575 |29905 |1 |20 |1h |0 | |
-ROW |30576 |29906 |1 |20 |1d |0 | |
-ROW |30577 |29907 |1 |20 |1h |0 | |
-ROW |30578 |29908 |1 |20 |1d |0 | |
-ROW |30579 |29909 |1 |1 |0.01 |0 | |
-ROW |30580 |29910 |1 |20 |1h |0 | |
-ROW |30581 |29911 |1 |20 |1d |0 | |
-ROW |30582 |29912 |1 |20 |1h |0 | |
-ROW |30583 |29913 |1 |20 |1d |0 | |
-ROW |30584 |29914 |1 |1 |0.01 |0 | |
-ROW |30585 |29915 |1 |20 |1h |0 | |
-ROW |30586 |29916 |1 |20 |1d |0 | |
-ROW |30587 |29917 |1 |20 |1h |0 | |
-ROW |30588 |29918 |1 |20 |1d |0 | |
-ROW |30589 |29919 |1 |1 |0.01 |0 | |
-ROW |30590 |29920 |1 |20 |1h |0 | |
-ROW |30591 |29921 |1 |20 |1d |0 | |
-ROW |30592 |29922 |1 |20 |1h |0 | |
-ROW |30593 |29923 |1 |20 |1d |0 | |
-ROW |30594 |29924 |1 |1 |0.01 |0 | |
-ROW |30595 |29925 |1 |20 |1h |0 | |
-ROW |30596 |29926 |1 |20 |1d |0 | |
-ROW |30597 |29927 |1 |20 |1h |0 | |
-ROW |30598 |29928 |1 |20 |1d |0 | |
-ROW |30599 |29929 |1 |1 |0.01 |0 | |
-ROW |30600 |29930 |1 |20 |1h |0 | |
-ROW |30601 |29931 |1 |20 |1d |0 | |
-ROW |30602 |29932 |1 |20 |1h |0 | |
-ROW |30603 |29933 |1 |20 |1d |0 | |
-ROW |30604 |29934 |1 |1 |0.01 |0 | |
-ROW |30605 |29935 |1 |20 |1h |0 | |
-ROW |30606 |29936 |1 |20 |1d |0 | |
-ROW |30607 |29937 |1 |20 |1h |0 | |
-ROW |30608 |29938 |1 |20 |1d |0 | |
-ROW |30609 |29939 |1 |1 |0.01 |0 | |
-ROW |30610 |29940 |1 |20 |1h |0 | |
-ROW |30611 |29941 |1 |20 |1d |0 | |
-ROW |30612 |29942 |1 |20 |1h |0 | |
-ROW |30613 |29943 |1 |20 |1d |0 | |
-ROW |30614 |29944 |1 |1 |0.01 |0 | |
-ROW |30615 |29945 |1 |20 |1h |0 | |
-ROW |30616 |29946 |1 |20 |1d |0 | |
-ROW |30617 |29947 |1 |20 |1h |0 | |
-ROW |30618 |29948 |1 |20 |1d |0 | |
-ROW |30619 |29949 |1 |1 |0.01 |0 | |
-ROW |30620 |29950 |1 |20 |1h |0 | |
-ROW |30621 |29951 |1 |20 |1d |0 | |
-ROW |30622 |29952 |1 |20 |1h |0 | |
-ROW |30623 |29953 |1 |20 |1d |0 | |
-ROW |30624 |29954 |1 |1 |0.01 |0 | |
-ROW |30625 |29955 |1 |20 |1h |0 | |
-ROW |30626 |29956 |1 |20 |1d |0 | |
-ROW |30627 |29957 |1 |20 |1h |0 | |
-ROW |30628 |29958 |1 |20 |1d |0 | |
-ROW |30629 |29959 |1 |1 |0.01 |0 | |
-ROW |30630 |29960 |1 |20 |1h |0 | |
-ROW |30631 |29961 |1 |20 |1d |0 | |
-ROW |30632 |29962 |1 |20 |1h |0 | |
-ROW |30633 |29963 |1 |20 |1d |0 | |
-ROW |30634 |29964 |1 |1 |0.01 |0 | |
-ROW |30635 |29965 |1 |20 |1h |0 | |
-ROW |30636 |29966 |1 |20 |1d |0 | |
-ROW |30637 |29967 |1 |20 |1h |0 | |
-ROW |30638 |29968 |1 |20 |1d |0 | |
-ROW |30639 |29969 |1 |1 |0.01 |0 | |
-ROW |30640 |29970 |1 |20 |1h |0 | |
-ROW |30641 |29971 |1 |20 |1d |0 | |
-ROW |30642 |29972 |1 |20 |1h |0 | |
-ROW |30643 |29973 |1 |20 |1d |0 | |
-ROW |30644 |29974 |1 |1 |0.01 |0 | |
-ROW |30645 |29975 |1 |20 |1h |0 | |
-ROW |30646 |29976 |1 |20 |1d |0 | |
-ROW |30647 |29977 |1 |20 |1h |0 | |
-ROW |30648 |29978 |1 |20 |1d |0 | |
-ROW |30649 |29979 |1 |1 |0.01 |0 | |
-ROW |30650 |29980 |1 |20 |1h |0 | |
-ROW |30651 |29981 |1 |20 |1d |0 | |
-ROW |30652 |29982 |1 |20 |1h |0 | |
-ROW |30653 |29983 |1 |20 |1d |0 | |
-ROW |30654 |29984 |1 |1 |0.01 |0 | |
-ROW |30655 |29985 |1 |20 |1h |0 | |
-ROW |30656 |29986 |1 |20 |1d |0 | |
-ROW |30657 |29987 |1 |20 |1h |0 | |
-ROW |30658 |29988 |1 |20 |1d |0 | |
-ROW |30659 |29989 |1 |1 |0.01 |0 | |
-ROW |30660 |29990 |1 |20 |1h |0 | |
-ROW |30661 |29991 |1 |20 |1d |0 | |
-ROW |30662 |29992 |1 |20 |1h |0 | |
-ROW |30663 |29993 |1 |20 |1d |0 | |
-ROW |30664 |30050 |1 |20 |1d |0 | |
-ROW |30665 |30051 |1 |20 |1d |0 | |
-ROW |30666 |30052 |1 |20 |1h |0 | |
-ROW |30667 |30053 |1 |20 |1h |0 | |
-ROW |30668 |30054 |1 |20 |1h |0 | |
-ROW |30669 |30055 |1 |1 |0.01 |0 | |
-ROW |30670 |30405 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |30671 |30406 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |30672 |30411 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30673 |30412 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30674 |30415 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30675 |30416 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30676 |30417 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30677 |30418 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30678 |30421 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30679 |30422 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30680 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |30681 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |30682 |30144 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |30683 |30145 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |30684 |30146 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |30685 |30157 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30686 |30158 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30687 |30161 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30688 |30162 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30689 |30163 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30690 |30164 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30691 |30167 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30692 |30168 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30693 |30169 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30694 |30170 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30695 |30173 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30696 |30174 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30697 |30175 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30698 |30176 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30699 |30179 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30700 |30180 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30701 |30181 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30702 |30182 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30703 |30185 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30704 |30186 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |30705 |27069 |1 |10 | |0 | |
-ROW |30706 |27070 |1 |20 |1d |0 | |
-ROW |30707 |27072 |1 |10 | |0 | |
-ROW |30708 |27073 |1 |10 | |0 | |
-ROW |30709 |27074 |1 |10 | |0 | |
-ROW |30710 |27074 |2 |1 |8 |0 | |
-ROW |30711 |27075 |1 |10 | |0 | |
-ROW |30712 |27075 |2 |1 |8 |0 | |
-ROW |30713 |27076 |1 |10 | |0 | |
-ROW |30714 |27597 |1 |10 | |0 | |
-ROW |30715 |27598 |1 |10 | |0 | |
-ROW |30716 |27599 |1 |10 | |0 | |
-ROW |30717 |27599 |2 |1 |8 |0 | |
-ROW |30718 |27600 |1 |10 | |0 | |
-ROW |30719 |27601 |1 |10 | |0 | |
-ROW |30720 |27602 |1 |10 | |0 | |
-ROW |30721 |27602 |2 |1 |8 |0 | |
-ROW |30722 |27605 |1 |20 |1d |0 | |
-ROW |30723 |28006 |1 |10 | |0 | |
-ROW |30724 |28007 |1 |10 | |0 | |
-ROW |30725 |28008 |1 |10 | |0 | |
-ROW |30726 |28008 |2 |1 |8 |0 | |
-ROW |30727 |28009 |1 |10 | |0 | |
-ROW |30728 |28010 |1 |10 | |0 | |
-ROW |30729 |28011 |1 |10 | |0 | |
-ROW |30730 |28011 |2 |1 |8 |0 | |
-ROW |30731 |28014 |1 |20 |1d |0 | |
-ROW |30732 |27079 |1 |10 | |0 | |
-ROW |30733 |27080 |1 |20 |1d |0 | |
-ROW |30734 |27082 |1 |10 | |0 | |
-ROW |30735 |27083 |1 |10 | |0 | |
-ROW |30736 |27084 |1 |10 | |0 | |
-ROW |30737 |27084 |2 |1 |8 |0 | |
-ROW |30738 |27085 |1 |10 | |0 | |
-ROW |30739 |27085 |2 |1 |8 |0 | |
-ROW |30740 |27086 |1 |10 | |0 | |
-ROW |30741 |27620 |1 |10 | |0 | |
-ROW |30742 |27621 |1 |10 | |0 | |
-ROW |30743 |27622 |1 |10 | |0 | |
-ROW |30744 |27622 |2 |1 |8 |0 | |
-ROW |30745 |27623 |1 |10 | |0 | |
-ROW |30746 |27624 |1 |10 | |0 | |
-ROW |30747 |27625 |1 |10 | |0 | |
-ROW |30748 |27625 |2 |1 |8 |0 | |
-ROW |30749 |27628 |1 |20 |1d |0 | |
-ROW |30750 |27977 |1 |10 | |0 | |
-ROW |30751 |27978 |1 |10 | |0 | |
-ROW |30752 |27979 |1 |10 | |0 | |
-ROW |30753 |27979 |2 |1 |8 |0 | |
-ROW |30754 |27980 |1 |10 | |0 | |
-ROW |30755 |27981 |1 |10 | |0 | |
-ROW |30756 |27982 |1 |10 | |0 | |
-ROW |30757 |27982 |2 |1 |8 |0 | |
-ROW |30758 |27985 |1 |20 |1d |0 | |
-ROW |30759 |27089 |1 |10 | |0 | |
-ROW |30760 |27090 |1 |20 |1d |0 | |
-ROW |30761 |27091 |1 |1 |1000000 |0 | |
-ROW |30762 |27091 |2 |20 |1h |0 | |
-ROW |30763 |27092 |1 |10 | |0 | |
-ROW |30764 |27093 |1 |10 | |0 | |
-ROW |30765 |27094 |1 |10 | |0 | |
-ROW |30766 |27094 |2 |1 |8 |0 | |
-ROW |30767 |27095 |1 |10 | |0 | |
-ROW |30768 |27095 |2 |1 |8 |0 | |
-ROW |30769 |27096 |1 |10 | |0 | |
-ROW |30770 |27099 |1 |10 | |0 | |
-ROW |30771 |27100 |1 |20 |1d |0 | |
-ROW |30772 |27101 |1 |1 |1000000 |0 | |
-ROW |30773 |27101 |2 |20 |1h |0 | |
-ROW |30774 |27102 |1 |10 | |0 | |
-ROW |30775 |27103 |1 |10 | |0 | |
-ROW |30776 |27104 |1 |10 | |0 | |
-ROW |30777 |27104 |2 |1 |8 |0 | |
-ROW |30778 |27105 |1 |10 | |0 | |
-ROW |30779 |27105 |2 |1 |8 |0 | |
-ROW |30780 |27106 |1 |10 | |0 | |
-ROW |30781 |27181 |1 |10 | |0 | |
-ROW |30782 |27182 |1 |10 | |0 | |
-ROW |30783 |27183 |1 |10 | |0 | |
-ROW |30784 |27183 |2 |1 |8 |0 | |
-ROW |30785 |27184 |1 |10 | |0 | |
-ROW |30786 |27185 |1 |10 | |0 | |
-ROW |30787 |27186 |1 |10 | |0 | |
-ROW |30788 |27186 |2 |1 |8 |0 | |
-ROW |30789 |27187 |1 |1 |1000000 |0 | |
-ROW |30790 |27187 |2 |20 |1h |0 | |
-ROW |30791 |27189 |1 |20 |1d |0 | |
-ROW |30792 |27216 |1 |10 | |0 | |
-ROW |30793 |27217 |1 |10 | |0 | |
-ROW |30794 |27218 |1 |10 | |0 | |
-ROW |30795 |27218 |2 |1 |8 |0 | |
-ROW |30796 |27219 |1 |10 | |0 | |
-ROW |30797 |27220 |1 |10 | |0 | |
-ROW |30798 |27221 |1 |10 | |0 | |
-ROW |30799 |27221 |2 |1 |8 |0 | |
-ROW |30800 |27222 |1 |1 |1000000 |0 | |
-ROW |30801 |27222 |2 |20 |1h |0 | |
-ROW |30802 |27224 |1 |20 |1d |0 | |
-ROW |30803 |27252 |1 |10 | |0 | |
-ROW |30804 |27253 |1 |10 | |0 | |
-ROW |30805 |27254 |1 |10 | |0 | |
-ROW |30806 |27254 |2 |1 |8 |0 | |
-ROW |30807 |27255 |1 |10 | |0 | |
-ROW |30808 |27256 |1 |10 | |0 | |
-ROW |30809 |27257 |1 |10 | |0 | |
-ROW |30810 |27257 |2 |1 |8 |0 | |
-ROW |30811 |27258 |1 |1 |1000000 |0 | |
-ROW |30812 |27258 |2 |20 |1h |0 | |
-ROW |30813 |27260 |1 |20 |1d |0 | |
-ROW |30814 |27273 |1 |10 | |0 | |
-ROW |30815 |27274 |1 |10 | |0 | |
-ROW |30816 |27275 |1 |10 | |0 | |
-ROW |30817 |27275 |2 |1 |8 |0 | |
-ROW |30818 |27276 |1 |10 | |0 | |
-ROW |30819 |27277 |1 |10 | |0 | |
-ROW |30820 |27278 |1 |10 | |0 | |
-ROW |30821 |27278 |2 |1 |8 |0 | |
-ROW |30822 |27279 |1 |1 |1000000 |0 | |
-ROW |30823 |27279 |2 |20 |1h |0 | |
-ROW |30824 |27281 |1 |20 |1d |0 | |
-ROW |30825 |27322 |1 |10 | |0 | |
-ROW |30826 |27323 |1 |10 | |0 | |
-ROW |30827 |27324 |1 |10 | |0 | |
-ROW |30828 |27324 |2 |1 |8 |0 | |
-ROW |30829 |27325 |1 |10 | |0 | |
-ROW |30830 |27326 |1 |10 | |0 | |
-ROW |30831 |27327 |1 |10 | |0 | |
-ROW |30832 |27327 |2 |1 |8 |0 | |
-ROW |30833 |27328 |1 |1 |1000000 |0 | |
-ROW |30834 |27328 |2 |20 |1h |0 | |
-ROW |30835 |27330 |1 |20 |1d |0 | |
-ROW |30836 |27451 |1 |10 | |0 | |
-ROW |30837 |27452 |1 |10 | |0 | |
-ROW |30838 |27453 |1 |10 | |0 | |
-ROW |30839 |27453 |2 |1 |8 |0 | |
-ROW |30840 |27454 |1 |10 | |0 | |
-ROW |30841 |27455 |1 |10 | |0 | |
-ROW |30842 |27456 |1 |10 | |0 | |
-ROW |30843 |27456 |2 |1 |8 |0 | |
-ROW |30844 |27457 |1 |1 |1000000 |0 | |
-ROW |30845 |27457 |2 |20 |1h |0 | |
-ROW |30846 |27459 |1 |20 |1d |0 | |
-ROW |30847 |27487 |1 |10 | |0 | |
-ROW |30848 |27488 |1 |10 | |0 | |
-ROW |30849 |27489 |1 |10 | |0 | |
-ROW |30850 |27489 |2 |1 |8 |0 | |
-ROW |30851 |27490 |1 |10 | |0 | |
-ROW |30852 |27491 |1 |10 | |0 | |
-ROW |30853 |27492 |1 |10 | |0 | |
-ROW |30854 |27492 |2 |1 |8 |0 | |
-ROW |30855 |27493 |1 |1 |1000000 |0 | |
-ROW |30856 |27493 |2 |20 |1h |0 | |
-ROW |30857 |27495 |1 |20 |1d |0 | |
-ROW |30858 |27521 |1 |10 | |0 | |
-ROW |30859 |27522 |1 |10 | |0 | |
-ROW |30860 |27523 |1 |10 | |0 | |
-ROW |30861 |27523 |2 |1 |8 |0 | |
-ROW |30862 |27524 |1 |10 | |0 | |
-ROW |30863 |27525 |1 |10 | |0 | |
-ROW |30864 |27526 |1 |10 | |0 | |
-ROW |30865 |27526 |2 |1 |8 |0 | |
-ROW |30866 |27527 |1 |1 |1000000 |0 | |
-ROW |30867 |27527 |2 |20 |1h |0 | |
-ROW |30868 |27529 |1 |20 |1d |0 | |
-ROW |30869 |27557 |1 |10 | |0 | |
-ROW |30870 |27558 |1 |10 | |0 | |
-ROW |30871 |27559 |1 |10 | |0 | |
-ROW |30872 |27559 |2 |1 |8 |0 | |
-ROW |30873 |27560 |1 |10 | |0 | |
-ROW |30874 |27561 |1 |10 | |0 | |
-ROW |30875 |27562 |1 |10 | |0 | |
-ROW |30876 |27562 |2 |1 |8 |0 | |
-ROW |30877 |27563 |1 |1 |1000000 |0 | |
-ROW |30878 |27563 |2 |20 |1h |0 | |
-ROW |30879 |27565 |1 |20 |1d |0 | |
-ROW |30880 |27643 |1 |10 | |0 | |
-ROW |30881 |27644 |1 |10 | |0 | |
-ROW |30882 |27645 |1 |10 | |0 | |
-ROW |30883 |27645 |2 |1 |8 |0 | |
-ROW |30884 |27646 |1 |10 | |0 | |
-ROW |30885 |27647 |1 |10 | |0 | |
-ROW |30886 |27648 |1 |10 | |0 | |
-ROW |30887 |27648 |2 |1 |8 |0 | |
-ROW |30888 |27649 |1 |1 |1000000 |0 | |
-ROW |30889 |27649 |2 |20 |1h |0 | |
-ROW |30890 |27651 |1 |20 |1d |0 | |
-ROW |30891 |27723 |1 |10 | |0 | |
-ROW |30892 |27724 |1 |10 | |0 | |
-ROW |30893 |27725 |1 |10 | |0 | |
-ROW |30894 |27725 |2 |1 |8 |0 | |
-ROW |30895 |27726 |1 |10 | |0 | |
-ROW |30896 |27727 |1 |10 | |0 | |
-ROW |30897 |27728 |1 |10 | |0 | |
-ROW |30898 |27728 |2 |1 |8 |0 | |
-ROW |30899 |27729 |1 |1 |1000000 |0 | |
-ROW |30900 |27729 |2 |20 |1h |0 | |
-ROW |30901 |27731 |1 |20 |1d |0 | |
-ROW |30902 |27757 |1 |10 | |0 | |
-ROW |30903 |27758 |1 |10 | |0 | |
-ROW |30904 |27759 |1 |10 | |0 | |
-ROW |30905 |27759 |2 |1 |8 |0 | |
-ROW |30906 |27760 |1 |10 | |0 | |
-ROW |30907 |27761 |1 |10 | |0 | |
-ROW |30908 |27762 |1 |10 | |0 | |
-ROW |30909 |27762 |2 |1 |8 |0 | |
-ROW |30910 |27763 |1 |1 |1000000 |0 | |
-ROW |30911 |27763 |2 |20 |1h |0 | |
-ROW |30912 |27765 |1 |20 |1d |0 | |
-ROW |30913 |27789 |1 |10 | |0 | |
-ROW |30914 |27790 |1 |10 | |0 | |
-ROW |30915 |27791 |1 |10 | |0 | |
-ROW |30916 |27791 |2 |1 |8 |0 | |
-ROW |30917 |27792 |1 |10 | |0 | |
-ROW |30918 |27793 |1 |10 | |0 | |
-ROW |30919 |27794 |1 |10 | |0 | |
-ROW |30920 |27794 |2 |1 |8 |0 | |
-ROW |30921 |27795 |1 |1 |1000000 |0 | |
-ROW |30922 |27795 |2 |20 |1h |0 | |
-ROW |30923 |27797 |1 |20 |1d |0 | |
-ROW |30924 |27873 |1 |10 | |0 | |
-ROW |30925 |27874 |1 |10 | |0 | |
-ROW |30926 |27875 |1 |10 | |0 | |
-ROW |30927 |27875 |2 |1 |8 |0 | |
-ROW |30928 |27876 |1 |10 | |0 | |
-ROW |30929 |27877 |1 |10 | |0 | |
-ROW |30930 |27878 |1 |10 | |0 | |
-ROW |30931 |27878 |2 |1 |8 |0 | |
-ROW |30932 |27879 |1 |1 |1000000 |0 | |
-ROW |30933 |27879 |2 |20 |1h |0 | |
-ROW |30934 |27881 |1 |20 |1d |0 | |
-ROW |30935 |27910 |1 |10 | |0 | |
-ROW |30936 |27911 |1 |10 | |0 | |
-ROW |30937 |27912 |1 |10 | |0 | |
-ROW |30938 |27912 |2 |1 |8 |0 | |
-ROW |30939 |27913 |1 |10 | |0 | |
-ROW |30940 |27914 |1 |10 | |0 | |
-ROW |30941 |27915 |1 |10 | |0 | |
-ROW |30942 |27915 |2 |1 |8 |0 | |
-ROW |30943 |27916 |1 |1 |1000000 |0 | |
-ROW |30944 |27916 |2 |20 |1h |0 | |
-ROW |30945 |27918 |1 |20 |1d |0 | |
-ROW |30946 |27945 |1 |10 | |0 | |
-ROW |30947 |27946 |1 |10 | |0 | |
-ROW |30948 |27947 |1 |10 | |0 | |
-ROW |30949 |27947 |2 |1 |8 |0 | |
-ROW |30950 |27948 |1 |10 | |0 | |
-ROW |30951 |27949 |1 |10 | |0 | |
-ROW |30952 |27950 |1 |10 | |0 | |
-ROW |30953 |27950 |2 |1 |8 |0 | |
-ROW |30954 |27951 |1 |1 |1000000 |0 | |
-ROW |30955 |27951 |2 |20 |1h |0 | |
-ROW |30956 |27953 |1 |20 |1d |0 | |
-ROW |30957 |28119 |1 |10 | |0 | |
-ROW |30958 |28120 |1 |10 | |0 | |
-ROW |30959 |28121 |1 |10 | |0 | |
-ROW |30960 |28121 |2 |1 |8 |0 | |
-ROW |30961 |28122 |1 |10 | |0 | |
-ROW |30962 |28123 |1 |10 | |0 | |
-ROW |30963 |28124 |1 |10 | |0 | |
-ROW |30964 |28124 |2 |1 |8 |0 | |
-ROW |30965 |28125 |1 |1 |1000000 |0 | |
-ROW |30966 |28125 |2 |20 |1h |0 | |
-ROW |30967 |28127 |1 |20 |1d |0 | |
-ROW |30968 |28176 |1 |10 | |0 | |
-ROW |30969 |28177 |1 |10 | |0 | |
-ROW |30970 |28178 |1 |10 | |0 | |
-ROW |30971 |28178 |2 |1 |8 |0 | |
-ROW |30972 |28179 |1 |10 | |0 | |
-ROW |30973 |28180 |1 |10 | |0 | |
-ROW |30974 |28181 |1 |10 | |0 | |
-ROW |30975 |28181 |2 |1 |8 |0 | |
-ROW |30976 |28182 |1 |1 |1000000 |0 | |
-ROW |30977 |28182 |2 |20 |1h |0 | |
-ROW |30978 |28184 |1 |20 |1d |0 | |
-ROW |30979 |28224 |1 |10 | |0 | |
-ROW |30980 |28225 |1 |10 | |0 | |
-ROW |30981 |28226 |1 |10 | |0 | |
-ROW |30982 |28226 |2 |1 |8 |0 | |
-ROW |30983 |28227 |1 |10 | |0 | |
-ROW |30984 |28228 |1 |10 | |0 | |
-ROW |30985 |28229 |1 |10 | |0 | |
-ROW |30986 |28229 |2 |1 |8 |0 | |
-ROW |30987 |28230 |1 |1 |1000000 |0 | |
-ROW |30988 |28230 |2 |20 |1h |0 | |
-ROW |30989 |28232 |1 |20 |1d |0 | |
-ROW |30990 |28294 |1 |10 | |0 | |
-ROW |30991 |28295 |1 |10 | |0 | |
-ROW |30992 |28296 |1 |10 | |0 | |
-ROW |30993 |28296 |2 |1 |8 |0 | |
-ROW |30994 |28297 |1 |10 | |0 | |
-ROW |30995 |28298 |1 |10 | |0 | |
-ROW |30996 |28299 |1 |10 | |0 | |
-ROW |30997 |28299 |2 |1 |8 |0 | |
-ROW |30998 |28300 |1 |1 |1000000 |0 | |
-ROW |30999 |28300 |2 |20 |1h |0 | |
-ROW |31000 |28302 |1 |20 |1d |0 | |
-ROW |31001 |28969 |1 |10 | |0 | |
-ROW |31002 |28970 |1 |10 | |0 | |
-ROW |31003 |28971 |1 |10 | |0 | |
-ROW |31004 |28971 |2 |1 |8 |0 | |
-ROW |31005 |28972 |1 |10 | |0 | |
-ROW |31006 |28973 |1 |10 | |0 | |
-ROW |31007 |28974 |1 |10 | |0 | |
-ROW |31008 |28974 |2 |1 |8 |0 | |
-ROW |31009 |28975 |1 |1 |1000000 |0 | |
-ROW |31010 |28975 |2 |20 |1h |0 | |
-ROW |31011 |28977 |1 |20 |1d |0 | |
-ROW |31012 |27119 |1 |10 | |0 | |
-ROW |31013 |27120 |1 |20 |1d |0 | |
-ROW |31014 |27121 |1 |1 |1000000 |0 | |
-ROW |31015 |27121 |2 |20 |1h |0 | |
-ROW |31016 |27122 |1 |10 | |0 | |
-ROW |31017 |27123 |1 |10 | |0 | |
-ROW |31018 |27124 |1 |10 | |0 | |
-ROW |31019 |27124 |2 |1 |8 |0 | |
-ROW |31020 |27125 |1 |10 | |0 | |
-ROW |31021 |27125 |2 |1 |8 |0 | |
-ROW |31022 |27126 |1 |10 | |0 | |
-ROW |31023 |29078 |1 |10 | |0 | |
-ROW |31024 |29079 |1 |10 | |0 | |
-ROW |31025 |29080 |1 |10 | |0 | |
-ROW |31026 |29080 |2 |1 |8 |0 | |
-ROW |31027 |29081 |1 |10 | |0 | |
-ROW |31028 |29082 |1 |10 | |0 | |
-ROW |31029 |29083 |1 |10 | |0 | |
-ROW |31030 |29083 |2 |1 |8 |0 | |
-ROW |31031 |29084 |1 |1 |1000000 |0 | |
-ROW |31032 |29084 |2 |20 |1h |0 | |
-ROW |31033 |29086 |1 |20 |1d |0 | |
-ROW |31034 |22231 |1 |20 |1d |0 | |
-ROW |31035 |23318 |1 |20 |1d |0 | |
-ROW |31036 |29545 |1 |20 |1d |0 | |
-ROW |31037 |29546 |1 |20 |1d |0 | |
-ROW |31038 |10059 |1 |20 |1d |0 | |
-ROW |31039 |22834 |1 |20 |1d |0 | |
-ROW |31040 |22874 |1 |20 |1d |0 | |
-ROW |31041 |22914 |1 |20 |1d |0 | |
-ROW |31042 |22954 |1 |20 |1d |0 | |
-ROW |31043 |22994 |1 |20 |1d |0 | |
-ROW |31044 |23034 |1 |20 |1d |0 | |
-ROW |31045 |23161 |1 |20 |1d |0 | |
-ROW |31046 |23319 |1 |20 |1d |0 | |
-ROW |31047 |23320 |1 |20 |1d |0 | |
-ROW |31048 |23321 |1 |20 |1d |0 | |
-ROW |31049 |23322 |1 |20 |1d |0 | |
-ROW |31050 |23323 |1 |20 |1d |0 | |
-ROW |31051 |23324 |1 |20 |1d |0 | |
-ROW |31052 |23325 |1 |20 |1d |0 | |
-ROW |31053 |23326 |1 |20 |1d |0 | |
-ROW |31054 |29558 |1 |20 |1d |0 | |
-ROW |31055 |29560 |1 |20 |1d |0 | |
-ROW |31056 |29995 |1 |20 |1d |0 | |
-ROW |31057 |29997 |1 |20 |1d |0 | |
-ROW |31058 |23288 |1 |20 |1d |0 | |
-ROW |31059 |23327 |1 |20 |1d |0 | |
-ROW |31060 |27203 |1 |5 |^(\w&pipe;-&pipe;\.&pipe;/)+ (\w&pipe;-&pipe;\.&pipe;/)+ (.+) Copyright&bsn;\3 |0 | |
-ROW |31061 |27203 |2 |20 |1d |0 | |
-ROW |31062 |27207 |1 |1 |1024 |0 | |
-ROW |31063 |30086 |1 |5 |^((\w&pipe;-&pipe;\.&pipe;/)+)&bsn;\1 |0 | |
-ROW |31064 |30086 |2 |20 |1d |0 | |
-ROW |31065 |30087 |1 |1 |1024 |0 | |
-ROW |31066 |27214 |1 |20 |1d |0 | |
-ROW |31067 |28323 |1 |1 |0.1 |0 | |
-ROW |31068 |28327 |1 |20 |1d |0 | |
-ROW |31069 |28328 |1 |20 |1d |0 | |
-ROW |31070 |27236 |1 |20 |1d |0 | |
-ROW |31071 |27237 |1 |20 |1d |0 | |
-ROW |31072 |27295 |1 |20 |1d |0 | |
-ROW |31073 |27296 |1 |20 |1d |0 | |
-ROW |31074 |27297 |1 |20 |1d |0 | |
-ROW |31075 |27314 |1 |1 |0.5 |0 | |
-ROW |31076 |27315 |1 |1 |0.5 |0 | |
-ROW |31077 |27318 |1 |1 |0.5 |0 | |
-ROW |31078 |27319 |1 |20 |1d |0 | |
-ROW |31079 |27320 |1 |20 |1d |0 | |
-ROW |31080 |27378 |1 |20 |1d |0 | |
-ROW |31081 |27379 |1 |20 |1d |0 | |
-ROW |31082 |30097 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |31083 |30097 |2 |20 |1d |0 | |
-ROW |31084 |27382 |1 |20 |1d |0 | |
-ROW |31085 |27383 |1 |20 |1d |0 | |
-ROW |31086 |27385 |1 |20 |1d |0 | |
-ROW |31087 |27386 |1 |20 |1d |0 | |
-ROW |31088 |28209 |1 |20 |1d |0 | |
-ROW |31089 |28210 |1 |20 |1d |0 | |
-ROW |31090 |30098 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |31091 |30098 |2 |20 |1d |0 | |
-ROW |31092 |30099 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |31093 |30099 |2 |20 |1d |0 | |
-ROW |31094 |30100 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |31095 |30100 |2 |20 |1d |0 | |
-ROW |31096 |27419 |1 |20 |1d |0 | |
-ROW |31097 |27428 |1 |20 |1d |0 | |
-ROW |31098 |27445 |1 |20 |1d |0 | |
-ROW |31099 |28208 |1 |20 |1d |0 | |
-ROW |31100 |27481 |1 |20 |1d |0 | |
-ROW |31101 |27482 |1 |20 |1d |0 | |
-ROW |31102 |27483 |1 |20 |1d |0 | |
-ROW |31103 |27484 |1 |20 |1d |0 | |
-ROW |31104 |27508 |1 |20 |1d |0 | |
-ROW |31105 |27509 |1 |20 |1d |0 | |
-ROW |31106 |27510 |1 |20 |1d |0 | |
-ROW |31107 |30106 |1 |20 |1d |0 | |
-ROW |31108 |27543 |1 |20 |1d |0 | |
-ROW |31109 |27544 |1 |20 |1d |0 | |
-ROW |31110 |27545 |1 |20 |1d |0 | |
-ROW |31111 |27546 |1 |20 |1d |0 | |
-ROW |31112 |27579 |1 |20 |1d |0 | |
-ROW |31113 |27580 |1 |20 |1d |0 | |
-ROW |31114 |27582 |1 |20 |1d |0 | |
-ROW |31115 |27583 |1 |20 |1d |0 | |
-ROW |31116 |30109 |1 |20 |1d |0 | |
-ROW |31117 |27591 |1 |1 |1024 |0 | |
-ROW |31118 |30110 |1 |1 |1024 |0 | |
-ROW |31119 |27675 |1 |20 |1d |0 | |
-ROW |31120 |27676 |1 |20 |1d |0 | |
-ROW |31121 |27677 |1 |20 |1d |0 | |
-ROW |31122 |27678 |1 |20 |1d |0 | |
-ROW |31123 |27679 |1 |20 |1d |0 | |
-ROW |31124 |28141 |1 |20 |1d |0 | |
-ROW |31125 |28142 |1 |20 |1d |0 | |
-ROW |31126 |28157 |1 |20 |1d |0 | |
-ROW |31127 |28158 |1 |20 |1d |0 | |
-ROW |31128 |27748 |1 |20 |1d |0 | |
-ROW |31129 |27749 |1 |20 |1d |0 | |
-ROW |31130 |27750 |1 |20 |1d |0 | |
-ROW |31131 |27754 |1 |20 |1d |0 | |
-ROW |31132 |27777 |1 |5 |Firmware Version: ([0-9.]+),&bsn;\1 |0 | |
-ROW |31133 |27777 |2 |20 |1d |0 | |
-ROW |31134 |27778 |1 |5 |(.+) - Firmware&bsn;\1 |0 | |
-ROW |31135 |27778 |2 |20 |1d |0 | |
-ROW |31136 |27785 |1 |20 |1d |0 | |
-ROW |31137 |27812 |1 |20 |1d |0 | |
-ROW |31138 |27813 |1 |20 |1d |0 | |
-ROW |31139 |30117 |1 |5 |kernel (JUNOS [0-9a-zA-Z\.\-]+)&bsn;\1 |0 | |
-ROW |31140 |30117 |2 |20 |1d |0 | |
-ROW |31141 |28201 |1 |1 |0.1 |0 | |
-ROW |31142 |28204 |1 |20 |1d |0 | |
-ROW |31143 |28205 |1 |20 |1d |0 | |
-ROW |31144 |27893 |1 |20 |1d |0 | |
-ROW |31145 |27894 |1 |20 |1d |0 | |
-ROW |31146 |27895 |1 |20 |1d |0 | |
-ROW |31147 |27897 |1 |1 |0.1 |0 | |
-ROW |31148 |27898 |1 |1 |1024 |0 | |
-ROW |31149 |27900 |1 |1 |1024 |0 | |
-ROW |31150 |30119 |1 |20 |1d |0 | |
-ROW |31151 |27905 |1 |1 |0.1 |0 | |
-ROW |31152 |27907 |1 |1 |1024 |0 | |
-ROW |31153 |27908 |1 |1 |1024 |0 | |
-ROW |31154 |27930 |1 |20 |1d |0 | |
-ROW |31155 |27931 |1 |20 |1d |0 | |
-ROW |31156 |27936 |1 |5 |60 Secs \( ([0-9\.]+)%\).+300 Secs&bsn;\1 |0 | |
-ROW |31157 |30121 |1 |20 |1d |0 | |
-ROW |31158 |27967 |1 |20 |1d |0 | |
-ROW |31159 |27968 |1 |20 |1d |0 | |
-ROW |31160 |27970 |1 |20 |1d |0 | |
-ROW |31161 |27971 |1 |20 |1d |0 | |
-ROW |31162 |30125 |1 |20 |1d |0 | |
-ROW |31163 |27997 |1 |20 |1d |0 | |
-ROW |31164 |27998 |1 |20 |1d |0 | |
-ROW |31165 |27999 |1 |20 |1d |0 | |
-ROW |31166 |28000 |1 |20 |1d |0 | |
-ROW |31167 |28026 |1 |20 |1d |0 | |
-ROW |31168 |28027 |1 |20 |1d |0 | |
-ROW |31169 |30132 |1 |1 |1024 |0 | |
-ROW |31170 |30133 |1 |1 |1024 |0 | |
-ROW |31171 |30134 |1 |1 |1024 |0 | |
-ROW |31172 |30135 |1 |1 |1024 |0 | |
-ROW |31173 |29087 |1 |20 |1d |0 | |
-ROW |31174 |29089 |1 |10 | |0 | |
-ROW |31175 |29102 |1 |10 | |0 | |
-ROW |31176 |29103 |1 |21 |return (100-value); |0 | |
-ROW |31177 |29109 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
-ROW |31178 |29111 |1 |20 |1h |0 | |
-ROW |31179 |29113 |1 |20 |1h |0 | |
-ROW |31180 |29114 |1 |20 |1d |0 | |
-ROW |31181 |29116 |1 |20 |1d |0 | |
-ROW |31182 |29117 |1 |20 |1d |0 | |
-ROW |31183 |29120 |1 |20 |1h |0 | |
-ROW |31184 |29121 |1 |20 |1d |0 | |
-ROW |31185 |29122 |1 |20 |1d |0 | |
-ROW |31186 |29123 |1 |20 |1d |0 | |
-ROW |31187 |29124 |1 |20 |1d |0 | |
-ROW |31188 |29126 |1 |10 | |0 | |
-ROW |31189 |29139 |1 |10 | |0 | |
-ROW |31190 |29140 |1 |21 |return (100-value); |0 | |
-ROW |31191 |29146 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
-ROW |31192 |29148 |1 |20 |1h |0 | |
-ROW |31193 |29150 |1 |20 |1h |0 | |
-ROW |31194 |29151 |1 |20 |1d |0 | |
-ROW |31195 |29153 |1 |20 |1d |0 | |
-ROW |31196 |29154 |1 |20 |1d |0 | |
-ROW |31197 |29157 |1 |20 |1h |0 | |
-ROW |31198 |29158 |1 |20 |1d |0 | |
-ROW |31199 |29159 |1 |20 |1d |0 | |
-ROW |31200 |29160 |1 |20 |1d |0 | |
-ROW |31201 |29161 |1 |20 |1d |0 | |
-ROW |31202 |29163 |1 |10 | |0 | |
-ROW |31203 |29176 |1 |10 | |0 | |
-ROW |31204 |29177 |1 |21 |return (100-value); |0 | |
-ROW |31205 |29183 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
-ROW |31206 |29185 |1 |20 |1h |0 | |
-ROW |31207 |29187 |1 |20 |1h |0 | |
-ROW |31208 |29188 |1 |20 |1d |0 | |
-ROW |31209 |29190 |1 |20 |1d |0 | |
-ROW |31210 |29191 |1 |20 |1d |0 | |
-ROW |31211 |29194 |1 |20 |1h |0 | |
-ROW |31212 |29195 |1 |20 |1d |0 | |
-ROW |31213 |29196 |1 |20 |1d |0 | |
-ROW |31214 |29197 |1 |20 |1d |0 | |
-ROW |31215 |29198 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |31216 |29199 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |31217 |29200 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |31218 |29202 |1 |12 |$.lld |0 | |
-ROW |31219 |29202 |2 |20 |1h |0 | |
-ROW |31220 |29205 |1 |12 |$.lld |0 | |
-ROW |31221 |29205 |2 |20 |1h |0 | |
-ROW |31222 |29208 |1 |12 |$.lld |0 | |
-ROW |31223 |29208 |2 |20 |1h |0 | |
-ROW |31224 |29216 |1 |10 | |0 | |
-ROW |31225 |29216 |2 |1 |8 |0 | |
-ROW |31226 |29217 |1 |10 | |0 | |
-ROW |31227 |29217 |2 |1 |8 |0 | |
-ROW |31228 |29218 |1 |10 | |0 | |
-ROW |31229 |29219 |1 |10 | |0 | |
-ROW |31230 |29220 |1 |10 | |0 | |
-ROW |31231 |29221 |1 |10 | |0 | |
-ROW |31232 |29222 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |31233 |29223 |1 |20 |1d |0 | |
-ROW |31234 |29230 |1 |10 | |0 | |
-ROW |31235 |29230 |2 |1 |8 |0 | |
-ROW |31236 |29231 |1 |10 | |0 | |
-ROW |31237 |29231 |2 |1 |8 |0 | |
-ROW |31238 |29232 |1 |10 | |0 | |
-ROW |31239 |29233 |1 |10 | |0 | |
-ROW |31240 |29234 |1 |10 | |0 | |
-ROW |31241 |29235 |1 |10 | |0 | |
-ROW |31242 |29236 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |31243 |29237 |1 |20 |1d |0 | |
-ROW |31244 |29244 |1 |10 | |0 | |
-ROW |31245 |29244 |2 |1 |8 |0 | |
-ROW |31246 |29245 |1 |10 | |0 | |
-ROW |31247 |29245 |2 |1 |8 |0 | |
-ROW |31248 |29246 |1 |10 | |0 | |
-ROW |31249 |29247 |1 |10 | |0 | |
-ROW |31250 |29248 |1 |10 | |0 | |
-ROW |31251 |29249 |1 |10 | |0 | |
-ROW |31252 |29250 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |31253 |29251 |1 |20 |1d |0 | |
-ROW |31254 |29252 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |31255 |29252 |2 |10 | |0 | |
-ROW |31256 |29253 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |31257 |29253 |2 |10 | |0 | |
-ROW |31258 |29254 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |31259 |29254 |2 |10 | |0 | |
-ROW |31260 |29254 |3 |1 |0.001 |0 | |
-ROW |31261 |29255 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |31262 |29255 |2 |10 | |0 | |
-ROW |31263 |29255 |3 |1 |0.001 |0 | |
-ROW |31264 |29256 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |31265 |29256 |2 |10 | |0 | |
-ROW |31266 |29256 |3 |1 |0.001 |0 | |
-ROW |31267 |29257 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |31268 |29257 |2 |10 | |0 | |
-ROW |31269 |29257 |3 |1 |0.1 |0 | |
-ROW |31270 |29258 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |31271 |29258 |2 |10 | |0 | |
-ROW |31272 |29259 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |31273 |29259 |2 |10 | |0 | |
-ROW |31274 |29260 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |31275 |29260 |2 |10 | |0 | |
-ROW |31276 |29260 |3 |1 |0.001 |0 | |
-ROW |31277 |29261 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |31278 |29261 |2 |10 | |0 | |
-ROW |31279 |29261 |3 |1 |0.001 |0 | |
-ROW |31280 |29262 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |31281 |29262 |2 |10 | |0 | |
-ROW |31282 |29262 |3 |1 |0.001 |0 | |
-ROW |31283 |29263 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |31284 |29263 |2 |10 | |0 | |
-ROW |31285 |29263 |3 |1 |0.1 |0 | |
-ROW |31286 |29264 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |31287 |29264 |2 |10 | |0 | |
-ROW |31288 |29265 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |31289 |29265 |2 |10 | |0 | |
-ROW |31290 |29266 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |31291 |29266 |2 |10 | |0 | |
-ROW |31292 |29266 |3 |1 |0.001 |0 | |
-ROW |31293 |29267 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |31294 |29267 |2 |10 | |0 | |
-ROW |31295 |29267 |3 |1 |0.001 |0 | |
-ROW |31296 |29268 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |31297 |29268 |2 |10 | |0 | |
-ROW |31298 |29268 |3 |1 |0.001 |0 | |
-ROW |31299 |29269 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |31300 |29269 |2 |10 | |0 | |
-ROW |31301 |29269 |3 |1 |0.1 |0 | |
-ROW |31302 |29273 |1 |20 |1d |0 | |
-ROW |31303 |29275 |1 |10 | |0 | |
-ROW |31304 |29288 |1 |10 | |0 | |
-ROW |31305 |29289 |1 |21 |return (100-value); |0 | |
-ROW |31306 |29295 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
-ROW |31307 |29297 |1 |20 |1h |0 | |
-ROW |31308 |29299 |1 |20 |1h |0 | |
-ROW |31309 |29300 |1 |20 |1d |0 | |
-ROW |31310 |29302 |1 |20 |1d |0 | |
-ROW |31311 |29303 |1 |20 |1d |0 | |
-ROW |31312 |29306 |1 |20 |1h |0 | |
-ROW |31313 |29307 |1 |20 |1d |0 | |
-ROW |31314 |29308 |1 |20 |1d |0 | |
-ROW |31315 |29309 |1 |20 |1d |0 | |
-ROW |31316 |29310 |1 |20 |1d |0 | |
-ROW |31317 |29312 |1 |10 | |0 | |
-ROW |31318 |29325 |1 |10 | |0 | |
-ROW |31319 |29326 |1 |21 |return (100-value); |0 | |
-ROW |31320 |29332 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
-ROW |31321 |29334 |1 |20 |1h |0 | |
-ROW |31322 |29336 |1 |20 |1h |0 | |
-ROW |31323 |29337 |1 |20 |1d |0 | |
-ROW |31324 |29339 |1 |20 |1d |0 | |
-ROW |31325 |29340 |1 |20 |1d |0 | |
-ROW |31326 |29343 |1 |20 |1h |0 | |
-ROW |31327 |29344 |1 |20 |1d |0 | |
-ROW |31328 |29345 |1 |20 |1d |0 | |
-ROW |31329 |29346 |1 |20 |1d |0 | |
-ROW |31330 |29347 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |31331 |29348 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |31332 |29350 |1 |12 |$.lld |0 | |
-ROW |31333 |29350 |2 |20 |1h |0 | |
-ROW |31334 |29353 |1 |12 |$.lld |0 | |
-ROW |31335 |29353 |2 |20 |1h |0 | |
-ROW |31336 |29361 |1 |10 | |0 | |
-ROW |31337 |29361 |2 |1 |8 |0 | |
-ROW |31338 |29362 |1 |10 | |0 | |
-ROW |31339 |29362 |2 |1 |8 |0 | |
-ROW |31340 |29363 |1 |10 | |0 | |
-ROW |31341 |29364 |1 |10 | |0 | |
-ROW |31342 |29365 |1 |10 | |0 | |
-ROW |31343 |29366 |1 |10 | |0 | |
-ROW |31344 |29367 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |31345 |29368 |1 |20 |1d |0 | |
-ROW |31346 |29375 |1 |10 | |0 | |
-ROW |31347 |29375 |2 |1 |8 |0 | |
-ROW |31348 |29376 |1 |10 | |0 | |
-ROW |31349 |29376 |2 |1 |8 |0 | |
-ROW |31350 |29377 |1 |10 | |0 | |
-ROW |31351 |29378 |1 |10 | |0 | |
-ROW |31352 |29379 |1 |10 | |0 | |
-ROW |31353 |29380 |1 |10 | |0 | |
-ROW |31354 |29381 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |31355 |29382 |1 |20 |1d |0 | |
-ROW |31356 |29383 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |31357 |29383 |2 |10 | |0 | |
-ROW |31358 |29384 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |31359 |29384 |2 |10 | |0 | |
-ROW |31360 |29385 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |31361 |29385 |2 |10 | |0 | |
-ROW |31362 |29385 |3 |1 |0.001 |0 | |
-ROW |31363 |29386 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |31364 |29386 |2 |10 | |0 | |
-ROW |31365 |29386 |3 |1 |0.001 |0 | |
-ROW |31366 |29387 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |31367 |29387 |2 |10 | |0 | |
-ROW |31368 |29387 |3 |1 |0.001 |0 | |
-ROW |31369 |29388 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |31370 |29388 |2 |10 | |0 | |
-ROW |31371 |29388 |3 |1 |0.1 |0 | |
-ROW |31372 |29389 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |31373 |29389 |2 |10 | |0 | |
-ROW |31374 |29390 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |31375 |29390 |2 |10 | |0 | |
-ROW |31376 |29391 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |31377 |29391 |2 |10 | |0 | |
-ROW |31378 |29391 |3 |1 |0.001 |0 | |
-ROW |31379 |29392 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |31380 |29392 |2 |10 | |0 | |
-ROW |31381 |29392 |3 |1 |0.001 |0 | |
-ROW |31382 |29393 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |31383 |29393 |2 |10 | |0 | |
-ROW |31384 |29393 |3 |1 |0.001 |0 | |
-ROW |31385 |29394 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |31386 |29394 |2 |10 | |0 | |
-ROW |31387 |29394 |3 |1 |0.1 |0 | |
-ROW |31388 |29398 |1 |22 |{__name__=~"^node_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |31389 |29399 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="steal"} |0 | |
-ROW |31390 |29399 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31391 |29399 |3 |10 | |0 | |
-ROW |31392 |29399 |4 |1 |100 |0 | |
-ROW |31393 |29400 |1 |22 |{__name__=~"node_memory_SwapFree"}&bsn; |0 | |
-ROW |31394 |29401 |1 |22 |{__name__=~"node_memory_SwapTotal"}&bsn; |0 | |
-ROW |31395 |29402 |1 |22 |{__name__=~"node_memory_MemAvailable"}&bsn; |0 | |
-ROW |31396 |29403 |1 |22 |{__name__=~"node_memory_MemTotal"}&bsn; |0 | |
-ROW |31397 |29404 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |31398 |29405 |1 |22 |{__name__=~"node_context_switches"}&bsn; |0 | |
-ROW |31399 |29405 |2 |10 | |0 | |
-ROW |31400 |29406 |1 |22 |{__name__=~"node_intr"}&bsn; |0 | |
-ROW |31401 |29406 |2 |10 | |0 | |
-ROW |31402 |29407 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:nice&pipe;guest_nice)$"} |0 | |
-ROW |31403 |29407 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31404 |29407 |3 |10 | |0 | |
-ROW |31405 |29407 |4 |1 |100 |0 | |
-ROW |31406 |29408 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:user&pipe;guest)$"} |0 | |
-ROW |31407 |29408 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31408 |29408 |3 |10 | |0 | |
-ROW |31409 |29408 |4 |1 |100 |0 | |
-ROW |31410 |29409 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="irq"} |0 | |
-ROW |31411 |29409 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31412 |29409 |3 |10 | |0 | |
-ROW |31413 |29409 |4 |1 |100 |0 | |
-ROW |31414 |29410 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="iowait"} |0 | |
-ROW |31415 |29410 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31416 |29410 |3 |10 | |0 | |
-ROW |31417 |29410 |4 |1 |100 |0 | |
-ROW |31418 |29411 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="nice"} |0 | |
-ROW |31419 |29411 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31420 |29411 |3 |10 | |0 | |
-ROW |31421 |29411 |4 |1 |100 |0 | |
-ROW |31422 |29412 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="softirq"} |0 | |
-ROW |31423 |29412 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31424 |29412 |3 |10 | |0 | |
-ROW |31425 |29412 |4 |1 |100 |0 | |
-ROW |31426 |29413 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="user"} |0 | |
-ROW |31427 |29413 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31428 |29413 |3 |10 | |0 | |
-ROW |31429 |29413 |4 |1 |100 |0 | |
-ROW |31430 |29414 |1 |22 |node_uname_info&bsn;nodename |0 | |
-ROW |31431 |29414 |2 |20 |1d |0 | |
-ROW |31432 |29415 |1 |22 |node_exporter_build_info&bsn;version |0 | |
-ROW |31433 |29415 |2 |20 |1d |0 | |
-ROW |31434 |29416 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
-ROW |31435 |29416 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31436 |29416 |3 |10 | |0 | |
-ROW |31437 |29416 |4 |1 |100 |0 | |
-ROW |31438 |29417 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
-ROW |31439 |29417 |2 |21 |//count the number of cores&bsn;return JSON.parse(value).length&bsn; |0 | |
-ROW |31440 |29418 |1 |22 |node_load15&bsn; |0 | |
-ROW |31441 |29419 |1 |22 |node_load5&bsn; |0 | |
-ROW |31442 |29420 |1 |22 |node_load1&bsn; |0 | |
-ROW |31443 |29421 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |31444 |29421 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
-ROW |31445 |29422 |1 |22 |node_uname_info&bsn;machine |0 | |
-ROW |31446 |29422 |2 |20 |1d |0 | |
-ROW |31447 |29423 |1 |22 |node_filefd_allocated&bsn; |0 | |
-ROW |31448 |29424 |1 |22 |node_filefd_maximum&bsn; |0 | |
-ROW |31449 |29424 |2 |20 |1d |0 | |
-ROW |31450 |29425 |1 |23 |node_uname_info |0 | |
-ROW |31451 |29425 |2 |21 |var info = JSON.parse(value)[0];&bsn; return info.labels.sysname+' version: '+info.labels.release+' '+info.labels.version |0 | |
-ROW |31452 |29425 |3 |20 |1d |0 | |
-ROW |31453 |29426 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="system"} |0 | |
-ROW |31454 |29426 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
-ROW |31455 |29426 |3 |10 | |0 | |
-ROW |31456 |29426 |4 |1 |100 |0 | |
-ROW |31457 |29427 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |31458 |29428 |1 |20 |1d |0 | |
-ROW |31459 |29429 |1 |23 |{__name__=~"^node_network_info$"} |0 | |
-ROW |31460 |29430 |1 |23 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint=~".+"} |0 | |
-ROW |31461 |29431 |1 |23 |node_disk_io_now{device=~".+"} |0 | |
-ROW |31462 |29436 |1 |22 |node_network_receive_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |31463 |29436 |2 |10 | |0 | |
-ROW |31464 |29436 |3 |1 |8 |0 | |
-ROW |31465 |29437 |1 |22 |node_network_transmit_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |31466 |29437 |2 |10 | |0 | |
-ROW |31467 |29437 |3 |1 |8 |0 | |
-ROW |31468 |29438 |1 |22 |node_network_transmit_errs_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |31469 |29438 |2 |10 | |0 | |
-ROW |31470 |29439 |1 |22 |node_network_receive_errs_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |31471 |29439 |2 |10 | |0 | |
-ROW |31472 |29440 |1 |22 |node_network_receive_drop_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |31473 |29440 |2 |10 | |0 | |
-ROW |31474 |29441 |1 |22 |node_network_transmit_drop_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |31475 |29441 |2 |10 | |0 | |
-ROW |31476 |29442 |1 |22 |node_network_speed_bytes{device="{#IFNAME}"}&bsn; |2 |0 |
-ROW |31477 |29442 |2 |1 |8 |0 | |
-ROW |31478 |29443 |1 |22 |node_network_protocol_type{device="{#IFNAME}"}&bsn; |0 | |
-ROW |31479 |29444 |1 |22 |node_network_info{device="{#IFNAME}"}&bsn;operstate |0 | |
-ROW |31480 |29444 |2 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
-ROW |31481 |29445 |1 |22 |{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
-ROW |31482 |29446 |1 |22 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
-ROW |31483 |29447 |1 |23 |{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"} |0 | |
-ROW |31484 |29447 |2 |21 |//count vfs.fs.inode.pfree&bsn;var inode_free;&bsn;var inode_total;&bsn;JSON.parse(value).forEach(function(metric) {&bsn; if (metric['name'] == 'node_filesystem_files'){&bsn; inode_total = metric['value'];&bsn; } else if (metric['name'] == 'node_filesystem_files_free'){&bsn; inode_free = metric['value'];&bsn; }&bsn;});&bsn;return (inode_free/inode_total)*100; |0 | |
-ROW |31485 |29448 |1 |22 |node_disk_reads_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |31486 |29448 |2 |10 | |0 | |
-ROW |31487 |29449 |1 |22 |node_disk_writes_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |31488 |29449 |2 |10 | |0 | |
-ROW |31489 |29450 |1 |22 |node_disk_read_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |31490 |29450 |2 |10 | |0 | |
-ROW |31491 |29451 |1 |22 |node_disk_write_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |31492 |29451 |2 |10 | |0 | |
-ROW |31493 |29452 |1 |22 |node_disk_io_time_weighted_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |31494 |29452 |2 |10 | |0 | |
-ROW |31495 |29453 |1 |22 |node_disk_io_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |31496 |29453 |2 |10 | |0 | |
-ROW |31497 |29453 |3 |1 |100 |0 | |
-ROW |31498 |28979 |1 |1 |1024 |0 | |
-ROW |31499 |28980 |1 |1 |1024 |0 | |
-ROW |31500 |28981 |1 |1 |1024 |0 | |
-ROW |31501 |28982 |1 |1 |1024 |0 | |
-ROW |31502 |28984 |1 |1 |1024 |0 | |
-ROW |31503 |28985 |1 |1 |1024 |0 | |
-ROW |31504 |28990 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
-ROW |31505 |28991 |1 |10 | |0 | |
-ROW |31506 |28992 |1 |10 | |0 | |
-ROW |31507 |28994 |1 |1 |1024 |0 | |
-ROW |31508 |28995 |1 |1 |1024 |0 | |
-ROW |31509 |28996 |1 |1 |1024 |0 | |
-ROW |31510 |28997 |1 |1 |1024 |0 | |
-ROW |31511 |28999 |1 |1 |1024 |0 | |
-ROW |31512 |29000 |1 |1 |1024 |0 | |
-ROW |31513 |29005 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
-ROW |31514 |29006 |1 |10 | |0 | |
-ROW |31515 |29007 |1 |10 | |0 | |
-ROW |31516 |29009 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
-ROW |31517 |29012 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
-ROW |31518 |29014 |1 |10 | |0 | |
-ROW |31519 |29015 |1 |10 | |0 | |
-ROW |31520 |29017 |1 |10 | |0 | |
-ROW |31521 |29017 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31522 |29018 |1 |10 | |0 | |
-ROW |31523 |29018 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31524 |29019 |1 |10 | |0 | |
-ROW |31525 |29019 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31526 |29020 |1 |10 | |0 | |
-ROW |31527 |29020 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31528 |29021 |1 |10 | |0 | |
-ROW |31529 |29021 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31530 |29022 |1 |10 | |0 | |
-ROW |31531 |29022 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31532 |29023 |1 |10 | |0 | |
-ROW |31533 |29023 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31534 |29024 |1 |10 | |0 | |
-ROW |31535 |29024 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31536 |29025 |1 |10 | |0 | |
-ROW |31537 |29025 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31538 |29026 |1 |10 | |0 | |
-ROW |31539 |29026 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31540 |29027 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |31541 |29028 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |31542 |29030 |1 |21 |return (100-value); |0 | |
-ROW |31543 |29031 |1 |10 | |0 | |
-ROW |31544 |29032 |1 |10 | |0 | |
-ROW |31545 |29034 |1 |10 | |0 | |
-ROW |31546 |29034 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31547 |29035 |1 |10 | |0 | |
-ROW |31548 |29035 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31549 |29036 |1 |10 | |0 | |
-ROW |31550 |29036 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31551 |29037 |1 |10 | |0 | |
-ROW |31552 |29037 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31553 |29038 |1 |10 | |0 | |
-ROW |31554 |29038 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31555 |29039 |1 |10 | |0 | |
-ROW |31556 |29039 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31557 |29040 |1 |10 | |0 | |
-ROW |31558 |29040 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31559 |29041 |1 |10 | |0 | |
-ROW |31560 |29041 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31561 |29042 |1 |10 | |0 | |
-ROW |31562 |29042 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31563 |29043 |1 |10 | |0 | |
-ROW |31564 |29043 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |31565 |29044 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |31566 |29045 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |31567 |29047 |1 |21 |return (100-value); |0 | |
-ROW |31568 |29048 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
-ROW |31569 |29049 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
-ROW |31570 |29474 |1 |20 |1d |0 | |
-ROW |31571 |29475 |1 |20 |1d |0 | |
-ROW |31572 |29478 |1 |20 |1d |0 | |
-ROW |31573 |29500 |1 |20 |1d |0 | |
-ROW |31574 |29501 |1 |20 |1d |0 | |
-ROW |31575 |29504 |1 |20 |1d |0 | |
-ROW |31576 |29507 |1 |21 |output = JSON.parse(value).map(function(dev){&bsn; return {&bsn; "{#DEVNAME}": dev.Name,&bsn; "{#DEVQUEUE}": dev.CurrentDiskQueueLength,&bsn; "{#DEVREADS}": dev.DiskReadsPersec,&bsn; "{#DEVTIME}": dev.PercentDiskTime,&bsn; "{#DEVWRITES}": dev.DiskWritesPersec&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |31577 |29507 |2 |20 |1h |0 | |
-ROW |31578 |29508 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFPHYSICALADAPTER}": net.PhysicalAdapter,&bsn; "{#IFALIAS}" : net.NetConnectionID,&bsn; "{#IFNETENABLED}": net.NetEnabled,&bsn; "{#IFNETSTATUS}": net.NetConnectionStatus,&bsn; "{#IFSPEED}": net.Speed&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |31579 |29508 |2 |20 |1h |0 | |
-ROW |31580 |29510 |1 |21 |output = JSON.parse(value).map(function(dev){&bsn; return {&bsn; "{#DEVNAME}": dev.Name,&bsn; "{#DEVQUEUE}": dev.CurrentDiskQueueLength,&bsn; "{#DEVREADS}": dev.DiskReadsPersec,&bsn; "{#DEVTIME}": dev.PercentDiskTime,&bsn; "{#DEVWRITES}": dev.DiskWritesPersec&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |31581 |29510 |2 |20 |1h |0 | |
-ROW |31582 |29511 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFPHYSICALADAPTER}": net.PhysicalAdapter,&bsn; "{#IFALIAS}" : net.NetConnectionID,&bsn; "{#IFNETENABLED}": net.NetEnabled,&bsn; "{#IFNETSTATUS}": net.NetConnectionStatus,&bsn; "{#IFSPEED}": net.Speed&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |31583 |29511 |2 |20 |1h |0 | |
-ROW |31584 |29515 |1 |10 | |0 | |
-ROW |31585 |29515 |2 |1 |8 |0 | |
-ROW |31586 |29516 |1 |10 | |0 | |
-ROW |31587 |29516 |2 |1 |8 |0 | |
-ROW |31588 |29517 |1 |10 | |0 | |
-ROW |31589 |29518 |1 |10 | |0 | |
-ROW |31590 |29519 |1 |10 | |0 | |
-ROW |31591 |29520 |1 |10 | |0 | |
-ROW |31592 |29524 |1 |10 | |0 | |
-ROW |31593 |29524 |2 |1 |8 |0 | |
-ROW |31594 |29525 |1 |10 | |0 | |
-ROW |31595 |29525 |2 |1 |8 |0 | |
-ROW |31596 |29526 |1 |10 | |0 | |
-ROW |31597 |29527 |1 |10 | |0 | |
-ROW |31598 |29528 |1 |10 | |0 | |
-ROW |31599 |29529 |1 |10 | |0 | |
-ROW |31600 |29530 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
-ROW |31601 |29531 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
-ROW |31602 |29532 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
-ROW |31603 |29533 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
-ROW |31604 |29534 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |31605 |29535 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |31606 |29536 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |31607 |29537 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
-ROW |31608 |29538 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
-ROW |31609 |29539 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
-ROW |31610 |29540 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
-ROW |31611 |29541 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |31612 |29542 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |31613 |29543 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |31614 |29581 |1 |20 |1d |0 | |
-ROW |31615 |29582 |1 |20 |1d |0 | |
-ROW |31616 |29585 |1 |20 |1d |0 | |
-ROW |31617 |29607 |1 |20 |1d |0 | |
-ROW |31618 |29608 |1 |20 |1d |0 | |
-ROW |31619 |29611 |1 |20 |1d |0 | |
-ROW |31620 |29614 |1 |21 |output = JSON.parse(value).map(function(dev){&bsn; return {&bsn; "{#DEVNAME}": dev.Name,&bsn; "{#DEVQUEUE}": dev.CurrentDiskQueueLength,&bsn; "{#DEVREADS}": dev.DiskReadsPersec,&bsn; "{#DEVTIME}": dev.PercentDiskTime,&bsn; "{#DEVWRITES}": dev.DiskWritesPersec&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |31621 |29614 |2 |20 |1h |0 | |
-ROW |31622 |29615 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFPHYSICALADAPTER}": net.PhysicalAdapter,&bsn; "{#IFALIAS}" : net.NetConnectionID,&bsn; "{#IFNETENABLED}": net.NetEnabled,&bsn; "{#IFNETSTATUS}": net.NetConnectionStatus,&bsn; "{#IFSPEED}": net.Speed&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |31623 |29615 |2 |20 |1h |0 | |
-ROW |31624 |29617 |1 |21 |output = JSON.parse(value).map(function(dev){&bsn; return {&bsn; "{#DEVNAME}": dev.Name,&bsn; "{#DEVQUEUE}": dev.CurrentDiskQueueLength,&bsn; "{#DEVREADS}": dev.DiskReadsPersec,&bsn; "{#DEVTIME}": dev.PercentDiskTime,&bsn; "{#DEVWRITES}": dev.DiskWritesPersec&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |31625 |29617 |2 |20 |1h |0 | |
-ROW |31626 |29618 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFPHYSICALADAPTER}": net.PhysicalAdapter,&bsn; "{#IFALIAS}" : net.NetConnectionID,&bsn; "{#IFNETENABLED}": net.NetEnabled,&bsn; "{#IFNETSTATUS}": net.NetConnectionStatus,&bsn; "{#IFSPEED}": net.Speed&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
-ROW |31627 |29618 |2 |20 |1h |0 | |
-ROW |31628 |29622 |1 |10 | |0 | |
-ROW |31629 |29622 |2 |1 |8 |0 | |
-ROW |31630 |29623 |1 |10 | |0 | |
-ROW |31631 |29623 |2 |1 |8 |0 | |
-ROW |31632 |29624 |1 |10 | |0 | |
-ROW |31633 |29625 |1 |10 | |0 | |
-ROW |31634 |29626 |1 |10 | |0 | |
-ROW |31635 |29627 |1 |10 | |0 | |
-ROW |31636 |29631 |1 |10 | |0 | |
-ROW |31637 |29631 |2 |1 |8 |0 | |
-ROW |31638 |29632 |1 |10 | |0 | |
-ROW |31639 |29632 |2 |1 |8 |0 | |
-ROW |31640 |29633 |1 |10 | |0 | |
-ROW |31641 |29634 |1 |10 | |0 | |
-ROW |31642 |29635 |1 |10 | |0 | |
-ROW |31643 |29636 |1 |10 | |0 | |
-ROW |31644 |29637 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
-ROW |31645 |29638 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
-ROW |31646 |29639 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
-ROW |31647 |29640 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
-ROW |31648 |29641 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |31649 |29642 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |31650 |29643 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |31651 |29644 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
-ROW |31652 |29645 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
-ROW |31653 |29646 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
-ROW |31654 |29647 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
-ROW |31655 |29648 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |31656 |29649 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |31657 |29650 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |31658 |30688 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].state.text.first() |0 | |
-ROW |31659 |30688 |2 |20 |1d |0 | |
-ROW |31660 |30689 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].value.first() |0 | |
-ROW |31661 |30689 |2 |20 |1h |0 | |
-ROW |31662 |30073 |1 |20 |1d |0 | |
-ROW |31663 |30074 |1 |20 |1d |0 | |
-ROW |31664 |30079 |1 |1 |1048576 |0 | |
-ROW |31665 |30082 |1 |1 |1048576 |0 | |
-ROW |31666 |28342 |1 |20 |1d |0 | |
-ROW |31667 |28344 |1 |20 |1d |0 | |
-ROW |31668 |28345 |1 |20 |1d |0 | |
-ROW |31669 |30141 |1 |20 |1d |0 | |
-ROW |31670 |28354 |1 |1 |0.1 |0 | |
-ROW |31671 |28356 |1 |1 |0.1 |0 | |
-ROW |31672 |28367 |1 |1 |1048576 |0 | |
-ROW |31673 |28372 |1 |1 |1048576 |0 | |
-ROW |31674 |28390 |1 |20 |1d |0 | |
-ROW |31675 |28391 |1 |20 |1d |0 | |
-ROW |31676 |28422 |1 |1 |1048576 |0 | |
-ROW |31677 |28425 |1 |1 |1048576 |0 | |
-ROW |31678 |28438 |1 |20 |1d |0 | |
-ROW |31679 |28439 |1 |20 |1d |0 | |
-ROW |31680 |28451 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |0 | |
-ROW |31681 |28466 |1 |20 |1d |0 | |
-ROW |31682 |28467 |1 |20 |1d |0 | |
-ROW |31683 |28479 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |0 | |
+ROW |31684 |28742 |1 |21 |// Convert Apache status to JSON&bsn;var lines = value.split("\n");&bsn;var fields = {},&bsn; output = {},&bsn; workers = {&bsn; "_": 0, "S": 0, "R": 0,&bsn; "W": 0, "K": 0, "D": 0,&bsn; "C": 0, "L": 0, "G": 0,&bsn; "I": 0, ".": 0&bsn; };&bsn;&bsn;// Get all "Key: Value" pairs as an object&bsn;for (var i = 0; i < lines.length; i++) {&bsn; var line = lines[i].match(/([A-z0-9 ]+): (.*)/);&bsn; if (line !== null) {&bsn; output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);&bsn; }&bsn;}&bsn;&bsn;// For versions without "ServerUptimeSeconds" metric&bsn;output.ServerUptimeSeconds = output.ServerUptimeSeconds &pipe;&pipe; output.Uptime&bsn; &bsn;// Parse "Scoreboard" to get worker count&bsn;if (typeof output.Scoreboard === 'string') {&bsn; for (var i = 0; i < output.Scoreboard.length; i++) {&bsn; var char = output.Scoreboard[i];&bsn; workers[char]++;&bsn; }&bsn;}&bsn; &bsn;// Add worker data to the output&bsn;output.Workers = {&bsn; waiting: workers["_"], starting: workers["S"], reading: workers["R"],&bsn; sending: workers["W"], keepalive: workers["K"], dnslookup: workers["D"],&bsn; closing: workers["C"], logging: workers["L"], finishing: workers["G"],&bsn; cleanup: workers["I"], slot: workers["."]&bsn;};&bsn; &bsn;// Return JSON string&bsn;return JSON.stringify(output);|0 | |
+ROW |31685 |28743 |1 |20 |10m |0 | |
+ROW |31686 |28749 |1 |12 |$["Total Accesses"] |0 | |
+ROW |31687 |28750 |1 |12 |$.Workers.reading |0 | |
+ROW |31688 |28751 |1 |12 |$["Total kBytes"] |0 | |
+ROW |31689 |28751 |2 |1 |1024 |0 | |
+ROW |31690 |28752 |1 |12 |$["Total kBytes"] |0 | |
+ROW |31691 |28752 |2 |1 |1024 |0 | |
+ROW |31692 |28752 |3 |10 | |0 | |
+ROW |31693 |28753 |1 |12 |$.Workers.waiting |0 | |
+ROW |31694 |28754 |1 |12 |$.Workers.starting |0 | |
+ROW |31695 |28755 |1 |12 |$.Workers.slot |0 | |
+ROW |31696 |28756 |1 |12 |$.Workers.sending |0 | |
+ROW |31697 |28757 |1 |12 |$.Workers.logging |0 | |
+ROW |31698 |28758 |1 |12 |$.ServerUptimeSeconds |0 | |
+ROW |31699 |28759 |1 |12 |$.Workers.keepalive |0 | |
+ROW |31700 |28760 |1 |12 |$.Workers.cleanup |0 | |
+ROW |31701 |28761 |1 |12 |$["Total Accesses"] |0 | |
+ROW |31702 |28761 |2 |10 | |0 | |
+ROW |31703 |28762 |1 |12 |$.Workers.dnslookup |0 | |
+ROW |31704 |28763 |1 |12 |$.Workers.closing |0 | |
+ROW |31705 |28764 |1 |12 |$.IdleWorkers |0 | |
+ROW |31706 |28765 |1 |12 |$.BusyWorkers |0 | |
+ROW |31707 |28766 |1 |12 |$.ServerVersion |0 | |
+ROW |31708 |28766 |2 |20 |1d |0 | |
+ROW |31709 |28767 |1 |12 |$.Workers.finishing |0 | |
+ROW |31710 |28768 |1 |12 |$.ServerMPM |0 | |
+ROW |31711 |28768 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |31712 |28769 |1 |12 |$.ConnsAsyncClosing |0 | |
+ROW |31713 |28770 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
+ROW |31714 |28771 |1 |12 |$.ConnsAsyncWriting |0 | |
+ROW |31715 |28772 |1 |12 |$.ConnsTotal |0 | |
+ROW |31716 |28773 |1 |12 |$.BytesPerReq |0 | |
+ROW |31717 |28774 |1 |12 |$.Processes |0 | |
+ROW |31718 |28775 |1 |21 |// Convert Apache status to JSON&bsn;var lines = value.split("\n");&bsn;var fields = {},&bsn; output = {},&bsn; workers = {&bsn; "_": 0, "S": 0, "R": 0,&bsn; "W": 0, "K": 0, "D": 0,&bsn; "C": 0, "L": 0, "G": 0,&bsn; "I": 0, ".": 0&bsn; };&bsn;&bsn;// Get all "Key: Value" pairs as an object&bsn;for (var i = 0; i < lines.length; i++) {&bsn; var line = lines[i].match(/([A-z0-9 ]+): (.*)/);&bsn; if (line !== null) {&bsn; output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);&bsn; }&bsn;}&bsn;&bsn;// For versions without "ServerUptimeSeconds" metric&bsn;output.ServerUptimeSeconds = output.ServerUptimeSeconds &pipe;&pipe; output.Uptime&bsn; &bsn;// Parse "Scoreboard" to get worker count.&bsn;if (typeof output.Scoreboard === 'string') {&bsn; for (var i = 0; i < output.Scoreboard.length; i++) {&bsn; var char = output.Scoreboard[i];&bsn; workers[char]++;&bsn; }&bsn;}&bsn; &bsn;// Add worker data to the output&bsn;output.Workers = {&bsn; waiting: workers["_"], starting: workers["S"], reading: workers["R"],&bsn; sending: workers["W"], keepalive: workers["K"], dnslookup: workers["D"],&bsn; closing: workers["C"], logging: workers["L"], finishing: workers["G"],&bsn; cleanup: workers["I"], slot: workers["."]&bsn;};&bsn; &bsn;// Return JSON string&bsn;return JSON.stringify(output);|0 | |
+ROW |31719 |28776 |1 |20 |10m |0 | |
+ROW |31720 |28778 |1 |12 |$.Workers.starting |0 | |
+ROW |31721 |28779 |1 |12 |$.Workers.slot |0 | |
+ROW |31722 |28780 |1 |12 |$.Workers.sending |0 | |
+ROW |31723 |28781 |1 |12 |$.Workers.reading |0 | |
+ROW |31724 |28782 |1 |12 |$.Workers.logging |0 | |
+ROW |31725 |28783 |1 |12 |$.Workers.keepalive |0 | |
+ROW |31726 |28784 |1 |12 |$.Workers.cleanup |0 | |
+ROW |31727 |28785 |1 |12 |$.Workers.finishing |0 | |
+ROW |31728 |28786 |1 |12 |$.Workers.closing |0 | |
+ROW |31729 |28787 |1 |12 |$.Workers.dnslookup |0 | |
+ROW |31730 |28788 |1 |12 |$.IdleWorkers |0 | |
+ROW |31731 |28789 |1 |12 |$.BusyWorkers |0 | |
+ROW |31732 |28790 |1 |12 |$.ServerVersion |0 | |
+ROW |31733 |28790 |2 |20 |1d |0 | |
+ROW |31734 |28791 |1 |12 |$.ServerUptimeSeconds |0 | |
+ROW |31735 |28792 |1 |12 |$["Total Accesses"] |0 | |
+ROW |31736 |28793 |1 |12 |$["Total Accesses"] |0 | |
+ROW |31737 |28793 |2 |10 | |0 | |
+ROW |31738 |28794 |1 |12 |$["Total kBytes"] |0 | |
+ROW |31739 |28794 |2 |1 |1024 |0 | |
+ROW |31740 |28794 |3 |10 | |0 | |
+ROW |31741 |28795 |1 |12 |$["Total kBytes"] |0 | |
+ROW |31742 |28795 |2 |1 |1024 |0 | |
+ROW |31743 |28796 |1 |12 |$.Workers.waiting |0 | |
+ROW |31744 |28797 |1 |12 |$.ServerMPM |0 | |
+ROW |31745 |28797 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |31746 |28798 |1 |12 |$.ConnsAsyncClosing |0 | |
+ROW |31747 |28799 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
+ROW |31748 |28800 |1 |12 |$.ConnsAsyncWriting |0 | |
+ROW |31749 |28801 |1 |12 |$.ConnsTotal |0 | |
+ROW |31750 |28802 |1 |12 |$.BytesPerReq |0 | |
+ROW |31751 |28803 |1 |12 |$.Processes |0 | |
+ROW |31752 |30530 |1 |20 |10m |0 | |
+ROW |31753 |30532 |1 |12 |$.Architecture |0 | |
+ROW |31754 |30532 |2 |20 |1d |0 | |
+ROW |31755 |30533 |1 |12 |$.LiveRestoreEnabled |0 | |
+ROW |31756 |30533 |2 |6 | |0 | |
+ROW |31757 |30533 |3 |20 |1d |0 | |
+ROW |31758 |30534 |1 |12 |$.LoggingDriver |0 | |
+ROW |31759 |30534 |2 |20 |1d |0 | |
+ROW |31760 |30535 |1 |12 |$.MemoryLimit |0 | |
+ROW |31761 |30535 |2 |6 | |0 | |
+ROW |31762 |30535 |3 |20 |1d |0 | |
+ROW |31763 |30536 |1 |12 |$.MemTotal |0 | |
+ROW |31764 |30537 |1 |12 |$.Name |0 | |
+ROW |31765 |30538 |1 |12 |$.NCPU |0 | |
+ROW |31766 |30539 |1 |12 |$.NFd |0 | |
+ROW |31767 |30540 |1 |12 |$.NEventsListener |0 | |
+ROW |31768 |30541 |1 |12 |$.KernelVersion |0 | |
+ROW |31769 |30541 |2 |20 |1d |0 | |
+ROW |31770 |30542 |1 |12 |$.OomKillDisable |0 | |
+ROW |31771 |30542 |2 |6 | |0 | |
+ROW |31772 |30542 |3 |20 |1d |0 | |
+ROW |31773 |30543 |1 |12 |$.OperatingSystem |0 | |
+ROW |31774 |30543 |2 |20 |1d |0 | |
+ROW |31775 |30544 |1 |12 |$.OSType |0 | |
+ROW |31776 |30544 |2 |20 |1d |0 | |
+ROW |31777 |30545 |1 |12 |$.PidsLimit |0 | |
+ROW |31778 |30545 |2 |6 | |0 | |
+ROW |31779 |30545 |3 |20 |1d |0 | |
+ROW |31780 |30546 |1 |12 |$.DockerRootDir |0 | |
+ROW |31781 |30546 |2 |20 |1d |0 | |
+ROW |31782 |30547 |1 |12 |$.ServerVersion |0 | |
+ROW |31783 |30547 |2 |20 |1d |0 | |
+ROW |31784 |30548 |1 |12 |$.SwapLimit |0 | |
+ROW |31785 |30548 |2 |6 | |0 | |
+ROW |31786 |30548 |3 |20 |1d |0 | |
+ROW |31787 |30549 |1 |12 |$.LayersSize |0 | |
+ROW |31788 |30550 |1 |12 |$.IPv4Forwarding |0 | |
+ROW |31789 |30550 |2 |6 | |0 | |
+ROW |31790 |30550 |3 |20 |1d |0 | |
+ROW |31791 |30551 |1 |12 |$.KernelMemory |0 | |
+ROW |31792 |30551 |2 |6 | |0 | |
+ROW |31793 |30551 |3 |20 |1d |0 | |
+ROW |31794 |30552 |1 |12 |$.CPUSet |0 | |
+ROW |31795 |30552 |2 |6 | |0 | |
+ROW |31796 |30552 |3 |20 |1d |0 | |
+ROW |31797 |30553 |1 |12 |$.Containers[*].SizeRw.sum() |0 | |
+ROW |31798 |30554 |1 |12 |$.ContainersPaused |0 | |
+ROW |31799 |30555 |1 |12 |$.ContainersRunning |0 | |
+ROW |31800 |30556 |1 |12 |$.ContainersStopped |0 | |
+ROW |31801 |30557 |1 |12 |$.Containers |0 | |
+ROW |31802 |30558 |1 |12 |$.CpuCfsPeriod |0 | |
+ROW |31803 |30558 |2 |6 | |0 | |
+ROW |31804 |30558 |3 |20 |1d |0 | |
+ROW |31805 |30559 |1 |12 |$.CpuCfsQuota |0 | |
+ROW |31806 |30559 |2 |6 | |0 | |
+ROW |31807 |30559 |3 |20 |1d |0 | |
+ROW |31808 |30560 |1 |12 |$.CPUShares |0 | |
+ROW |31809 |30560 |2 |6 | |0 | |
+ROW |31810 |30560 |3 |20 |1d |0 | |
+ROW |31811 |30561 |1 |12 |$.KernelMemoryTCP |0 | |
+ROW |31812 |30561 |2 |6 | |0 | |
+ROW |31813 |30561 |3 |20 |1d |0 | |
+ROW |31814 |30562 |1 |12 |$.Debug |0 | |
+ROW |31815 |30562 |2 |6 | |0 | |
+ROW |31816 |30562 |3 |20 |1d |0 | |
+ROW |31817 |30563 |1 |12 |$.DefaultRuntime |0 | |
+ROW |31818 |30563 |2 |20 |1d |0 | |
+ROW |31819 |30564 |1 |12 |$.Driver |0 | |
+ROW |31820 |30564 |2 |20 |1d |0 | |
+ROW |31821 |30565 |1 |12 |$.NGoroutines |0 | |
+ROW |31822 |30566 |1 |12 |$.Images[*].Size.sum() |0 | |
+ROW |31823 |30567 |1 |12 |$.length() |0 | |
+ROW |31824 |30568 |1 |12 |$.Images |0 | |
+ROW |31825 |30569 |1 |12 |$.CgroupDriver |0 | |
+ROW |31826 |30569 |2 |20 |1d |0 | |
+ROW |31827 |30570 |1 |12 |$.Volumes[*].UsageData.Size.sum() |0 | |
+ROW |31828 |30575 |1 |12 |$.cpu_stats.online_cpus |0 | |
+ROW |31829 |30576 |1 |12 |$.memory_stats.commitbytes |0 | |
+ROW |31830 |30577 |1 |12 |$.memory_stats.commitpeakbytes |0 | |
+ROW |31831 |30578 |1 |12 |$.memory_stats.max_usage |0 | |
+ROW |31832 |30579 |1 |12 |$.memory_stats.privateworkingset |0 | |
+ROW |31833 |30580 |1 |12 |$.memory_stats.usage |0 | |
+ROW |31834 |30581 |1 |12 |$.Created |0 | |
+ROW |31835 |30581 |2 |20 |1d |0 | |
+ROW |31836 |30582 |1 |12 |$.cpu_stats.cpu_usage.total_usage |0 | |
+ROW |31837 |30582 |2 |10 | |0 | |
+ROW |31838 |30582 |3 |1 |1.0E-9 |0 | |
+ROW |31839 |30583 |1 |12 |$.networks[*].rx_bytes.sum() |2 |0 |
+ROW |31840 |30583 |2 |10 | |0 | |
+ROW |31841 |30584 |1 |12 |$.networks[*].rx_dropped.sum() |2 |0 |
+ROW |31842 |30584 |2 |10 | |0 | |
+ROW |31843 |30585 |1 |12 |$.networks[*].rx_errors.sum() |2 |0 |
+ROW |31844 |30585 |2 |10 | |0 | |
+ROW |31845 |30586 |1 |12 |$.networks[*].rx_packets.sum() |2 |0 |
+ROW |31846 |30586 |2 |10 | |0 | |
+ROW |31847 |30587 |1 |12 |$.networks[*].tx_bytes.sum() |2 |0 |
+ROW |31848 |30587 |2 |10 | |0 | |
+ROW |31849 |30588 |1 |12 |$.networks[*].tx_dropped.sum() |2 |0 |
+ROW |31850 |30588 |2 |10 | |0 | |
+ROW |31851 |30589 |1 |12 |$.networks[*].tx_errors.sum() |2 |0 |
+ROW |31852 |30589 |2 |10 | |0 | |
+ROW |31853 |30590 |1 |12 |$.cpu_stats.cpu_usage.usage_in_usermode |0 | |
+ROW |31854 |30590 |2 |10 | |0 | |
+ROW |31855 |30590 |3 |1 |1.0E-9 |0 | |
+ROW |31856 |30591 |1 |12 |$.cpu_stats.throttling_data.periods |0 | |
+ROW |31857 |30592 |1 |12 |$.State.FinishedAt |0 | |
+ROW |31858 |30592 |2 |20 |1d |0 | |
+ROW |31859 |30593 |1 |12 |$.State.OOMKilled |0 | |
+ROW |31860 |30593 |2 |6 | |0 | |
+ROW |31861 |30594 |1 |12 |$[?(@.Names[0] == "{#NAME}")].Image.first() |0 | |
+ROW |31862 |30594 |2 |20 |1d |0 | |
+ROW |31863 |30595 |1 |12 |$.RestartCount |0 | |
+ROW |31864 |30596 |1 |12 |$.State.StartedAt |0 | |
+ROW |31865 |30596 |2 |20 |1d |0 | |
+ROW |31866 |30597 |1 |12 |$.State.Dead |0 | |
+ROW |31867 |30597 |2 |6 | |0 | |
+ROW |31868 |30598 |1 |12 |$.State.Error |0 | |
+ROW |31869 |30598 |2 |20 |1d |0 | |
+ROW |31870 |30599 |1 |12 |$.State.ExitCode |0 | |
+ROW |31871 |30599 |2 |20 |1d |0 | |
+ROW |31872 |30600 |1 |12 |$.State.Paused |0 | |
+ROW |31873 |30600 |2 |6 | |0 | |
+ROW |31874 |30601 |1 |12 |$.cpu_stats.throttling_data.throttled_time |0 | |
+ROW |31875 |30601 |2 |1 |1.0E-9 |0 | |
+ROW |31876 |30602 |1 |12 |$.State.Pid |0 | |
+ROW |31877 |30602 |2 |20 |1d |0 | |
+ROW |31878 |30603 |1 |12 |$.State.Restarting |0 | |
+ROW |31879 |30603 |2 |6 | |0 | |
+ROW |31880 |30604 |1 |12 |$.State.Running |0 | |
+ROW |31881 |30604 |2 |6 | |0 | |
+ROW |31882 |30605 |1 |12 |$.State.Status |0 | |
+ROW |31883 |30605 |2 |20 |1h |0 | |
+ROW |31884 |30606 |1 |12 |$.cpu_stats.cpu_usage.usage_in_kernelmode |0 | |
+ROW |31885 |30606 |2 |10 | |0 | |
+ROW |31886 |30606 |3 |1 |1.0E-9 |0 | |
+ROW |31887 |30607 |1 |12 |$.cpu_stats.throttling_data.throttled_periods |0 | |
+ROW |31888 |30608 |1 |12 |$.networks[*].tx_packets.sum() |2 |0 |
+ROW |31889 |30608 |2 |10 | |0 | |
+ROW |31890 |30609 |1 |12 |$[?(@.Id == "{#ID}")].Created.first() |0 | |
+ROW |31891 |30609 |2 |20 |1d |0 | |
+ROW |31892 |30610 |1 |12 |$[?(@.Id == "{#ID}")].Size.first() |0 | |
+ROW |31893 |30188 |1 |20 |10m |0 | |
+ROW |31894 |30189 |1 |5 |# ([\s\S]*)&bsn;\1 |0 | |
+ROW |31895 |30189 |2 |24 |&bsn;&bsn;1 |0 | |
+ROW |31896 |30191 |1 |21 |try {&bsn; var t = value.match(/(\d+)d (\d+)h(\d+)m(\d+)s/);&bsn; return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy uptime is not found : " + error;&bsn;} |0 | |
+ROW |31897 |30192 |1 |21 |try {&bsn; return value.match(/HAProxy version (\d+\.\d+\.\d+),/)[1];&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy version is not found : " + error;&bsn;} |0 | |
+ROW |31898 |30192 |2 |20 |1d |0 | |
+ROW |31899 |30197 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |31900 |30197 |2 |10 | |0 | |
+ROW |31901 |30198 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |31902 |30198 |2 |10 | |0 | |
+ROW |31903 |30199 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |31904 |30199 |2 |10 | |0 | |
+ROW |31905 |30200 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |31906 |30201 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |31907 |30201 |2 |1 |0.001 |0 | |
+ROW |31908 |30202 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |31909 |30202 |2 |1 |0.001 |0 | |
+ROW |31910 |30203 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |31911 |30203 |2 |6 | |0 | |
+ROW |31912 |30203 |3 |20 |10m |0 | |
+ROW |31913 |30204 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |31914 |30204 |2 |10 | |0 | |
+ROW |31915 |30205 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |31916 |30205 |2 |10 | |0 | |
+ROW |31917 |30206 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |31918 |30206 |2 |1 |8 |0 | |
+ROW |31919 |30206 |3 |10 | |0 | |
+ROW |31920 |30207 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |31921 |30207 |2 |1 |8 |0 | |
+ROW |31922 |30207 |3 |10 | |0 | |
+ROW |31923 |30208 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |31924 |30208 |2 |10 | |0 | |
+ROW |31925 |30209 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |31926 |30209 |2 |10 | |0 | |
+ROW |31927 |30210 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
+ROW |31928 |30210 |2 |10 | |0 | |
+ROW |31929 |30211 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
+ROW |31930 |30211 |2 |10 | |0 | |
+ROW |31931 |30212 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
+ROW |31932 |30212 |2 |10 | |0 | |
+ROW |31933 |30213 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |31934 |30213 |2 |10 | |0 | |
+ROW |31935 |30214 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |31936 |30214 |2 |10 | |0 | |
+ROW |31937 |30215 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |31938 |30216 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |31939 |30217 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |31940 |30218 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |31941 |30218 |2 |20 |1h |0 | |
+ROW |31942 |30219 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |31943 |30219 |2 |10 | |0 | |
+ROW |31944 |30220 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |31945 |30220 |2 |10 | |0 | |
+ROW |31946 |30221 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |31947 |30221 |2 |10 | |0 | |
+ROW |31948 |30222 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |31949 |30222 |2 |10 | |0 | |
+ROW |31950 |30223 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |31951 |30223 |2 |10 | |0 | |
+ROW |31952 |30224 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |31953 |30225 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |31954 |30225 |2 |1 |0.001 |0 | |
+ROW |31955 |30226 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |31956 |30226 |2 |1 |0.001 |0 | |
+ROW |31957 |30227 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |31958 |30227 |2 |6 | |0 | |
+ROW |31959 |30227 |3 |20 |10m |0 | |
+ROW |31960 |30228 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |31961 |30228 |2 |10 | |0 | |
+ROW |31962 |30229 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |31963 |30229 |2 |10 | |0 | |
+ROW |31964 |30230 |1 |5 |# ([\s\S]*)\n&bsn;\1 |0 | |
+ROW |31965 |30230 |2 |24 |&bsn;&bsn;1 |0 | |
+ROW |31966 |30233 |1 |20 |10m |0 | |
+ROW |31967 |30234 |1 |21 |try {&bsn; var t = value.match(/(\d+)d (\d+)h(\d+)m(\d+)s/);&bsn; return t[1] * 86400 + t[2] * 3600 + t[3] * 60 + t[4] * 1;&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy uptime is not found : " + error;&bsn;} |0 | |
+ROW |31968 |30235 |1 |21 |try {&bsn; return value.match(/HAProxy version (\d+\.\d+\.\d+),/)[1];&bsn;}&bsn;catch (error) {&bsn; throw "HAProxy version is not found : " + error;&bsn;} |0 | |
+ROW |31969 |30235 |2 |20 |1d |0 | |
+ROW |31970 |30240 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |31971 |30240 |2 |10 | |0 | |
+ROW |31972 |30241 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |31973 |30241 |2 |10 | |0 | |
+ROW |31974 |30242 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |31975 |30242 |2 |10 | |0 | |
+ROW |31976 |30243 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |31977 |30244 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |31978 |30244 |2 |1 |0.001 |0 | |
+ROW |31979 |30245 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |31980 |30245 |2 |1 |0.001 |0 | |
+ROW |31981 |30246 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |31982 |30246 |2 |6 | |0 | |
+ROW |31983 |30246 |3 |20 |10m |0 | |
+ROW |31984 |30247 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |31985 |30247 |2 |10 | |0 | |
+ROW |31986 |30248 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |31987 |30248 |2 |10 | |0 | |
+ROW |31988 |30249 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |31989 |30249 |2 |1 |8 |0 | |
+ROW |31990 |30249 |3 |10 | |0 | |
+ROW |31991 |30250 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |31992 |30250 |2 |1 |8 |0 | |
+ROW |31993 |30250 |3 |10 | |0 | |
+ROW |31994 |30251 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |31995 |30251 |2 |10 | |0 | |
+ROW |31996 |30252 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |31997 |30252 |2 |10 | |0 | |
+ROW |31998 |30253 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
+ROW |31999 |30253 |2 |10 | |0 | |
+ROW |32000 |30254 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
+ROW |32001 |30254 |2 |10 | |0 | |
+ROW |32002 |30255 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
+ROW |32003 |30255 |2 |10 | |0 | |
+ROW |32004 |30256 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |32005 |30256 |2 |10 | |0 | |
+ROW |32006 |30257 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |32007 |30257 |2 |10 | |0 | |
+ROW |32008 |30258 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |32009 |30259 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |32010 |30260 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |32011 |30261 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |32012 |30261 |2 |20 |1h |0 | |
+ROW |32013 |30262 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |32014 |30262 |2 |10 | |0 | |
+ROW |32015 |30263 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |32016 |30263 |2 |10 | |0 | |
+ROW |32017 |30264 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |32018 |30264 |2 |10 | |0 | |
+ROW |32019 |30265 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |32020 |30265 |2 |10 | |0 | |
+ROW |32021 |30266 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |32022 |30266 |2 |10 | |0 | |
+ROW |32023 |30267 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |32024 |30268 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |32025 |30268 |2 |1 |0.001 |0 | |
+ROW |32026 |30269 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |32027 |30269 |2 |1 |0.001 |0 | |
+ROW |32028 |30270 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |32029 |30270 |2 |6 | |0 | |
+ROW |32030 |30270 |3 |20 |10m |0 | |
+ROW |32031 |30271 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |32032 |30271 |2 |10 | |0 | |
+ROW |32033 |30272 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |32034 |30272 |2 |10 | |0 | |
+ROW |32035 |30611 |1 |20 |10m |0 | |
+ROW |32036 |30613 |1 |12 |$.cmd_flush |0 | |
+ROW |32037 |30613 |2 |10 | |0 | |
+ROW |32038 |30614 |1 |12 |$.bytes |0 | |
+ROW |32039 |30615 |1 |12 |$.uptime |0 | |
+ROW |32040 |30616 |1 |12 |$.total_items |0 | |
+ROW |32041 |30616 |2 |10 | |0 | |
+ROW |32042 |30617 |1 |12 |$.threads |0 | |
+ROW |32043 |30618 |1 |12 |$.get_misses |0 | |
+ROW |32044 |30618 |2 |10 | |0 | |
+ROW |32045 |30619 |1 |12 |$.get_hits |0 | |
+ROW |32046 |30619 |2 |10 | |0 | |
+ROW |32047 |30620 |1 |12 |$.evictions |0 | |
+ROW |32048 |30620 |2 |10 | |0 | |
+ROW |32049 |30621 |1 |12 |$.curr_items |0 | |
+ROW |32050 |30622 |1 |12 |$.bytes_written |0 | |
+ROW |32051 |30622 |2 |10 | |0 | |
+ROW |32052 |30623 |1 |12 |$.bytes_read |0 | |
+ROW |32053 |30623 |2 |10 | |0 | |
+ROW |32054 |30624 |1 |12 |$.pid |0 | |
+ROW |32055 |30624 |2 |20 |1d |0 | |
+ROW |32056 |30625 |1 |12 |$.cmd_get |0 | |
+ROW |32057 |30625 |2 |10 | |0 | |
+ROW |32058 |30626 |1 |12 |$.rusage_user |0 | |
+ROW |32059 |30627 |1 |12 |$.rusage_system |0 | |
+ROW |32060 |30628 |1 |12 |$.conn_yields |0 | |
+ROW |32061 |30628 |2 |10 | |0 | |
+ROW |32062 |30629 |1 |12 |$.connection_structures |0 | |
+ROW |32063 |30630 |1 |12 |$.total_connections |0 | |
+ROW |32064 |30630 |2 |10 | |0 | |
+ROW |32065 |30631 |1 |12 |$.listen_disabled_num |0 | |
+ROW |32066 |30631 |2 |10 | |0 | |
+ROW |32067 |30632 |1 |12 |$.max_connections |0 | |
+ROW |32068 |30632 |2 |20 |30m |0 | |
+ROW |32069 |30633 |1 |12 |$.curr_connections |0 | |
+ROW |32070 |30634 |1 |12 |$.limit_maxbytes |0 | |
+ROW |32071 |30634 |2 |20 |30m |0 | |
+ROW |32072 |30635 |1 |12 |$.cmd_set |0 | |
+ROW |32073 |30635 |2 |10 | |0 | |
+ROW |32074 |30636 |1 |12 |$.version |0 | |
+ROW |32075 |30636 |2 |20 |1d |0 | |
+ROW |32076 |28810 |1 |20 |10m |0 | |
+ROW |32077 |28811 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
+ROW |32078 |28812 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
+ROW |32079 |28813 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
+ROW |32080 |28814 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
+ROW |32081 |28815 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
+ROW |32082 |28815 |2 |10 | |0 | |
+ROW |32083 |28816 |1 |21 |var a = value.match(/server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)/)&bsn;if (a) {&bsn; return a[1]-a[2]&bsn;} |0 | |
+ROW |32084 |28816 |2 |10 | |0 | |
+ROW |32085 |28817 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
+ROW |32086 |28817 |2 |10 | |0 | |
+ROW |32087 |28818 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |32088 |28818 |2 |10 | |0 | |
+ROW |32089 |28819 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |32090 |28820 |1 |5 |Server: nginx/(.+)&bsn;\1 |0 | |
+ROW |32091 |28820 |2 |20 |1d |0 | |
+ROW |32092 |28822 |1 |20 |10m |0 | |
+ROW |32093 |28824 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |32094 |28825 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |32095 |28825 |2 |10 | |0 | |
+ROW |32096 |28826 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
+ROW |32097 |28826 |2 |10 | |0 | |
+ROW |32098 |28827 |1 |21 |var a = value.match(/server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)/)&bsn;if (a) {&bsn; return a[1]-a[2]&bsn;} |0 | |
+ROW |32099 |28827 |2 |10 | |0 | |
+ROW |32100 |28828 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
+ROW |32101 |28828 |2 |10 | |0 | |
+ROW |32102 |28829 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
+ROW |32103 |28830 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
+ROW |32104 |28831 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
+ROW |32105 |28832 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
+ROW |32106 |28833 |1 |5 |Server: nginx/(.+)&bsn;\1 |0 | |
+ROW |32107 |28833 |2 |20 |1d |0 | |
+ROW |32108 |29653 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |32109 |29654 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |32110 |29655 |1 |20 |10m |0 | |
+ROW |32111 |29661 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |32112 |29662 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |32113 |29662 |2 |12 |$.status |0 | |
+ROW |32114 |29662 |3 |6 | |2 |0 |
+ROW |32115 |29998 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |32116 |29999 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |32117 |29687 |1 |12 |$.mem_used |0 | |
+ROW |32118 |29688 |1 |12 |$.disk_free_alarm |0 | |
+ROW |32119 |29688 |2 |6 | |0 | |
+ROW |32120 |29691 |1 |12 |$.fd_used |0 | |
+ROW |32121 |29692 |1 |12 |$.uptime |0 | |
+ROW |32122 |29692 |2 |1 |0.001 |0 | |
+ROW |32123 |29693 |1 |12 |$.mem_alarm |0 | |
+ROW |32124 |29693 |2 |6 | |0 | |
+ROW |32125 |29694 |1 |12 |$.mem_limit |0 | |
+ROW |32126 |29695 |1 |12 |$.running |0 | |
+ROW |32127 |29695 |2 |6 | |0 | |
+ROW |32128 |29696 |1 |12 |$.partitions |0 | |
+ROW |32129 |29696 |2 |21 |return JSON.parse(value).length; |0 | |
+ROW |32130 |29697 |1 |12 |$.sockets_total |0 | |
+ROW |32131 |29698 |1 |12 |$.disk_free |0 | |
+ROW |32132 |29699 |1 |12 |$.run_queue |0 | |
+ROW |32133 |29700 |1 |12 |$.disk_free_limit |0 | |
+ROW |32134 |29701 |1 |12 |$.sockets_used |0 | |
+ROW |32135 |30000 |1 |12 |$.message_stats.redeliver |2 |0 |
+ROW |32136 |30001 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
+ROW |32137 |30002 |1 |12 |$.message_stats.return_unroutable |2 |0 |
+ROW |32138 |30003 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
+ROW |32139 |30004 |1 |12 |$.message_stats.publish_out |2 |0 |
+ROW |32140 |30005 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
+ROW |32141 |30006 |1 |12 |$.message_stats.publish_in |2 |0 |
+ROW |32142 |30007 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
+ROW |32143 |30008 |1 |12 |$.message_stats.publish |2 |0 |
+ROW |32144 |30009 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
+ROW |32145 |30010 |1 |12 |$.message_stats.deliver_get |2 |0 |
+ROW |32146 |30011 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
+ROW |32147 |30012 |1 |12 |$.message_stats.confirm |2 |0 |
+ROW |32148 |30013 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
+ROW |32149 |30014 |1 |12 |$.message_stats.ack |2 |0 |
+ROW |32150 |30015 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
+ROW |32151 |30016 |1 |12 |$.queue_totals.messages_ready |0 | |
+ROW |32152 |30017 |1 |12 |$.queue_totals.messages |0 | |
+ROW |32153 |30018 |1 |12 |$.object_totals.exchanges |0 | |
+ROW |32154 |30019 |1 |12 |$.object_totals.consumers |0 | |
+ROW |32155 |30020 |1 |12 |$.object_totals.queues |0 | |
+ROW |32156 |30021 |1 |12 |$.object_totals.channels |0 | |
+ROW |32157 |30022 |1 |12 |$.object_totals.connections |0 | |
+ROW |32158 |30023 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
+ROW |32159 |30024 |1 |12 |$.management_version |0 | |
+ROW |32160 |30024 |2 |20 |1d |0 | |
+ROW |32161 |30025 |1 |12 |$.rabbitmq_version |0 | |
+ROW |32162 |30025 |2 |20 |1d |0 | |
+ROW |32163 |29720 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
+ROW |32164 |29721 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
+ROW |32165 |29722 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
+ROW |32166 |29723 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |32167 |29724 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
+ROW |32168 |29725 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |32169 |29726 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
+ROW |32170 |29727 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
+ROW |32171 |29728 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |32172 |29729 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
+ROW |32173 |29730 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
+ROW |32174 |29731 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
+ROW |32175 |29732 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
+ROW |32176 |29733 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
+ROW |32177 |29734 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
+ROW |32178 |29735 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
+ROW |32179 |29736 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
+ROW |32180 |29737 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |32181 |30027 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
+ROW |32182 |30028 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |32183 |30029 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
+ROW |32184 |30030 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
+ROW |32185 |30031 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
+ROW |32186 |30032 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |32187 |30033 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
+ROW |32188 |30034 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |32189 |30035 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
+ROW |32190 |30036 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
+ROW |32191 |30037 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
+ROW |32192 |30038 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
+ROW |32193 |30039 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
+ROW |32194 |30040 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
+ROW |32195 |30041 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
+ROW |32196 |30042 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |32197 |29742 |1 |20 |10m |0 | |
+ROW |32198 |29744 |1 |12 |$.status |0 | |
+ROW |32199 |29744 |2 |6 | |2 |0 |
+ROW |32200 |29746 |1 |12 |$.message_stats.redeliver |2 |0 |
+ROW |32201 |29747 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
+ROW |32202 |29748 |1 |12 |$.message_stats.return_unroutable |2 |0 |
+ROW |32203 |29749 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
+ROW |32204 |29750 |1 |12 |$.message_stats.publish_out |2 |0 |
+ROW |32205 |29751 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
+ROW |32206 |29752 |1 |12 |$.message_stats.publish_in |2 |0 |
+ROW |32207 |29753 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
+ROW |32208 |29754 |1 |12 |$.message_stats.publish |2 |0 |
+ROW |32209 |29755 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
+ROW |32210 |29756 |1 |12 |$.message_stats.deliver_get |2 |0 |
+ROW |32211 |29757 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
+ROW |32212 |29758 |1 |12 |$.message_stats.confirm |2 |0 |
+ROW |32213 |29759 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
+ROW |32214 |29760 |1 |12 |$.message_stats.ack |2 |0 |
+ROW |32215 |29761 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
+ROW |32216 |29762 |1 |12 |$.queue_totals.messages_ready |0 | |
+ROW |32217 |29763 |1 |12 |$.queue_totals.messages |0 | |
+ROW |32218 |29764 |1 |12 |$.object_totals.exchanges |0 | |
+ROW |32219 |29765 |1 |12 |$.object_totals.consumers |0 | |
+ROW |32220 |29766 |1 |12 |$.object_totals.queues |0 | |
+ROW |32221 |29767 |1 |12 |$.object_totals.channels |0 | |
+ROW |32222 |29768 |1 |12 |$.object_totals.connections |0 | |
+ROW |32223 |29769 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
+ROW |32224 |29771 |1 |12 |$.partitions |0 | |
+ROW |32225 |29771 |2 |21 |return JSON.parse(value).length; |0 | |
+ROW |32226 |29772 |1 |12 |$.uptime |0 | |
+ROW |32227 |29772 |2 |1 |0.001 |0 | |
+ROW |32228 |29773 |1 |12 |$.disk_free_alarm |0 | |
+ROW |32229 |29773 |2 |6 | |0 | |
+ROW |32230 |29774 |1 |12 |$.mem_alarm |0 | |
+ROW |32231 |29774 |2 |6 | |0 | |
+ROW |32232 |29775 |1 |12 |$.running |0 | |
+ROW |32233 |29775 |2 |6 | |0 | |
+ROW |32234 |29776 |1 |12 |$.sockets_used |0 | |
+ROW |32235 |29777 |1 |12 |$.sockets_total |0 | |
+ROW |32236 |29779 |1 |12 |$.run_queue |0 | |
+ROW |32237 |29780 |1 |12 |$.mem_used |0 | |
+ROW |32238 |29781 |1 |12 |$.disk_free_limit |0 | |
+ROW |32239 |29782 |1 |12 |$.disk_free |0 | |
+ROW |32240 |29783 |1 |12 |$.fd_used |0 | |
+ROW |32241 |29784 |1 |12 |$.mem_limit |0 | |
+ROW |32242 |30044 |1 |12 |$.management_version |0 | |
+ROW |32243 |30044 |2 |20 |1d |0 | |
+ROW |32244 |30045 |1 |12 |$.rabbitmq_version |0 | |
+ROW |32245 |30045 |2 |20 |1d |0 | |
+ROW |32246 |29787 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
+ROW |32247 |29788 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |32248 |29789 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
+ROW |32249 |29790 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
+ROW |32250 |29791 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
+ROW |32251 |29792 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |32252 |29793 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
+ROW |32253 |29794 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |32254 |29795 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
+ROW |32255 |29796 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
+ROW |32256 |29797 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
+ROW |32257 |29798 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
+ROW |32258 |29799 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
+ROW |32259 |29800 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
+ROW |32260 |29801 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
+ROW |32261 |29802 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |32262 |29803 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
+ROW |32263 |29804 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
+ROW |32264 |29805 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
+ROW |32265 |29806 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |32266 |29807 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
+ROW |32267 |29808 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |32268 |29809 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
+ROW |32269 |29810 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
+ROW |32270 |29811 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |32271 |29812 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
+ROW |32272 |29813 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
+ROW |32273 |29814 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
+ROW |32274 |29815 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
+ROW |32275 |29816 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
+ROW |32276 |29817 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
+ROW |32277 |29818 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
+ROW |32278 |29819 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
+ROW |32279 |29820 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |32280 |28501 |1 |10 | |0 | |
+ROW |32281 |28514 |1 |10 | |0 | |
+ROW |32282 |28517 |1 |10 | |0 | |
+ROW |32283 |28519 |1 |10 | |0 | |
+ROW |32284 |28520 |1 |1 |0.001 |0 | |
+ROW |32285 |28521 |1 |10 | |0 | |
+ROW |32286 |28522 |1 |10 | |0 | |
+ROW |32287 |28523 |1 |10 | |0 | |
+ROW |32288 |28524 |1 |10 | |0 | |
+ROW |32289 |28525 |1 |1 |0.001 |0 | |
+ROW |32290 |28526 |1 |10 | |0 | |
+ROW |32291 |28527 |1 |10 | |0 | |
+ROW |32292 |28528 |1 |10 | |0 | |
+ROW |32293 |28529 |1 |10 | |0 | |
+ROW |32294 |28530 |1 |1 |0.001 |0 | |
+ROW |32295 |28531 |1 |10 | |0 | |
+ROW |32296 |26876 |1 |1 |0.001 |0 | |
+ROW |32297 |26881 |1 |1 |100 |0 | |
+ROW |32298 |26884 |1 |10 | |0 | |
+ROW |32299 |26885 |1 |1 |0.001 |0 | |
+ROW |32300 |26886 |1 |1 |0.001 |0 | |
+ROW |32301 |26887 |1 |10 | |0 | |
+ROW |32302 |26888 |1 |1 |0.001 |0 | |
+ROW |32303 |26889 |1 |10 | |0 | |
+ROW |32304 |26890 |1 |1 |0.001 |0 | |
+ROW |32305 |26894 |1 |1 |0.001 |0 | |
+ROW |32306 |26895 |1 |10 | |0 | |
+ROW |32307 |26896 |1 |10 | |0 | |
+ROW |32308 |26897 |1 |1 |0.001 |0 | |
+ROW |32309 |26905 |1 |1 |0.001 |0 | |
+ROW |32310 |26906 |1 |10 | |0 | |
+ROW |32311 |28586 |1 |12 |$.queue |0 | |
+ROW |32312 |28587 |1 |12 |$.queue |0 | |
+ROW |32313 |28588 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
+ROW |32314 |28589 |1 |12 |$.data.wcache.values.uint |0 | |
+ROW |32315 |28589 |2 |10 | |0 | |
+ROW |32316 |28590 |1 |12 |$.data.wcache.values.text |0 | |
+ROW |32317 |28590 |2 |10 | |0 | |
+ROW |32318 |28591 |1 |12 |$.data.wcache.values.str |0 | |
+ROW |32319 |28591 |2 |10 | |0 | |
+ROW |32320 |28592 |1 |12 |$.data.wcache.values['not supported'] |0 | |
+ROW |32321 |28592 |2 |10 | |0 | |
+ROW |32322 |28593 |1 |12 |$.data.wcache.values.log |0 | |
+ROW |32323 |28593 |2 |10 | |0 | |
+ROW |32324 |28594 |1 |12 |$.data.wcache.values.float |0 | |
+ROW |32325 |28594 |2 |10 | |0 | |
+ROW |32326 |28595 |1 |12 |$.data.wcache.values.all |0 | |
+ROW |32327 |28595 |2 |10 | |0 | |
+ROW |32328 |28596 |1 |12 |$.data.wcache.index.pused |0 | |
+ROW |32329 |28597 |1 |12 |$.data.wcache.history.pused |0 | |
+ROW |32330 |28598 |1 |12 |$.data.vmware.pused |0 | |
+ROW |32331 |28599 |1 |12 |$.data.rcache.pused |0 | |
+ROW |32332 |28600 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
+ROW |32333 |28601 |1 |12 |$.data.process['data sender'].busy.avg |0 | |
+ROW |32334 |28602 |1 |12 |$.data.process.trapper.busy.avg |0 | |
+ROW |32335 |28603 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
+ROW |32336 |28604 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
+ROW |32337 |28605 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
+ROW |32338 |28606 |1 |12 |$.data.process.poller.busy.avg |0 | |
+ROW |32339 |28607 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
+ROW |32340 |28608 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
+ROW |32341 |28609 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
+ROW |32342 |28610 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
+ROW |32343 |28611 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
+ROW |32344 |28612 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
+ROW |32345 |28613 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
+ROW |32346 |28614 |1 |12 |$.data.process['heartbeat sender'].busy.avg |0 | |
+ROW |32347 |28615 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
+ROW |32348 |28616 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
+ROW |32349 |28540 |1 |12 |$.queue |0 | |
+ROW |32350 |28541 |1 |12 |$.queue |0 | |
+ROW |32351 |28542 |1 |12 |$.data.wcache.index.pused |0 | |
+ROW |32352 |28543 |1 |12 |$.data.rcache.pused |0 | |
+ROW |32353 |28544 |1 |12 |$.data.vcache.buffer.pused |0 | |
+ROW |32354 |28545 |1 |12 |$.data.vcache.cache.hits |0 | |
+ROW |32355 |28545 |2 |10 | |0 | |
+ROW |32356 |28546 |1 |12 |$.data.vcache.cache.misses |0 | |
+ROW |32357 |28546 |2 |10 | |0 | |
+ROW |32358 |28547 |1 |12 |$.data.vcache.cache.mode |0 | |
+ROW |32359 |28548 |1 |12 |$.data.vmware.pused |0 | |
+ROW |32360 |28549 |1 |12 |$.data.wcache.history.pused |0 | |
+ROW |32361 |28550 |1 |12 |$.data.wcache.values.all |0 | |
+ROW |32362 |28550 |2 |10 | |0 | |
+ROW |32363 |28551 |1 |12 |$.data.wcache.trend.pused |0 | |
+ROW |32364 |28552 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
+ROW |32365 |28553 |1 |12 |$.data.wcache.values.float |0 | |
+ROW |32366 |28553 |2 |10 | |0 | |
+ROW |32367 |28554 |1 |12 |$.data.wcache.values.log |0 | |
+ROW |32368 |28554 |2 |10 | |0 | |
+ROW |32369 |28555 |1 |12 |$.data.wcache.values['not supported'] |0 | |
+ROW |32370 |28555 |2 |10 | |0 | |
+ROW |32371 |28556 |1 |12 |$.data.wcache.values.str |0 | |
+ROW |32372 |28556 |2 |10 | |0 | |
+ROW |32373 |28557 |1 |12 |$.data.wcache.values.text |0 | |
+ROW |32374 |28557 |2 |10 | |0 | |
+ROW |32375 |28558 |1 |12 |$.data.wcache.values.uint |0 | |
+ROW |32376 |28558 |2 |10 | |0 | |
+ROW |32377 |28559 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
+ROW |32378 |28560 |1 |12 |$.data.preprocessing_queue |0 | |
+ROW |32379 |28561 |1 |12 |$.data.process.alerter.busy.avg |0 | |
+ROW |32380 |28562 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
+ROW |32381 |28563 |1 |12 |$.data.process['alert manager'].busy.avg |0 | |
+ROW |32382 |28564 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
+ROW |32383 |28565 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
+ROW |32384 |28566 |1 |12 |$.data.process.escalator.busy.avg |0 | |
+ROW |32385 |28567 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
+ROW |32386 |28568 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
+ROW |32387 |28569 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
+ROW |32388 |28570 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
+ROW |32389 |28571 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
+ROW |32390 |28572 |1 |12 |$.data.process.timer.busy.avg |0 | |
+ROW |32391 |28573 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
+ROW |32392 |28574 |1 |12 |$.data.process.poller.busy.avg |0 | |
+ROW |32393 |28575 |1 |12 |$.data.process['preprocessing manager'].busy.avg |0 | |
+ROW |32394 |28576 |1 |12 |$.data.process['preprocessing worker'].busy.avg |0 | |
+ROW |32395 |28577 |1 |12 |$.data.process['proxy poller'].busy.avg |0 | |
+ROW |32396 |28578 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
+ROW |32397 |28579 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
+ROW |32398 |28580 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
+ROW |32399 |28581 |1 |12 |$.data.process.trapper.busy.avg |0 | |
+ROW |32400 |28582 |1 |12 |$.data.process['lld manager'].busy.avg |0 | |
+ROW |32401 |28583 |1 |12 |$.data.process['lld worker'].busy.avg |0 | |
+ROW |32402 |28584 |1 |12 |$.data.lld_queue |0 | |
+ROW |32403 |29821 |1 |12 |$.data.process['alert syncer'].busy.avg |0 | |
+ROW |32404 |10067 |1 |10 | |0 | |
+ROW |32405 |10068 |1 |10 | |0 | |
+ROW |32406 |10069 |1 |10 | |0 | |
+ROW |32407 |10070 |1 |10 | |0 | |
+ROW |32408 |10071 |1 |10 | |0 | |
+ROW |32409 |10072 |1 |10 | |0 | |
+ROW |32410 |23340 |1 |10 | |0 | |
+ROW |32411 |10061 |1 |10 | |0 | |
+ROW |32412 |10062 |1 |10 | |0 | |
+ROW |32413 |10063 |1 |10 | |0 | |
+ROW |32414 |10064 |1 |10 | |0 | |
+ROW |32415 |10065 |1 |10 | |0 | |
+ROW |32416 |10066 |1 |10 | |0 | |
+ROW |32417 |22187 |1 |10 | |0 | |
+ROW |32418 |22196 |1 |10 | |0 | |
+ROW |32419 |22199 |1 |10 | |0 | |
+ROW |32420 |10073 |1 |10 | |0 | |
+ROW |32421 |10074 |1 |10 | |0 | |
+ROW |32422 |10075 |1 |10 | |0 | |
+ROW |32423 |10076 |1 |10 | |0 | |
+ROW |32424 |10077 |1 |10 | |0 | |
+ROW |32425 |10078 |1 |10 | |0 | |
+ROW |32426 |23277 |1 |10 | |0 | |
+ROW |32427 |23625 |1 |10 | |0 | |
+ROW |32428 |23628 |1 |10 | |0 | |
+ROW |32429 |22920 |1 |10 | |0 | |
+ROW |32430 |22924 |1 |10 | |0 | |
+ROW |32431 |22945 |1 |10 | |0 | |
+ROW |32432 |22945 |2 |1 |8 |0 | |
+ROW |32433 |22946 |1 |10 | |0 | |
+ROW |32434 |22946 |2 |1 |8 |0 | |
+ROW |32435 |22880 |1 |10 | |0 | |
+ROW |32436 |22884 |1 |10 | |0 | |
+ROW |32437 |23073 |1 |10 | |0 | |
+ROW |32438 |23073 |2 |1 |8 |0 | |
+ROW |32439 |23074 |1 |10 | |0 | |
+ROW |32440 |23074 |2 |1 |8 |0 | |
+ROW |32441 |22985 |1 |10 | |0 | |
+ROW |32442 |22985 |2 |1 |8 |0 | |
+ROW |32443 |22986 |1 |10 | |0 | |
+ROW |32444 |22986 |2 |1 |8 |0 | |
+ROW |32445 |23077 |1 |10 | |0 | |
+ROW |32446 |23077 |2 |1 |8 |0 | |
+ROW |32447 |23078 |1 |10 | |0 | |
+ROW |32448 |23078 |2 |1 |8 |0 | |
+ROW |32449 |22840 |1 |10 | |0 | |
+ROW |32450 |22844 |1 |10 | |0 | |
+ROW |32451 |23075 |1 |10 | |0 | |
+ROW |32452 |23075 |2 |1 |8 |0 | |
+ROW |32453 |23076 |1 |10 | |0 | |
+ROW |32454 |23076 |2 |1 |8 |0 | |
+ROW |32455 |23000 |1 |10 | |0 | |
+ROW |32456 |23004 |1 |10 | |0 | |
+ROW |32457 |23025 |1 |10 | |0 | |
+ROW |32458 |23025 |2 |1 |8 |0 | |
+ROW |32459 |23026 |1 |10 | |0 | |
+ROW |32460 |23026 |2 |1 |8 |0 | |
+ROW |32461 |30431 |1 |5 |(Server version)\s+(.+)&bsn;\2 |0 | |
+ROW |32462 |30431 |2 |20 |1d |0 | |
+ROW |32463 |30432 |1 |21 |return value.indexOf('is alive') !== -1 ? 1 : 0; |0 | |
+ROW |32464 |30432 |2 |20 |10m |0 | |
+ROW |32465 |30436 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
+ROW |32466 |30437 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
+ROW |32467 |30437 |2 |10 | |0 | |
+ROW |32468 |30438 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time']/field[@name='Value']/text() |0 | |
+ROW |32469 |30438 |2 |1 |0.001 |0 | |
+ROW |32470 |30438 |3 |20 |1h |0 | |
+ROW |32471 |30439 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time_max']/field[@name='Value']/text() |0 | |
+ROW |32472 |30439 |2 |1 |0.001 |0 | |
+ROW |32473 |30439 |3 |20 |1h |0 | |
+ROW |32474 |30440 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_waits']/field[@name='Value']/text() |0 | |
+ROW |32475 |30441 |1 |11 |/resultset/row[field/text()='Max_used_connections']/field[@name='Value']/text() |0 | |
+ROW |32476 |30441 |2 |20 |1h |0 | |
+ROW |32477 |30442 |1 |11 |/resultset/row[field/text()='Queries']/field[@name='Value']/text() |0 | |
+ROW |32478 |30442 |2 |10 | |0 | |
+ROW |32479 |30443 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
+ROW |32480 |30444 |1 |11 |/resultset/row[field/text()='Questions']/field[@name='Value']/text() |0 | |
+ROW |32481 |30444 |2 |10 | |0 | |
+ROW |32482 |30445 |1 |11 |/resultset/row[field/text()='Slow_queries']/field[@name='Value']/text() |0 | |
+ROW |32483 |30445 |2 |10 | |0 | |
+ROW |32484 |30446 |1 |11 |/resultset/row[field/text()='Threads_cached']/field[@name='Value']/text() |0 | |
+ROW |32485 |30447 |1 |11 |/resultset/row[field/text()='Threads_connected']/field[@name='Value']/text() |0 | |
+ROW |32486 |30448 |1 |11 |/resultset/row[field/text()='Threads_created']/field[@name='Value']/text() |0 | |
+ROW |32487 |30449 |1 |11 |/resultset/row[field/text()='Threads_running']/field[@name='Value']/text() |0 | |
+ROW |32488 |30450 |1 |11 |/resultset/row[field/text()='Uptime']/field[@name='Value']/text() |0 | |
+ROW |32489 |30451 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
+ROW |32490 |30451 |2 |10 | |0 | |
+ROW |32491 |30452 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_total']/field[@name='Value']/text() |0 | |
+ROW |32492 |30452 |2 |20 |1h |0 | |
+ROW |32493 |30453 |1 |11 |/resultset/row[field/text()='Bytes_received']/field[@name='Value']/text() |0 | |
+ROW |32494 |30453 |2 |10 | |0 | |
+ROW |32495 |30454 |1 |11 |/resultset/row[field/text()='Connection_errors_max_connections']/field[@name='Value']/text() |0 | |
+ROW |32496 |30454 |2 |10 | |0 | |
+ROW |32497 |30455 |1 |11 |/resultset/row[field/text()='Bytes_sent']/field[@name='Value']/text() |0 | |
+ROW |32498 |30455 |2 |10 | |0 | |
+ROW |32499 |30456 |1 |11 |/resultset/row[field/text()='Com_delete']/field[@name='Value']/text() |0 | |
+ROW |32500 |30456 |2 |10 | |0 | |
+ROW |32501 |30457 |1 |11 |/resultset/row[field/text()='Com_insert']/field[@name='Value']/text() |0 | |
+ROW |32502 |30457 |2 |10 | |0 | |
+ROW |32503 |30458 |1 |11 |/resultset/row[field/text()='Com_select']/field[@name='Value']/text() |0 | |
+ROW |32504 |30458 |2 |10 | |0 | |
+ROW |32505 |30459 |1 |11 |/resultset/row[field/text()='Com_update']/field[@name='Value']/text() |0 | |
+ROW |32506 |30459 |2 |10 | |0 | |
+ROW |32507 |30460 |1 |11 |/resultset/row[field/text()='Connection_errors_accept']/field[@name='Value']/text() |0 | |
+ROW |32508 |30460 |2 |10 | |0 | |
+ROW |32509 |30461 |1 |11 |/resultset/row[field/text()='Connection_errors_internal']/field[@name='Value']/text() |0 | |
+ROW |32510 |30461 |2 |10 | |0 | |
+ROW |32511 |30462 |1 |11 |/resultset/row[field/text()='Connection_errors_peer_address']/field[@name='Value']/text() |0 | |
+ROW |32512 |30462 |2 |10 | |0 | |
+ROW |32513 |30463 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_free']/field[@name='Value']/text() |0 | |
+ROW |32514 |30464 |1 |11 |/resultset/row[field/text()='Connection_errors_select']/field[@name='Value']/text() |0 | |
+ROW |32515 |30464 |2 |10 | |0 | |
+ROW |32516 |30465 |1 |11 |/resultset/row[field/text()='Connection_errors_tcpwrap']/field[@name='Value']/text() |0 | |
+ROW |32517 |30465 |2 |10 | |0 | |
+ROW |32518 |30466 |1 |11 |/resultset/row[field/text()='Connections']/field[@name='Value']/text() |0 | |
+ROW |32519 |30466 |2 |10 | |0 | |
+ROW |32520 |30467 |1 |11 |/resultset/row[field/text()='Created_tmp_disk_tables']/field[@name='Value']/text() |0 | |
+ROW |32521 |30468 |1 |11 |/resultset/row[field/text()='Created_tmp_files']/field[@name='Value']/text() |0 | |
+ROW |32522 |30469 |1 |11 |/resultset/row[field/text()='Created_tmp_tables']/field[@name='Value']/text() |0 | |
+ROW |32523 |30470 |1 |11 |/resultset/row[field/text()='Aborted_connects']/field[@name='Value']/text() |0 | |
+ROW |32524 |30470 |2 |10 | |0 | |
+ROW |32525 |30471 |1 |11 |/resultset/row[field/text()='Aborted_clients']/field[@name='Value']/text() |0 | |
+ROW |32526 |30471 |2 |10 | |0 | |
+ROW |32527 |30472 |1 |21 |return JSON.stringify(value.split("\n").map(function (name) {&bsn; return ({"{#DBNAME}": name});&bsn;})); |0 | |
+ROW |32528 |30472 |2 |20 |1d |0 | |
+ROW |32529 |30473 |1 |21 |var matches = value.match(/Master_Host.*>(.*)<.*/);&bsn;if (matches) {&bsn; return JSON.stringify([{"{#MASTERHOST}": matches[1]}]);&bsn;}&bsn;&bsn;return '[]'; |0 | |
+ROW |32530 |30473 |2 |20 |1d |0 | |
+ROW |32531 |30474 |1 |20 |1h |0 | |
+ROW |32532 |30476 |1 |11 |/resultset/row/field[@name='Seconds_Behind_Master']/text() |0 | |
+ROW |32533 |30476 |2 |20 |1h |0 | |
+ROW |32534 |30476 |3 |15 |null |3 |Replication is not performed.|
+ROW |32535 |30477 |1 |11 |/resultset/row/field[@name='Slave_IO_Running']/text() |0 | |
+ROW |32536 |30477 |2 |20 |1h |0 | |
+ROW |32537 |30478 |1 |11 |/resultset/row/field[@name='Slave_SQL_Running']/text() |0 | |
+ROW |32538 |30478 |2 |20 |1h |0 | |
+ROW |32539 |30637 |1 |20 |1d |0 | |
+ROW |32540 |30638 |1 |20 |10m |0 | |
+ROW |32541 |30642 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
+ROW |32542 |30643 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
+ROW |32543 |30643 |2 |10 | |0 | |
+ROW |32544 |30644 |1 |12 |$.Innodb_row_lock_time |0 | |
+ROW |32545 |30644 |2 |1 |0.001 |0 | |
+ROW |32546 |30644 |3 |20 |1h |0 | |
+ROW |32547 |30645 |1 |12 |$.Innodb_row_lock_time_max |0 | |
+ROW |32548 |30645 |2 |1 |0.001 |0 | |
+ROW |32549 |30645 |3 |20 |1h |0 | |
+ROW |32550 |30646 |1 |12 |$.Innodb_row_lock_waits |0 | |
+ROW |32551 |30647 |1 |12 |$.Max_used_connections |0 | |
+ROW |32552 |30647 |2 |20 |1h |0 | |
+ROW |32553 |30648 |1 |12 |$.Queries |0 | |
+ROW |32554 |30648 |2 |10 | |0 | |
+ROW |32555 |30649 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
+ROW |32556 |30650 |1 |12 |$.Questions |0 | |
+ROW |32557 |30650 |2 |10 | |0 | |
+ROW |32558 |30651 |1 |12 |$.Slow_queries |0 | |
+ROW |32559 |30651 |2 |10 | |0 | |
+ROW |32560 |30652 |1 |12 |$.Threads_cached |0 | |
+ROW |32561 |30653 |1 |12 |$.Threads_connected |0 | |
+ROW |32562 |30654 |1 |12 |$.Threads_created |0 | |
+ROW |32563 |30655 |1 |12 |$.Threads_running |0 | |
+ROW |32564 |30656 |1 |12 |$.Uptime |0 | |
+ROW |32565 |30657 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
+ROW |32566 |30657 |2 |10 | |0 | |
+ROW |32567 |30658 |1 |12 |$.Innodb_buffer_pool_pages_total |0 | |
+ROW |32568 |30658 |2 |20 |1h |0 | |
+ROW |32569 |30659 |1 |12 |$.Bytes_received |0 | |
+ROW |32570 |30659 |2 |10 | |0 | |
+ROW |32571 |30660 |1 |12 |$.Connection_errors_max_connections |0 | |
+ROW |32572 |30660 |2 |10 | |0 | |
+ROW |32573 |30661 |1 |12 |$.Bytes_sent |0 | |
+ROW |32574 |30661 |2 |10 | |0 | |
+ROW |32575 |30662 |1 |12 |$.Com_delete |0 | |
+ROW |32576 |30662 |2 |10 | |0 | |
+ROW |32577 |30663 |1 |12 |$.Com_insert |0 | |
+ROW |32578 |30663 |2 |10 | |0 | |
+ROW |32579 |30664 |1 |12 |$.Com_select |0 | |
+ROW |32580 |30664 |2 |10 | |0 | |
+ROW |32581 |30665 |1 |12 |$.Com_update |0 | |
+ROW |32582 |30665 |2 |10 | |0 | |
+ROW |32583 |30666 |1 |12 |$.Connection_errors_accept |0 | |
+ROW |32584 |30666 |2 |10 | |0 | |
+ROW |32585 |30667 |1 |12 |$.Connection_errors_internal |0 | |
+ROW |32586 |30667 |2 |10 | |0 | |
+ROW |32587 |30668 |1 |12 |$.Connection_errors_peer_address |0 | |
+ROW |32588 |30668 |2 |10 | |0 | |
+ROW |32589 |30669 |1 |12 |$.Innodb_buffer_pool_pages_free |0 | |
+ROW |32590 |30670 |1 |12 |$.Connection_errors_select |0 | |
+ROW |32591 |30670 |2 |10 | |0 | |
+ROW |32592 |30671 |1 |12 |$.Connection_errors_tcpwrap |0 | |
+ROW |32593 |30671 |2 |10 | |0 | |
+ROW |32594 |30672 |1 |12 |$.Connections |0 | |
+ROW |32595 |30672 |2 |10 | |0 | |
+ROW |32596 |30673 |1 |12 |$.Created_tmp_disk_tables |0 | |
+ROW |32597 |30674 |1 |12 |$.Created_tmp_files |0 | |
+ROW |32598 |30675 |1 |12 |$.Created_tmp_tables |0 | |
+ROW |32599 |30676 |1 |12 |$.Aborted_connects |0 | |
+ROW |32600 |30676 |2 |10 | |0 | |
+ROW |32601 |30677 |1 |12 |$.Aborted_clients |0 | |
+ROW |32602 |30677 |2 |10 | |0 | |
+ROW |32603 |30678 |1 |20 |1d |0 | |
+ROW |32604 |30679 |1 |20 |1d |0 | |
+ROW |32605 |30680 |1 |20 |1h |0 | |
+ROW |32606 |30682 |1 |12 |$.Seconds_Behind_Master |0 | |
+ROW |32607 |30682 |2 |14 |\d+ |3 |Replication is not performed.|
+ROW |32608 |30682 |3 |20 |1h |0 | |
+ROW |32609 |30683 |1 |12 |$.Slave_IO_Running |0 | |
+ROW |32610 |30683 |2 |20 |1h |0 | |
+ROW |32611 |30684 |1 |12 |$.Slave_SQL_Running |0 | |
+ROW |32612 |30684 |2 |20 |1h |0 | |
+ROW |32613 |30480 |1 |20 |1d |0 | |
+ROW |32614 |30481 |1 |20 |10m |0 | |
+ROW |32615 |30484 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_waits')].Value.first() |0 | |
+ROW |32616 |30485 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
+ROW |32617 |30486 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
+ROW |32618 |30486 |2 |10 | |0 | |
+ROW |32619 |30487 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
+ROW |32620 |30488 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
+ROW |32621 |30488 |2 |10 | |0 | |
+ROW |32622 |30489 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time')].Value.first() |0 | |
+ROW |32623 |30489 |2 |1 |0.001 |0 | |
+ROW |32624 |30489 |3 |20 |1h |0 | |
+ROW |32625 |30490 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time_max')].Value.first() |0 | |
+ROW |32626 |30490 |2 |1 |0.001 |0 | |
+ROW |32627 |30490 |3 |20 |1h |0 | |
+ROW |32628 |30491 |1 |12 |$[?(@.Variable_name=='Queries')].Value.first() |0 | |
+ROW |32629 |30491 |2 |10 | |0 | |
+ROW |32630 |30492 |1 |12 |$[?(@.Variable_name=='Max_used_connections')].Value.first() |0 | |
+ROW |32631 |30492 |2 |20 |1h |0 | |
+ROW |32632 |30493 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_free')].Value.first() |0 | |
+ROW |32633 |30494 |1 |12 |$[?(@.Variable_name=='Questions')].Value.first() |0 | |
+ROW |32634 |30494 |2 |10 | |0 | |
+ROW |32635 |30495 |1 |12 |$[?(@.Variable_name=='Slow_queries')].Value.first() |0 | |
+ROW |32636 |30495 |2 |10 | |0 | |
+ROW |32637 |30496 |1 |12 |$[?(@.Variable_name=='Threads_cached')].Value.first() |0 | |
+ROW |32638 |30497 |1 |12 |$[?(@.Variable_name=='Threads_connected')].Value.first() |0 | |
+ROW |32639 |30498 |1 |12 |$[?(@.Variable_name=='Threads_created')].Value.first() |0 | |
+ROW |32640 |30499 |1 |12 |$[?(@.Variable_name=='Threads_running')].Value.first() |0 | |
+ROW |32641 |30500 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_total')].Value.first() |0 | |
+ROW |32642 |30500 |2 |20 |1h |0 | |
+ROW |32643 |30501 |1 |12 |$[?(@.Variable_name=='Created_tmp_disk_tables')].Value.first() |0 | |
+ROW |32644 |30502 |1 |12 |$[?(@.Variable_name=='Created_tmp_tables')].Value.first() |0 | |
+ROW |32645 |30503 |1 |12 |$[?(@.Variable_name=='Com_select')].Value.first() |0 | |
+ROW |32646 |30503 |2 |10 | |0 | |
+ROW |32647 |30504 |1 |12 |$[?(@.Variable_name=='Aborted_clients')].Value.first() |0 | |
+ROW |32648 |30504 |2 |10 | |0 | |
+ROW |32649 |30505 |1 |12 |$[?(@.Variable_name=='Aborted_connects')].Value.first() |0 | |
+ROW |32650 |30505 |2 |10 | |0 | |
+ROW |32651 |30506 |1 |12 |$[?(@.Variable_name=='Bytes_received')].Value.first() |0 | |
+ROW |32652 |30506 |2 |10 | |0 | |
+ROW |32653 |30507 |1 |12 |$[?(@.Variable_name=='Bytes_sent')].Value.first() |0 | |
+ROW |32654 |30507 |2 |10 | |0 | |
+ROW |32655 |30508 |1 |12 |$[?(@.Variable_name=='Com_delete')].Value.first() |0 | |
+ROW |32656 |30508 |2 |10 | |0 | |
+ROW |32657 |30509 |1 |12 |$[?(@.Variable_name=='Com_insert')].Value.first() |0 | |
+ROW |32658 |30509 |2 |10 | |0 | |
+ROW |32659 |30510 |1 |12 |$[?(@.Variable_name=='Com_update')].Value.first() |0 | |
+ROW |32660 |30510 |2 |10 | |0 | |
+ROW |32661 |30511 |1 |12 |$[?(@.Variable_name=='Created_tmp_files')].Value.first() |0 | |
+ROW |32662 |30512 |1 |12 |$[?(@.Variable_name=='Connection_errors_accept')].Value.first() |0 | |
+ROW |32663 |30512 |2 |10 | |0 | |
+ROW |32664 |30513 |1 |12 |$[?(@.Variable_name=='Connection_errors_internal')].Value.first() |0 | |
+ROW |32665 |30513 |2 |10 | |0 | |
+ROW |32666 |30514 |1 |12 |$[?(@.Variable_name=='Connection_errors_max_connections')].Value.first() |0 | |
+ROW |32667 |30514 |2 |10 | |0 | |
+ROW |32668 |30515 |1 |12 |$[?(@.Variable_name=='Connection_errors_peer_address')].Value.first() |0 | |
+ROW |32669 |30515 |2 |10 | |0 | |
+ROW |32670 |30516 |1 |12 |$[?(@.Variable_name=='Connection_errors_select')].Value.first() |0 | |
+ROW |32671 |30516 |2 |10 | |0 | |
+ROW |32672 |30517 |1 |12 |$[?(@.Variable_name=='Connection_errors_tcpwrap')].Value.first() |0 | |
+ROW |32673 |30517 |2 |10 | |0 | |
+ROW |32674 |30518 |1 |12 |$[?(@.Variable_name=='Connections')].Value.first() |0 | |
+ROW |32675 |30518 |2 |10 | |0 | |
+ROW |32676 |30519 |1 |12 |$[?(@.Variable_name=='Uptime')].Value.first() |0 | |
+ROW |32677 |30520 |1 |20 |1d |0 | |
+ROW |32678 |30521 |1 |20 |1d |0 | |
+ROW |32679 |30522 |1 |20 |1h |0 | |
+ROW |32680 |30524 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Seconds_Behind_Master'].first() |0 | |
+ROW |32681 |30524 |2 |14 |\d+ |3 |Replication is not performed.|
+ROW |32682 |30524 |3 |20 |1h |0 | |
+ROW |32683 |30525 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_IO_Running'].first() |0 | |
+ROW |32684 |30525 |2 |20 |1h |0 | |
+ROW |32685 |30526 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_SQL_Running'].first() |0 | |
+ROW |32686 |30526 |2 |20 |1h |0 | |
+ROW |32687 |28673 |1 |5 |Time:\s(\d+\.\d+)\sms&bsn;\1 |0 | |
+ROW |32688 |28674 |1 |21 |return value.search(/accepting connections/)>0 ? 1 : 0 |0 | |
+ROW |32689 |28674 |2 |20 |1h |0 | |
+ROW |32690 |28680 |1 |20 |1h |0 | |
+ROW |32691 |28685 |1 |20 |1d |0 | |
+ROW |32692 |28688 |1 |12 |$.idle |0 | |
+ROW |32693 |28689 |1 |12 |$.active |0 | |
+ROW |32694 |28690 |1 |12 |$.prepared |0 | |
+ROW |32695 |28691 |1 |12 |$.waiting |0 | |
+ROW |32696 |28692 |1 |12 |$.count |0 | |
+ROW |32697 |28693 |1 |12 |$.buffers_alloc |0 | |
+ROW |32698 |28693 |2 |10 | |0 | |
+ROW |32699 |28694 |1 |12 |$.buffers_backend |0 | |
+ROW |32700 |28694 |2 |10 | |0 | |
+ROW |32701 |28695 |1 |12 |$.checkpoint_write_time |0 | |
+ROW |32702 |28695 |2 |1 |0.001 |0 | |
+ROW |32703 |28695 |3 |10 | |0 | |
+ROW |32704 |28696 |1 |12 |$.buffers_backend_fsync |0 | |
+ROW |32705 |28696 |2 |10 | |0 | |
+ROW |32706 |28697 |1 |12 |$.buffers_checkpoint |0 | |
+ROW |32707 |28697 |2 |10 | |0 | |
+ROW |32708 |28698 |1 |12 |$.buffers_clean |0 | |
+ROW |32709 |28698 |2 |10 | |0 | |
+ROW |32710 |28699 |1 |12 |$.checkpoints_req |0 | |
+ROW |32711 |28699 |2 |10 | |0 | |
+ROW |32712 |28700 |1 |12 |$.checkpoints_timed |0 | |
+ROW |32713 |28700 |2 |10 | |0 | |
+ROW |32714 |28701 |1 |12 |$.checkpoint_write_time |0 | |
+ROW |32715 |28701 |2 |1 |0.001 |0 | |
+ROW |32716 |28701 |3 |10 | |0 | |
+ROW |32717 |28702 |1 |12 |$.maxwritten_clean |0 | |
+ROW |32718 |28702 |2 |10 | |0 | |
+ROW |32719 |28703 |1 |12 |$.waiting |0 | |
+ROW |32720 |28704 |1 |12 |$.active |0 | |
+ROW |32721 |28705 |1 |12 |$.idle |0 | |
+ROW |32722 |28706 |1 |12 |$.idle_in_transaction |0 | |
+ROW |32723 |28707 |1 |12 |$.prepared |0 | |
+ROW |32724 |28708 |1 |12 |$.total |0 | |
+ROW |32725 |28709 |1 |12 |$.total_pct |0 | |
+ROW |32726 |28710 |1 |12 |$.write |0 | |
+ROW |32727 |28710 |2 |10 | |0 | |
+ROW |32728 |28715 |1 |12 |$['{#DBNAME}'].conflicts |0 | |
+ROW |32729 |28715 |2 |10 | |0 | |
+ROW |32730 |28716 |1 |12 |$['{#DBNAME}'].total |0 | |
+ROW |32731 |28717 |1 |12 |$.seq |0 | |
+ROW |32732 |28717 |2 |10 | |0 | |
+ROW |32733 |28718 |1 |12 |$.idx |0 | |
+ROW |32734 |28718 |2 |10 | |0 | |
+ROW |32735 |28719 |1 |12 |$['{#DBNAME}'].tx_time_sum |0 | |
+ROW |32736 |28720 |1 |12 |$['{#DBNAME}'].tx_time_max |0 | |
+ROW |32737 |28721 |1 |12 |$['{#DBNAME}'].tx_slow_count |0 | |
+ROW |32738 |28722 |1 |12 |$['{#DBNAME}'].query_time_sum |0 | |
+ROW |32739 |28723 |1 |12 |$['{#DBNAME}'].query_time_max |0 | |
+ROW |32740 |28724 |1 |12 |$['{#DBNAME}'].query_slow_count |0 | |
+ROW |32741 |28725 |1 |12 |$['{#DBNAME}'].mro_time_sum |0 | |
+ROW |32742 |28726 |1 |12 |$['{#DBNAME}'].mro_time_max |0 | |
+ROW |32743 |28727 |1 |12 |$['{#DBNAME}'].mro_slow_count |0 | |
+ROW |32744 |28728 |1 |12 |$['{#DBNAME}'].blks_read |0 | |
+ROW |32745 |28728 |2 |10 | |0 | |
+ROW |32746 |28729 |1 |12 |$['{#DBNAME}'].deadlocks |0 | |
+ROW |32747 |28729 |2 |10 | |0 | |
+ROW |32748 |28730 |1 |12 |$['{#DBNAME}'].blks_hit |0 | |
+ROW |32749 |28730 |2 |10 | |0 | |
+ROW |32750 |28731 |1 |12 |$.prc_before_av |0 | |
+ROW |32751 |28732 |1 |12 |$['{#DBNAME}'].xact_rollback |0 | |
+ROW |32752 |28732 |2 |10 | |0 | |
+ROW |32753 |28733 |1 |12 |$['{#DBNAME}'].xact_commit |0 | |
+ROW |32754 |28733 |2 |10 | |0 | |
+ROW |32755 |28734 |1 |12 |$['{#DBNAME}'].tup_updated |0 | |
+ROW |32756 |28734 |2 |10 | |0 | |
+ROW |32757 |28735 |1 |12 |$['{#DBNAME}'].tup_returned |0 | |
+ROW |32758 |28735 |2 |10 | |0 | |
+ROW |32759 |28736 |1 |12 |$['{#DBNAME}'].tup_inserted |0 | |
+ROW |32760 |28736 |2 |10 | |0 | |
+ROW |32761 |28737 |1 |12 |$['{#DBNAME}'].tup_fetched |0 | |
+ROW |32762 |28737 |2 |10 | |0 | |
+ROW |32763 |28738 |1 |12 |$['{#DBNAME}'].tup_deleted |0 | |
+ROW |32764 |28738 |2 |10 | |0 | |
+ROW |32765 |28739 |1 |12 |$['{#DBNAME}'].temp_files |0 | |
+ROW |32766 |28739 |2 |10 | |0 | |
+ROW |32767 |28740 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
+ROW |32768 |28740 |2 |10 | |0 | |
+ROW |32769 |28741 |1 |12 |$.prc_before_stop |0 | |
+ROW |32770 |30273 |1 |20 |10m |0 | |
+ROW |32771 |30274 |1 |10 | |0 | |
+ROW |32772 |30275 |1 |20 |1h |0 | |
+ROW |32773 |30277 |1 |12 |$.Clients.blocked_clients |0 | |
+ROW |32774 |30278 |1 |12 |$.Server.tcp_port |0 | |
+ROW |32775 |30278 |2 |20 |1d |0 | |
+ROW |32776 |30279 |1 |12 |$.Stats.expired_keys |0 | |
+ROW |32777 |30280 |1 |12 |$.Stats.evicted_keys |0 | |
+ROW |32778 |30281 |1 |12 |$.Server.uptime_in_seconds |0 | |
+ROW |32779 |30282 |1 |12 |$.Server.redis_mode |0 | |
+ROW |32780 |30282 |2 |20 |1d |0 | |
+ROW |32781 |30283 |1 |12 |$.Server.redis_version |0 | |
+ROW |32782 |30283 |2 |20 |1d |0 | |
+ROW |32783 |30284 |1 |12 |$.Stats.instantaneous_ops_per_sec |0 | |
+ROW |32784 |30285 |1 |12 |$.Server.process_id |0 | |
+ROW |32785 |30285 |2 |20 |1d |0 | |
+ROW |32786 |30286 |1 |12 |$.Replication.role |0 | |
+ROW |32787 |30286 |2 |20 |1d |0 | |
+ROW |32788 |30287 |1 |12 |$.Replication.repl_backlog_size |0 | |
+ROW |32789 |30288 |1 |12 |$.Replication.repl_backlog_histlen |0 | |
+ROW |32790 |30289 |1 |12 |$.Stats.instantaneous_input_kbps |0 | |
+ROW |32791 |30289 |2 |1 |1024 |0 | |
+ROW |32792 |30290 |1 |12 |$.Stats.keyspace_hits |0 | |
+ROW |32793 |30291 |1 |12 |$.Stats.instantaneous_output_kbps |0 | |
+ROW |32794 |30291 |2 |1 |1024 |0 | |
+ROW |32795 |30292 |1 |12 |$.Replication.repl_backlog_active |0 | |
+ROW |32796 |30293 |1 |12 |$.Stats.keyspace_misses |0 | |
+ROW |32797 |30294 |1 |12 |$.Stats.latest_fork_usec |0 | |
+ROW |32798 |30294 |2 |1 |1.0E-5 |0 | |
+ROW |32799 |30295 |1 |12 |$.Stats.migrate_cached_sockets |0 | |
+ROW |32800 |30296 |1 |12 |$.Stats.pubsub_channels |0 | |
+ROW |32801 |30297 |1 |12 |$.Stats.pubsub_patterns |0 | |
+ROW |32802 |30298 |1 |12 |$.Stats.rejected_connections |0 | |
+ROW |32803 |30299 |1 |12 |$.Stats.sync_full |0 | |
+ROW |32804 |30300 |1 |12 |$.Stats.sync_partial_err |0 | |
+ROW |32805 |30301 |1 |12 |$.Stats.sync_partial_ok |0 | |
+ROW |32806 |30302 |1 |12 |$.Stats.total_commands_processed |0 | |
+ROW |32807 |30303 |1 |12 |$.Stats.total_connections_received |0 | |
+ROW |32808 |30304 |1 |12 |$.Stats.total_net_input_bytes |0 | |
+ROW |32809 |30305 |1 |12 |$.Replication.repl_backlog_first_byte_offset |0 | |
+ROW |32810 |30306 |1 |12 |$.Replication.connected_slaves |0 | |
+ROW |32811 |30307 |1 |12 |$.Replication.master_repl_offset |0 | |
+ROW |32812 |30308 |1 |12 |$.Memory.used_memory_rss |0 | |
+ROW |32813 |30309 |1 |21 |var clients = JSON.parse(value).Clients&bsn;return clients.client_recent_max_input_buffer &pipe;&pipe; clients.client_biggest_input_buf |0 | |
+ROW |32814 |30310 |1 |21 |var clients = JSON.parse(value).Clients&bsn;return clients.client_recent_max_output_buffer &pipe;&pipe; clients.client_longest_output_list |0 | |
+ROW |32815 |30311 |1 |12 |$.Cluster.cluster_enabled |0 | |
+ROW |32816 |30312 |1 |12 |$.maxclients |0 | |
+ROW |32817 |30312 |2 |20 |30m |0 | |
+ROW |32818 |30313 |1 |12 |$.CPU.used_cpu_sys |0 | |
+ROW |32819 |30314 |1 |12 |$.CPU.used_cpu_sys_children |0 | |
+ROW |32820 |30315 |1 |12 |$.CPU.used_cpu_user |0 | |
+ROW |32821 |30316 |1 |12 |$.CPU.used_cpu_user_children |0 | |
+ROW |32822 |30317 |1 |12 |$.Memory.mem_fragmentation_ratio |0 | |
+ROW |32823 |30318 |1 |12 |$.Memory.used_memory |0 | |
+ROW |32824 |30319 |1 |12 |$.Memory.used_memory_lua |0 | |
+ROW |32825 |30320 |1 |12 |$.Memory.used_memory_peak |0 | |
+ROW |32826 |30321 |1 |12 |$.Persistence.aof_current_rewrite_time_sec |0 | |
+ROW |32827 |30322 |1 |12 |$.Clients.connected_clients |0 | |
+ROW |32828 |30323 |1 |12 |$.Persistence.aof_enabled |0 | |
+ROW |32829 |30324 |1 |12 |$.Persistence.aof_last_bgrewrite_status |0 | |
+ROW |32830 |30324 |2 |6 | |0 | |
+ROW |32831 |30325 |1 |12 |$.Persistence.aof_last_rewrite_time_sec |0 | |
+ROW |32832 |30326 |1 |12 |$.Persistence.aof_last_write_status |0 | |
+ROW |32833 |30326 |2 |6 | |0 | |
+ROW |32834 |30327 |1 |12 |$.Persistence.aof_rewrite_in_progress |0 | |
+ROW |32835 |30328 |1 |12 |$.Persistence.aof_rewrite_scheduled |0 | |
+ROW |32836 |30329 |1 |12 |$.Persistence.loading |0 | |
+ROW |32837 |30330 |1 |12 |$.Persistence.rdb_bgsave_in_progress |0 | |
+ROW |32838 |30331 |1 |12 |$.Persistence.rdb_changes_since_last_save |0 | |
+ROW |32839 |30332 |1 |12 |$.Persistence.rdb_current_bgsave_time_sec |0 | |
+ROW |32840 |30333 |1 |12 |$.Persistence.rdb_last_bgsave_status |0 | |
+ROW |32841 |30333 |2 |6 | |0 | |
+ROW |32842 |30334 |1 |12 |$.Persistence.rdb_last_bgsave_time_sec |0 | |
+ROW |32843 |30335 |1 |12 |$.Persistence.rdb_last_save_time |0 | |
+ROW |32844 |30336 |1 |12 |$.Stats.total_net_output_bytes |0 | |
+ROW |32845 |30337 |1 |21 |return JSON.stringify(value > 0 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |32846 |30338 |1 |21 |return JSON.stringify(Object.keys(JSON.parse(value).Keyspace)&bsn; .map(function (v){return {"{#DB}": v}})); |0 | |
+ROW |32847 |30339 |1 |12 |$.Server.redis_version |0 | |
+ROW |32848 |30339 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 4 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |32849 |30340 |1 |12 |$.Server.redis_version |0 | |
+ROW |32850 |30340 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 5 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |32851 |30341 |1 |21 |return JSON.stringify(JSON.parse(value).Persistence.aof_enabled === '1'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
+ROW |32852 |30342 |1 |21 |var repl = JSON.parse(value).Replication;&bsn;return JSON.stringify(Object.keys(repl)&bsn; .filter(function (v) {return v.match(/slave\d+/)})&bsn; .map(function (v){&bsn; return {"{#SLAVE_IP}": repl[v].ip, "{#SLAVE_PORT}": repl[v].port}&bsn; })); |0 | |
+ROW |32853 |30343 |1 |21 |return JSON.stringify(JSON.parse(value).Replication.role === 'slave'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
+ROW |32854 |30348 |1 |12 |$.Keyspace["{#DB}"].avg_ttl |0 | |
+ROW |32855 |30348 |2 |1 |0.001 |0 | |
+ROW |32856 |30349 |1 |12 |$.Keyspace["{#DB}"].expires |0 | |
+ROW |32857 |30350 |1 |12 |$.Keyspace["{#DB}"].keys |0 | |
+ROW |32858 |30351 |1 |12 |$.Memory.active_defrag_running |0 | |
+ROW |32859 |30352 |1 |12 |$.Persistence.rdb_last_cow_size |0 | |
+ROW |32860 |30353 |1 |12 |$.Stats.expired_time_cap_reached_count |0 | |
+ROW |32861 |30354 |1 |12 |$.Stats.expired_stale_perc |0 | |
+ROW |32862 |30355 |1 |12 |$.Stats.active_defrag_misses |0 | |
+ROW |32863 |30356 |1 |12 |$.Stats.active_defrag_key_misses |0 | |
+ROW |32864 |30357 |1 |12 |$.Stats.active_defrag_key_hits |0 | |
+ROW |32865 |30358 |1 |12 |$.Stats.active_defrag_hits |0 | |
+ROW |32866 |30359 |1 |12 |$.Server.executable |0 | |
+ROW |32867 |30359 |2 |20 |1d |0 | |
+ROW |32868 |30360 |1 |12 |$.Replication.second_repl_offset |0 | |
+ROW |32869 |30361 |1 |12 |$.Persistence.aof_last_cow_size |0 | |
+ROW |32870 |30362 |1 |12 |$.Memory.lazyfree_pending_objects |0 | |
+ROW |32871 |30363 |1 |12 |$.Memory.used_memory_startup |0 | |
+ROW |32872 |30364 |1 |12 |$.Memory.used_memory_peak_perc |0 | |
+ROW |32873 |30364 |2 |5 |(.+)%&bsn;\1 |0 | |
+ROW |32874 |30365 |1 |12 |$.Memory.used_memory_overhead |0 | |
+ROW |32875 |30366 |1 |12 |$.Memory.used_memory_dataset |0 | |
+ROW |32876 |30367 |1 |12 |$.Memory.used_memory_dataset_perc |0 | |
+ROW |32877 |30367 |2 |5 |(.+)%&bsn;\1 |0 | |
+ROW |32878 |30368 |1 |12 |$.Memory.total_system_memory |0 | |
+ROW |32879 |30369 |1 |12 |$.Memory.maxmemory |0 | |
+ROW |32880 |30370 |1 |12 |$.Memory.maxmemory_policy |0 | |
+ROW |32881 |30370 |2 |20 |1d |0 | |
+ROW |32882 |30371 |1 |12 |$.Stats.slave_expires_tracked_keys |0 | |
+ROW |32883 |30372 |1 |12 |$.Memory.allocator_active |0 | |
+ROW |32884 |30373 |1 |12 |$.Memory.mem_clients_normal |0 | |
+ROW |32885 |30374 |1 |12 |$.Memory.rss_overhead_ratio |0 | |
+ROW |32886 |30375 |1 |12 |$.Memory.rss_overhead_bytes |0 | |
+ROW |32887 |30376 |1 |12 |$.Memory.mem_replication_backlog |0 | |
+ROW |32888 |30377 |1 |12 |$.Memory.number_of_cached_scripts |0 | |
+ROW |32889 |30378 |1 |12 |$.Memory.mem_not_counted_for_evict |0 | |
+ROW |32890 |30379 |1 |12 |$.Memory.mem_clients_slaves |0 | |
+ROW |32891 |30380 |1 |12 |$.Memory.mem_aof_buffer |0 | |
+ROW |32892 |30381 |1 |12 |$.Memory.allocator_allocated |0 | |
+ROW |32893 |30382 |1 |12 |$.Memory.mem_fragmentation_bytes |0 | |
+ROW |32894 |30383 |1 |12 |$.Memory.allocator_rss_ratio |0 | |
+ROW |32895 |30384 |1 |12 |$.Memory.allocator_rss_bytes |0 | |
+ROW |32896 |30385 |1 |12 |$.Memory.allocator_resident |0 | |
+ROW |32897 |30386 |1 |12 |$.Memory.allocator_frag_ratio |0 | |
+ROW |32898 |30387 |1 |12 |$.Memory.allocator_frag_bytes |0 | |
+ROW |32899 |30388 |1 |12 |$.Memory.used_memory_scripts |0 | |
+ROW |32900 |30389 |1 |12 |$.Persistence.aof_base_size |0 | |
+ROW |32901 |30390 |1 |12 |$.Persistence.aof_buffer_length |0 | |
+ROW |32902 |30391 |1 |12 |$.Persistence.aof_current_size |0 | |
+ROW |32903 |30392 |1 |12 |$.Persistence.aof_delayed_fsync |0 | |
+ROW |32904 |30393 |1 |12 |$.Persistence.aof_pending_bio_fsync |0 | |
+ROW |32905 |30394 |1 |12 |$.Persistence.aof_pending_rewrite |0 | |
+ROW |32906 |30395 |1 |12 |$.Persistence.aof_rewrite_buffer_length |0 | |
+ROW |32907 |30396 |1 |21 |var repl = JSON.parse(value).Replication;&bsn;var res = Object.keys(repl)&bsn; .filter(function (v) {return v.match(/slave\d+/)})&bsn; .filter(function (v) {return (repl[v].ip === "{#SLAVE_IP}" && repl[v].port === "{#SLAVE_PORT}")})&bsn; .map(function (v) {return repl[v].offset})[0];&bsn;&bsn;if (res === undefined) {&bsn; throw 'Slave {#SLAVE_IP}:{#SLAVE_PORT} is no longer available.';&bsn;}&bsn;&bsn;return res; |0 | |
+ROW |32908 |30397 |1 |12 |$.Replication.master_host |0 | |
+ROW |32909 |30397 |2 |20 |1d |0 | |
+ROW |32910 |30398 |1 |12 |$.Replication.master_last_io_seconds_ago |0 | |
+ROW |32911 |30399 |1 |12 |$.Replication.master_link_status |0 | |
+ROW |32912 |30399 |2 |6 | |0 | |
+ROW |32913 |30400 |1 |12 |$.Replication.master_port |0 | |
+ROW |32914 |30400 |2 |20 |1d |0 | |
+ROW |32915 |30401 |1 |12 |$.Replication.master_sync_in_progress |0 | |
+ROW |32916 |30402 |1 |12 |$.Replication.slave_priority |0 | |
+ROW |32917 |30403 |1 |12 |$.Replication.slave_read_only |0 | |
+ROW |32918 |30403 |2 |20 |1d |0 | |
+ROW |32919 |30404 |1 |12 |$.Replication.slave_repl_offset |0 | |
+ROW |32920 |27141 |1 |20 |1h |0 | |
+ROW |32921 |29824 |1 |1 |0.01 |0 | |
+ROW |32922 |29825 |1 |20 |1h |0 | |
+ROW |32923 |29826 |1 |20 |1d |0 | |
+ROW |32924 |29827 |1 |20 |1h |0 | |
+ROW |32925 |29828 |1 |20 |1d |0 | |
+ROW |32926 |27615 |1 |20 |1h |0 | |
+ROW |32927 |28022 |1 |20 |1h |0 | |
+ROW |32928 |28433 |1 |20 |1h |0 | |
+ROW |32929 |29829 |1 |1 |0.01 |0 | |
+ROW |32930 |29830 |1 |20 |1h |0 | |
+ROW |32931 |29831 |1 |20 |1d |0 | |
+ROW |32932 |29832 |1 |20 |1h |0 | |
+ROW |32933 |29833 |1 |20 |1d |0 | |
+ROW |32934 |29834 |1 |1 |0.01 |0 | |
+ROW |32935 |29835 |1 |20 |1h |0 | |
+ROW |32936 |29836 |1 |20 |1d |0 | |
+ROW |32937 |29837 |1 |20 |1h |0 | |
+ROW |32938 |29838 |1 |20 |1d |0 | |
+ROW |32939 |29839 |1 |1 |0.01 |0 | |
+ROW |32940 |29840 |1 |20 |1h |0 | |
+ROW |32941 |29841 |1 |20 |1d |0 | |
+ROW |32942 |29842 |1 |20 |1h |0 | |
+ROW |32943 |29843 |1 |20 |1d |0 | |
+ROW |32944 |27152 |1 |20 |1h |0 | |
+ROW |32945 |29844 |1 |1 |0.01 |0 | |
+ROW |32946 |29845 |1 |20 |1h |0 | |
+ROW |32947 |29846 |1 |20 |1d |0 | |
+ROW |32948 |29847 |1 |20 |1h |0 | |
+ROW |32949 |29848 |1 |20 |1d |0 | |
+ROW |32950 |27199 |1 |20 |1h |0 | |
+ROW |32951 |27232 |1 |20 |1h |0 | |
+ROW |32952 |27268 |1 |20 |1h |0 | |
+ROW |32953 |27289 |1 |20 |1h |0 | |
+ROW |32954 |27340 |1 |20 |1h |0 | |
+ROW |32955 |27372 |1 |20 |1h |0 | |
+ROW |32956 |27469 |1 |20 |1h |0 | |
+ROW |32957 |27503 |1 |20 |1h |0 | |
+ROW |32958 |27539 |1 |20 |1h |0 | |
+ROW |32959 |27575 |1 |20 |1h |0 | |
+ROW |32960 |27638 |1 |20 |1h |0 | |
+ROW |32961 |27661 |1 |20 |1h |0 | |
+ROW |32962 |27741 |1 |20 |1h |0 | |
+ROW |32963 |27773 |1 |20 |1h |0 | |
+ROW |32964 |27807 |1 |20 |1h |0 | |
+ROW |32965 |27889 |1 |20 |1h |0 | |
+ROW |32966 |27926 |1 |20 |1h |0 | |
+ROW |32967 |27963 |1 |20 |1h |0 | |
+ROW |32968 |27993 |1 |20 |1h |0 | |
+ROW |32969 |28137 |1 |20 |1h |0 | |
+ROW |32970 |28192 |1 |20 |1h |0 | |
+ROW |32971 |28240 |1 |20 |1h |0 | |
+ROW |32972 |28289 |1 |20 |1h |0 | |
+ROW |32973 |28337 |1 |20 |1h |0 | |
+ROW |32974 |28384 |1 |20 |1h |0 | |
+ROW |32975 |28461 |1 |20 |1h |0 | |
+ROW |32976 |28489 |1 |20 |1h |0 | |
+ROW |32977 |28964 |1 |20 |1h |0 | |
+ROW |32978 |29057 |1 |20 |1h |0 | |
+ROW |32979 |29849 |1 |1 |0.01 |0 | |
+ROW |32980 |29850 |1 |20 |1h |0 | |
+ROW |32981 |29851 |1 |20 |1d |0 | |
+ROW |32982 |29852 |1 |20 |1h |0 | |
+ROW |32983 |29853 |1 |20 |1d |0 | |
+ROW |32984 |29854 |1 |1 |0.01 |0 | |
+ROW |32985 |29855 |1 |20 |1h |0 | |
+ROW |32986 |29856 |1 |20 |1d |0 | |
+ROW |32987 |29857 |1 |20 |1h |0 | |
+ROW |32988 |29858 |1 |20 |1d |0 | |
+ROW |32989 |29859 |1 |1 |0.01 |0 | |
+ROW |32990 |29860 |1 |20 |1h |0 | |
+ROW |32991 |29861 |1 |20 |1d |0 | |
+ROW |32992 |29862 |1 |20 |1h |0 | |
+ROW |32993 |29863 |1 |20 |1d |0 | |
+ROW |32994 |29864 |1 |1 |0.01 |0 | |
+ROW |32995 |29865 |1 |20 |1h |0 | |
+ROW |32996 |29866 |1 |20 |1d |0 | |
+ROW |32997 |29867 |1 |20 |1h |0 | |
+ROW |32998 |29868 |1 |20 |1d |0 | |
+ROW |32999 |29869 |1 |1 |0.01 |0 | |
+ROW |33000 |29870 |1 |20 |1h |0 | |
+ROW |33001 |29871 |1 |20 |1d |0 | |
+ROW |33002 |29872 |1 |20 |1h |0 | |
+ROW |33003 |29873 |1 |20 |1d |0 | |
+ROW |33004 |29874 |1 |1 |0.01 |0 | |
+ROW |33005 |29875 |1 |20 |1h |0 | |
+ROW |33006 |29876 |1 |20 |1d |0 | |
+ROW |33007 |29877 |1 |20 |1h |0 | |
+ROW |33008 |29878 |1 |20 |1d |0 | |
+ROW |33009 |29879 |1 |1 |0.01 |0 | |
+ROW |33010 |29880 |1 |20 |1h |0 | |
+ROW |33011 |29881 |1 |20 |1d |0 | |
+ROW |33012 |29882 |1 |20 |1h |0 | |
+ROW |33013 |29883 |1 |20 |1d |0 | |
+ROW |33014 |29884 |1 |1 |0.01 |0 | |
+ROW |33015 |29885 |1 |20 |1h |0 | |
+ROW |33016 |29886 |1 |20 |1d |0 | |
+ROW |33017 |29887 |1 |20 |1h |0 | |
+ROW |33018 |29888 |1 |20 |1d |0 | |
+ROW |33019 |29889 |1 |1 |0.01 |0 | |
+ROW |33020 |29890 |1 |20 |1h |0 | |
+ROW |33021 |29891 |1 |20 |1d |0 | |
+ROW |33022 |29892 |1 |20 |1h |0 | |
+ROW |33023 |29893 |1 |20 |1d |0 | |
+ROW |33024 |29894 |1 |1 |0.01 |0 | |
+ROW |33025 |29895 |1 |20 |1h |0 | |
+ROW |33026 |29896 |1 |20 |1d |0 | |
+ROW |33027 |29897 |1 |20 |1h |0 | |
+ROW |33028 |29898 |1 |20 |1d |0 | |
+ROW |33029 |29899 |1 |1 |0.01 |0 | |
+ROW |33030 |29900 |1 |20 |1h |0 | |
+ROW |33031 |29901 |1 |20 |1d |0 | |
+ROW |33032 |29902 |1 |20 |1h |0 | |
+ROW |33033 |29903 |1 |20 |1d |0 | |
+ROW |33034 |29904 |1 |1 |0.01 |0 | |
+ROW |33035 |29905 |1 |20 |1h |0 | |
+ROW |33036 |29906 |1 |20 |1d |0 | |
+ROW |33037 |29907 |1 |20 |1h |0 | |
+ROW |33038 |29908 |1 |20 |1d |0 | |
+ROW |33039 |29909 |1 |1 |0.01 |0 | |
+ROW |33040 |29910 |1 |20 |1h |0 | |
+ROW |33041 |29911 |1 |20 |1d |0 | |
+ROW |33042 |29912 |1 |20 |1h |0 | |
+ROW |33043 |29913 |1 |20 |1d |0 | |
+ROW |33044 |29914 |1 |1 |0.01 |0 | |
+ROW |33045 |29915 |1 |20 |1h |0 | |
+ROW |33046 |29916 |1 |20 |1d |0 | |
+ROW |33047 |29917 |1 |20 |1h |0 | |
+ROW |33048 |29918 |1 |20 |1d |0 | |
+ROW |33049 |29919 |1 |1 |0.01 |0 | |
+ROW |33050 |29920 |1 |20 |1h |0 | |
+ROW |33051 |29921 |1 |20 |1d |0 | |
+ROW |33052 |29922 |1 |20 |1h |0 | |
+ROW |33053 |29923 |1 |20 |1d |0 | |
+ROW |33054 |29924 |1 |1 |0.01 |0 | |
+ROW |33055 |29925 |1 |20 |1h |0 | |
+ROW |33056 |29926 |1 |20 |1d |0 | |
+ROW |33057 |29927 |1 |20 |1h |0 | |
+ROW |33058 |29928 |1 |20 |1d |0 | |
+ROW |33059 |29929 |1 |1 |0.01 |0 | |
+ROW |33060 |29930 |1 |20 |1h |0 | |
+ROW |33061 |29931 |1 |20 |1d |0 | |
+ROW |33062 |29932 |1 |20 |1h |0 | |
+ROW |33063 |29933 |1 |20 |1d |0 | |
+ROW |33064 |29934 |1 |1 |0.01 |0 | |
+ROW |33065 |29935 |1 |20 |1h |0 | |
+ROW |33066 |29936 |1 |20 |1d |0 | |
+ROW |33067 |29937 |1 |20 |1h |0 | |
+ROW |33068 |29938 |1 |20 |1d |0 | |
+ROW |33069 |29939 |1 |1 |0.01 |0 | |
+ROW |33070 |29940 |1 |20 |1h |0 | |
+ROW |33071 |29941 |1 |20 |1d |0 | |
+ROW |33072 |29942 |1 |20 |1h |0 | |
+ROW |33073 |29943 |1 |20 |1d |0 | |
+ROW |33074 |29944 |1 |1 |0.01 |0 | |
+ROW |33075 |29945 |1 |20 |1h |0 | |
+ROW |33076 |29946 |1 |20 |1d |0 | |
+ROW |33077 |29947 |1 |20 |1h |0 | |
+ROW |33078 |29948 |1 |20 |1d |0 | |
+ROW |33079 |29949 |1 |1 |0.01 |0 | |
+ROW |33080 |29950 |1 |20 |1h |0 | |
+ROW |33081 |29951 |1 |20 |1d |0 | |
+ROW |33082 |29952 |1 |20 |1h |0 | |
+ROW |33083 |29953 |1 |20 |1d |0 | |
+ROW |33084 |29954 |1 |1 |0.01 |0 | |
+ROW |33085 |29955 |1 |20 |1h |0 | |
+ROW |33086 |29956 |1 |20 |1d |0 | |
+ROW |33087 |29957 |1 |20 |1h |0 | |
+ROW |33088 |29958 |1 |20 |1d |0 | |
+ROW |33089 |29959 |1 |1 |0.01 |0 | |
+ROW |33090 |29960 |1 |20 |1h |0 | |
+ROW |33091 |29961 |1 |20 |1d |0 | |
+ROW |33092 |29962 |1 |20 |1h |0 | |
+ROW |33093 |29963 |1 |20 |1d |0 | |
+ROW |33094 |29964 |1 |1 |0.01 |0 | |
+ROW |33095 |29965 |1 |20 |1h |0 | |
+ROW |33096 |29966 |1 |20 |1d |0 | |
+ROW |33097 |29967 |1 |20 |1h |0 | |
+ROW |33098 |29968 |1 |20 |1d |0 | |
+ROW |33099 |29969 |1 |1 |0.01 |0 | |
+ROW |33100 |29970 |1 |20 |1h |0 | |
+ROW |33101 |29971 |1 |20 |1d |0 | |
+ROW |33102 |29972 |1 |20 |1h |0 | |
+ROW |33103 |29973 |1 |20 |1d |0 | |
+ROW |33104 |29974 |1 |1 |0.01 |0 | |
+ROW |33105 |29975 |1 |20 |1h |0 | |
+ROW |33106 |29976 |1 |20 |1d |0 | |
+ROW |33107 |29977 |1 |20 |1h |0 | |
+ROW |33108 |29978 |1 |20 |1d |0 | |
+ROW |33109 |29979 |1 |1 |0.01 |0 | |
+ROW |33110 |29980 |1 |20 |1h |0 | |
+ROW |33111 |29981 |1 |20 |1d |0 | |
+ROW |33112 |29982 |1 |20 |1h |0 | |
+ROW |33113 |29983 |1 |20 |1d |0 | |
+ROW |33114 |29984 |1 |1 |0.01 |0 | |
+ROW |33115 |29985 |1 |20 |1h |0 | |
+ROW |33116 |29986 |1 |20 |1d |0 | |
+ROW |33117 |29987 |1 |20 |1h |0 | |
+ROW |33118 |29988 |1 |20 |1d |0 | |
+ROW |33119 |29989 |1 |1 |0.01 |0 | |
+ROW |33120 |29990 |1 |20 |1h |0 | |
+ROW |33121 |29991 |1 |20 |1d |0 | |
+ROW |33122 |29992 |1 |20 |1h |0 | |
+ROW |33123 |29993 |1 |20 |1d |0 | |
+ROW |33124 |30050 |1 |20 |1d |0 | |
+ROW |33125 |30051 |1 |20 |1d |0 | |
+ROW |33126 |30052 |1 |20 |1h |0 | |
+ROW |33127 |30053 |1 |20 |1h |0 | |
+ROW |33128 |30054 |1 |20 |1h |0 | |
+ROW |33129 |30055 |1 |1 |0.01 |0 | |
+ROW |33130 |30405 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |33131 |30406 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |33132 |30411 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33133 |30412 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33134 |30415 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33135 |30416 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33136 |30417 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33137 |30418 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33138 |30421 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33139 |30422 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33140 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |33141 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |33142 |30144 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |33143 |30145 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |33144 |30146 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |33145 |30157 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33146 |30158 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33147 |30161 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33148 |30162 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33149 |30163 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33150 |30164 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33151 |30167 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33152 |30168 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33153 |30169 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33154 |30170 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33155 |30173 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33156 |30174 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33157 |30175 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33158 |30176 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33159 |30179 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33160 |30180 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33161 |30181 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33162 |30182 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33163 |30185 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33164 |30186 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |33165 |27069 |1 |10 | |0 | |
+ROW |33166 |27070 |1 |20 |1d |0 | |
+ROW |33167 |27072 |1 |10 | |0 | |
+ROW |33168 |27073 |1 |10 | |0 | |
+ROW |33169 |27074 |1 |10 | |0 | |
+ROW |33170 |27074 |2 |1 |8 |0 | |
+ROW |33171 |27075 |1 |10 | |0 | |
+ROW |33172 |27075 |2 |1 |8 |0 | |
+ROW |33173 |27076 |1 |10 | |0 | |
+ROW |33174 |27597 |1 |10 | |0 | |
+ROW |33175 |27598 |1 |10 | |0 | |
+ROW |33176 |27599 |1 |10 | |0 | |
+ROW |33177 |27599 |2 |1 |8 |0 | |
+ROW |33178 |27600 |1 |10 | |0 | |
+ROW |33179 |27601 |1 |10 | |0 | |
+ROW |33180 |27602 |1 |10 | |0 | |
+ROW |33181 |27602 |2 |1 |8 |0 | |
+ROW |33182 |27605 |1 |20 |1d |0 | |
+ROW |33183 |28006 |1 |10 | |0 | |
+ROW |33184 |28007 |1 |10 | |0 | |
+ROW |33185 |28008 |1 |10 | |0 | |
+ROW |33186 |28008 |2 |1 |8 |0 | |
+ROW |33187 |28009 |1 |10 | |0 | |
+ROW |33188 |28010 |1 |10 | |0 | |
+ROW |33189 |28011 |1 |10 | |0 | |
+ROW |33190 |28011 |2 |1 |8 |0 | |
+ROW |33191 |28014 |1 |20 |1d |0 | |
+ROW |33192 |27079 |1 |10 | |0 | |
+ROW |33193 |27080 |1 |20 |1d |0 | |
+ROW |33194 |27082 |1 |10 | |0 | |
+ROW |33195 |27083 |1 |10 | |0 | |
+ROW |33196 |27084 |1 |10 | |0 | |
+ROW |33197 |27084 |2 |1 |8 |0 | |
+ROW |33198 |27085 |1 |10 | |0 | |
+ROW |33199 |27085 |2 |1 |8 |0 | |
+ROW |33200 |27086 |1 |10 | |0 | |
+ROW |33201 |27620 |1 |10 | |0 | |
+ROW |33202 |27621 |1 |10 | |0 | |
+ROW |33203 |27622 |1 |10 | |0 | |
+ROW |33204 |27622 |2 |1 |8 |0 | |
+ROW |33205 |27623 |1 |10 | |0 | |
+ROW |33206 |27624 |1 |10 | |0 | |
+ROW |33207 |27625 |1 |10 | |0 | |
+ROW |33208 |27625 |2 |1 |8 |0 | |
+ROW |33209 |27628 |1 |20 |1d |0 | |
+ROW |33210 |27977 |1 |10 | |0 | |
+ROW |33211 |27978 |1 |10 | |0 | |
+ROW |33212 |27979 |1 |10 | |0 | |
+ROW |33213 |27979 |2 |1 |8 |0 | |
+ROW |33214 |27980 |1 |10 | |0 | |
+ROW |33215 |27981 |1 |10 | |0 | |
+ROW |33216 |27982 |1 |10 | |0 | |
+ROW |33217 |27982 |2 |1 |8 |0 | |
+ROW |33218 |27985 |1 |20 |1d |0 | |
+ROW |33219 |27089 |1 |10 | |0 | |
+ROW |33220 |27090 |1 |20 |1d |0 | |
+ROW |33221 |27091 |1 |1 |1000000 |0 | |
+ROW |33222 |27091 |2 |20 |1h |0 | |
+ROW |33223 |27092 |1 |10 | |0 | |
+ROW |33224 |27093 |1 |10 | |0 | |
+ROW |33225 |27094 |1 |10 | |0 | |
+ROW |33226 |27094 |2 |1 |8 |0 | |
+ROW |33227 |27095 |1 |10 | |0 | |
+ROW |33228 |27095 |2 |1 |8 |0 | |
+ROW |33229 |27096 |1 |10 | |0 | |
+ROW |33230 |27099 |1 |10 | |0 | |
+ROW |33231 |27100 |1 |20 |1d |0 | |
+ROW |33232 |27101 |1 |1 |1000000 |0 | |
+ROW |33233 |27101 |2 |20 |1h |0 | |
+ROW |33234 |27102 |1 |10 | |0 | |
+ROW |33235 |27103 |1 |10 | |0 | |
+ROW |33236 |27104 |1 |10 | |0 | |
+ROW |33237 |27104 |2 |1 |8 |0 | |
+ROW |33238 |27105 |1 |10 | |0 | |
+ROW |33239 |27105 |2 |1 |8 |0 | |
+ROW |33240 |27106 |1 |10 | |0 | |
+ROW |33241 |27181 |1 |10 | |0 | |
+ROW |33242 |27182 |1 |10 | |0 | |
+ROW |33243 |27183 |1 |10 | |0 | |
+ROW |33244 |27183 |2 |1 |8 |0 | |
+ROW |33245 |27184 |1 |10 | |0 | |
+ROW |33246 |27185 |1 |10 | |0 | |
+ROW |33247 |27186 |1 |10 | |0 | |
+ROW |33248 |27186 |2 |1 |8 |0 | |
+ROW |33249 |27187 |1 |1 |1000000 |0 | |
+ROW |33250 |27187 |2 |20 |1h |0 | |
+ROW |33251 |27189 |1 |20 |1d |0 | |
+ROW |33252 |27216 |1 |10 | |0 | |
+ROW |33253 |27217 |1 |10 | |0 | |
+ROW |33254 |27218 |1 |10 | |0 | |
+ROW |33255 |27218 |2 |1 |8 |0 | |
+ROW |33256 |27219 |1 |10 | |0 | |
+ROW |33257 |27220 |1 |10 | |0 | |
+ROW |33258 |27221 |1 |10 | |0 | |
+ROW |33259 |27221 |2 |1 |8 |0 | |
+ROW |33260 |27222 |1 |1 |1000000 |0 | |
+ROW |33261 |27222 |2 |20 |1h |0 | |
+ROW |33262 |27224 |1 |20 |1d |0 | |
+ROW |33263 |27252 |1 |10 | |0 | |
+ROW |33264 |27253 |1 |10 | |0 | |
+ROW |33265 |27254 |1 |10 | |0 | |
+ROW |33266 |27254 |2 |1 |8 |0 | |
+ROW |33267 |27255 |1 |10 | |0 | |
+ROW |33268 |27256 |1 |10 | |0 | |
+ROW |33269 |27257 |1 |10 | |0 | |
+ROW |33270 |27257 |2 |1 |8 |0 | |
+ROW |33271 |27258 |1 |1 |1000000 |0 | |
+ROW |33272 |27258 |2 |20 |1h |0 | |
+ROW |33273 |27260 |1 |20 |1d |0 | |
+ROW |33274 |27273 |1 |10 | |0 | |
+ROW |33275 |27274 |1 |10 | |0 | |
+ROW |33276 |27275 |1 |10 | |0 | |
+ROW |33277 |27275 |2 |1 |8 |0 | |
+ROW |33278 |27276 |1 |10 | |0 | |
+ROW |33279 |27277 |1 |10 | |0 | |
+ROW |33280 |27278 |1 |10 | |0 | |
+ROW |33281 |27278 |2 |1 |8 |0 | |
+ROW |33282 |27279 |1 |1 |1000000 |0 | |
+ROW |33283 |27279 |2 |20 |1h |0 | |
+ROW |33284 |27281 |1 |20 |1d |0 | |
+ROW |33285 |27322 |1 |10 | |0 | |
+ROW |33286 |27323 |1 |10 | |0 | |
+ROW |33287 |27324 |1 |10 | |0 | |
+ROW |33288 |27324 |2 |1 |8 |0 | |
+ROW |33289 |27325 |1 |10 | |0 | |
+ROW |33290 |27326 |1 |10 | |0 | |
+ROW |33291 |27327 |1 |10 | |0 | |
+ROW |33292 |27327 |2 |1 |8 |0 | |
+ROW |33293 |27328 |1 |1 |1000000 |0 | |
+ROW |33294 |27328 |2 |20 |1h |0 | |
+ROW |33295 |27330 |1 |20 |1d |0 | |
+ROW |33296 |27451 |1 |10 | |0 | |
+ROW |33297 |27452 |1 |10 | |0 | |
+ROW |33298 |27453 |1 |10 | |0 | |
+ROW |33299 |27453 |2 |1 |8 |0 | |
+ROW |33300 |27454 |1 |10 | |0 | |
+ROW |33301 |27455 |1 |10 | |0 | |
+ROW |33302 |27456 |1 |10 | |0 | |
+ROW |33303 |27456 |2 |1 |8 |0 | |
+ROW |33304 |27457 |1 |1 |1000000 |0 | |
+ROW |33305 |27457 |2 |20 |1h |0 | |
+ROW |33306 |27459 |1 |20 |1d |0 | |
+ROW |33307 |27487 |1 |10 | |0 | |
+ROW |33308 |27488 |1 |10 | |0 | |
+ROW |33309 |27489 |1 |10 | |0 | |
+ROW |33310 |27489 |2 |1 |8 |0 | |
+ROW |33311 |27490 |1 |10 | |0 | |
+ROW |33312 |27491 |1 |10 | |0 | |
+ROW |33313 |27492 |1 |10 | |0 | |
+ROW |33314 |27492 |2 |1 |8 |0 | |
+ROW |33315 |27493 |1 |1 |1000000 |0 | |
+ROW |33316 |27493 |2 |20 |1h |0 | |
+ROW |33317 |27495 |1 |20 |1d |0 | |
+ROW |33318 |27521 |1 |10 | |0 | |
+ROW |33319 |27522 |1 |10 | |0 | |
+ROW |33320 |27523 |1 |10 | |0 | |
+ROW |33321 |27523 |2 |1 |8 |0 | |
+ROW |33322 |27524 |1 |10 | |0 | |
+ROW |33323 |27525 |1 |10 | |0 | |
+ROW |33324 |27526 |1 |10 | |0 | |
+ROW |33325 |27526 |2 |1 |8 |0 | |
+ROW |33326 |27527 |1 |1 |1000000 |0 | |
+ROW |33327 |27527 |2 |20 |1h |0 | |
+ROW |33328 |27529 |1 |20 |1d |0 | |
+ROW |33329 |27557 |1 |10 | |0 | |
+ROW |33330 |27558 |1 |10 | |0 | |
+ROW |33331 |27559 |1 |10 | |0 | |
+ROW |33332 |27559 |2 |1 |8 |0 | |
+ROW |33333 |27560 |1 |10 | |0 | |
+ROW |33334 |27561 |1 |10 | |0 | |
+ROW |33335 |27562 |1 |10 | |0 | |
+ROW |33336 |27562 |2 |1 |8 |0 | |
+ROW |33337 |27563 |1 |1 |1000000 |0 | |
+ROW |33338 |27563 |2 |20 |1h |0 | |
+ROW |33339 |27565 |1 |20 |1d |0 | |
+ROW |33340 |27643 |1 |10 | |0 | |
+ROW |33341 |27644 |1 |10 | |0 | |
+ROW |33342 |27645 |1 |10 | |0 | |
+ROW |33343 |27645 |2 |1 |8 |0 | |
+ROW |33344 |27646 |1 |10 | |0 | |
+ROW |33345 |27647 |1 |10 | |0 | |
+ROW |33346 |27648 |1 |10 | |0 | |
+ROW |33347 |27648 |2 |1 |8 |0 | |
+ROW |33348 |27649 |1 |1 |1000000 |0 | |
+ROW |33349 |27649 |2 |20 |1h |0 | |
+ROW |33350 |27651 |1 |20 |1d |0 | |
+ROW |33351 |27723 |1 |10 | |0 | |
+ROW |33352 |27724 |1 |10 | |0 | |
+ROW |33353 |27725 |1 |10 | |0 | |
+ROW |33354 |27725 |2 |1 |8 |0 | |
+ROW |33355 |27726 |1 |10 | |0 | |
+ROW |33356 |27727 |1 |10 | |0 | |
+ROW |33357 |27728 |1 |10 | |0 | |
+ROW |33358 |27728 |2 |1 |8 |0 | |
+ROW |33359 |27729 |1 |1 |1000000 |0 | |
+ROW |33360 |27729 |2 |20 |1h |0 | |
+ROW |33361 |27731 |1 |20 |1d |0 | |
+ROW |33362 |27757 |1 |10 | |0 | |
+ROW |33363 |27758 |1 |10 | |0 | |
+ROW |33364 |27759 |1 |10 | |0 | |
+ROW |33365 |27759 |2 |1 |8 |0 | |
+ROW |33366 |27760 |1 |10 | |0 | |
+ROW |33367 |27761 |1 |10 | |0 | |
+ROW |33368 |27762 |1 |10 | |0 | |
+ROW |33369 |27762 |2 |1 |8 |0 | |
+ROW |33370 |27763 |1 |1 |1000000 |0 | |
+ROW |33371 |27763 |2 |20 |1h |0 | |
+ROW |33372 |27765 |1 |20 |1d |0 | |
+ROW |33373 |27789 |1 |10 | |0 | |
+ROW |33374 |27790 |1 |10 | |0 | |
+ROW |33375 |27791 |1 |10 | |0 | |
+ROW |33376 |27791 |2 |1 |8 |0 | |
+ROW |33377 |27792 |1 |10 | |0 | |
+ROW |33378 |27793 |1 |10 | |0 | |
+ROW |33379 |27794 |1 |10 | |0 | |
+ROW |33380 |27794 |2 |1 |8 |0 | |
+ROW |33381 |27795 |1 |1 |1000000 |0 | |
+ROW |33382 |27795 |2 |20 |1h |0 | |
+ROW |33383 |27797 |1 |20 |1d |0 | |
+ROW |33384 |27873 |1 |10 | |0 | |
+ROW |33385 |27874 |1 |10 | |0 | |
+ROW |33386 |27875 |1 |10 | |0 | |
+ROW |33387 |27875 |2 |1 |8 |0 | |
+ROW |33388 |27876 |1 |10 | |0 | |
+ROW |33389 |27877 |1 |10 | |0 | |
+ROW |33390 |27878 |1 |10 | |0 | |
+ROW |33391 |27878 |2 |1 |8 |0 | |
+ROW |33392 |27879 |1 |1 |1000000 |0 | |
+ROW |33393 |27879 |2 |20 |1h |0 | |
+ROW |33394 |27881 |1 |20 |1d |0 | |
+ROW |33395 |27910 |1 |10 | |0 | |
+ROW |33396 |27911 |1 |10 | |0 | |
+ROW |33397 |27912 |1 |10 | |0 | |
+ROW |33398 |27912 |2 |1 |8 |0 | |
+ROW |33399 |27913 |1 |10 | |0 | |
+ROW |33400 |27914 |1 |10 | |0 | |
+ROW |33401 |27915 |1 |10 | |0 | |
+ROW |33402 |27915 |2 |1 |8 |0 | |
+ROW |33403 |27916 |1 |1 |1000000 |0 | |
+ROW |33404 |27916 |2 |20 |1h |0 | |
+ROW |33405 |27918 |1 |20 |1d |0 | |
+ROW |33406 |27945 |1 |10 | |0 | |
+ROW |33407 |27946 |1 |10 | |0 | |
+ROW |33408 |27947 |1 |10 | |0 | |
+ROW |33409 |27947 |2 |1 |8 |0 | |
+ROW |33410 |27948 |1 |10 | |0 | |
+ROW |33411 |27949 |1 |10 | |0 | |
+ROW |33412 |27950 |1 |10 | |0 | |
+ROW |33413 |27950 |2 |1 |8 |0 | |
+ROW |33414 |27951 |1 |1 |1000000 |0 | |
+ROW |33415 |27951 |2 |20 |1h |0 | |
+ROW |33416 |27953 |1 |20 |1d |0 | |
+ROW |33417 |28119 |1 |10 | |0 | |
+ROW |33418 |28120 |1 |10 | |0 | |
+ROW |33419 |28121 |1 |10 | |0 | |
+ROW |33420 |28121 |2 |1 |8 |0 | |
+ROW |33421 |28122 |1 |10 | |0 | |
+ROW |33422 |28123 |1 |10 | |0 | |
+ROW |33423 |28124 |1 |10 | |0 | |
+ROW |33424 |28124 |2 |1 |8 |0 | |
+ROW |33425 |28125 |1 |1 |1000000 |0 | |
+ROW |33426 |28125 |2 |20 |1h |0 | |
+ROW |33427 |28127 |1 |20 |1d |0 | |
+ROW |33428 |28176 |1 |10 | |0 | |
+ROW |33429 |28177 |1 |10 | |0 | |
+ROW |33430 |28178 |1 |10 | |0 | |
+ROW |33431 |28178 |2 |1 |8 |0 | |
+ROW |33432 |28179 |1 |10 | |0 | |
+ROW |33433 |28180 |1 |10 | |0 | |
+ROW |33434 |28181 |1 |10 | |0 | |
+ROW |33435 |28181 |2 |1 |8 |0 | |
+ROW |33436 |28182 |1 |1 |1000000 |0 | |
+ROW |33437 |28182 |2 |20 |1h |0 | |
+ROW |33438 |28184 |1 |20 |1d |0 | |
+ROW |33439 |28224 |1 |10 | |0 | |
+ROW |33440 |28225 |1 |10 | |0 | |
+ROW |33441 |28226 |1 |10 | |0 | |
+ROW |33442 |28226 |2 |1 |8 |0 | |
+ROW |33443 |28227 |1 |10 | |0 | |
+ROW |33444 |28228 |1 |10 | |0 | |
+ROW |33445 |28229 |1 |10 | |0 | |
+ROW |33446 |28229 |2 |1 |8 |0 | |
+ROW |33447 |28230 |1 |1 |1000000 |0 | |
+ROW |33448 |28230 |2 |20 |1h |0 | |
+ROW |33449 |28232 |1 |20 |1d |0 | |
+ROW |33450 |28294 |1 |10 | |0 | |
+ROW |33451 |28295 |1 |10 | |0 | |
+ROW |33452 |28296 |1 |10 | |0 | |
+ROW |33453 |28296 |2 |1 |8 |0 | |
+ROW |33454 |28297 |1 |10 | |0 | |
+ROW |33455 |28298 |1 |10 | |0 | |
+ROW |33456 |28299 |1 |10 | |0 | |
+ROW |33457 |28299 |2 |1 |8 |0 | |
+ROW |33458 |28300 |1 |1 |1000000 |0 | |
+ROW |33459 |28300 |2 |20 |1h |0 | |
+ROW |33460 |28302 |1 |20 |1d |0 | |
+ROW |33461 |28969 |1 |10 | |0 | |
+ROW |33462 |28970 |1 |10 | |0 | |
+ROW |33463 |28971 |1 |10 | |0 | |
+ROW |33464 |28971 |2 |1 |8 |0 | |
+ROW |33465 |28972 |1 |10 | |0 | |
+ROW |33466 |28973 |1 |10 | |0 | |
+ROW |33467 |28974 |1 |10 | |0 | |
+ROW |33468 |28974 |2 |1 |8 |0 | |
+ROW |33469 |28975 |1 |1 |1000000 |0 | |
+ROW |33470 |28975 |2 |20 |1h |0 | |
+ROW |33471 |28977 |1 |20 |1d |0 | |
+ROW |33472 |27119 |1 |10 | |0 | |
+ROW |33473 |27120 |1 |20 |1d |0 | |
+ROW |33474 |27121 |1 |1 |1000000 |0 | |
+ROW |33475 |27121 |2 |20 |1h |0 | |
+ROW |33476 |27122 |1 |10 | |0 | |
+ROW |33477 |27123 |1 |10 | |0 | |
+ROW |33478 |27124 |1 |10 | |0 | |
+ROW |33479 |27124 |2 |1 |8 |0 | |
+ROW |33480 |27125 |1 |10 | |0 | |
+ROW |33481 |27125 |2 |1 |8 |0 | |
+ROW |33482 |27126 |1 |10 | |0 | |
+ROW |33483 |29078 |1 |10 | |0 | |
+ROW |33484 |29079 |1 |10 | |0 | |
+ROW |33485 |29080 |1 |10 | |0 | |
+ROW |33486 |29080 |2 |1 |8 |0 | |
+ROW |33487 |29081 |1 |10 | |0 | |
+ROW |33488 |29082 |1 |10 | |0 | |
+ROW |33489 |29083 |1 |10 | |0 | |
+ROW |33490 |29083 |2 |1 |8 |0 | |
+ROW |33491 |29084 |1 |1 |1000000 |0 | |
+ROW |33492 |29084 |2 |20 |1h |0 | |
+ROW |33493 |29086 |1 |20 |1d |0 | |
+ROW |33494 |22231 |1 |20 |1d |0 | |
+ROW |33495 |23318 |1 |20 |1d |0 | |
+ROW |33496 |29545 |1 |20 |1d |0 | |
+ROW |33497 |29546 |1 |20 |1d |0 | |
+ROW |33498 |10059 |1 |20 |1d |0 | |
+ROW |33499 |22834 |1 |20 |1d |0 | |
+ROW |33500 |22874 |1 |20 |1d |0 | |
+ROW |33501 |22914 |1 |20 |1d |0 | |
+ROW |33502 |22954 |1 |20 |1d |0 | |
+ROW |33503 |22994 |1 |20 |1d |0 | |
+ROW |33504 |23034 |1 |20 |1d |0 | |
+ROW |33505 |23161 |1 |20 |1d |0 | |
+ROW |33506 |23319 |1 |20 |1d |0 | |
+ROW |33507 |23320 |1 |20 |1d |0 | |
+ROW |33508 |23321 |1 |20 |1d |0 | |
+ROW |33509 |23322 |1 |20 |1d |0 | |
+ROW |33510 |23323 |1 |20 |1d |0 | |
+ROW |33511 |23324 |1 |20 |1d |0 | |
+ROW |33512 |23325 |1 |20 |1d |0 | |
+ROW |33513 |23326 |1 |20 |1d |0 | |
+ROW |33514 |29558 |1 |20 |1d |0 | |
+ROW |33515 |29560 |1 |20 |1d |0 | |
+ROW |33516 |29995 |1 |20 |1d |0 | |
+ROW |33517 |29997 |1 |20 |1d |0 | |
+ROW |33518 |23288 |1 |20 |1d |0 | |
+ROW |33519 |23327 |1 |20 |1d |0 | |
+ROW |33520 |27203 |1 |5 |^(\w&pipe;-&pipe;\.&pipe;/)+ (\w&pipe;-&pipe;\.&pipe;/)+ (.+) Copyright&bsn;\3 |0 | |
+ROW |33521 |27203 |2 |20 |1d |0 | |
+ROW |33522 |27207 |1 |1 |1024 |0 | |
+ROW |33523 |30086 |1 |5 |^((\w&pipe;-&pipe;\.&pipe;/)+)&bsn;\1 |0 | |
+ROW |33524 |30086 |2 |20 |1d |0 | |
+ROW |33525 |30087 |1 |1 |1024 |0 | |
+ROW |33526 |27214 |1 |20 |1d |0 | |
+ROW |33527 |28323 |1 |1 |0.1 |0 | |
+ROW |33528 |28327 |1 |20 |1d |0 | |
+ROW |33529 |28328 |1 |20 |1d |0 | |
+ROW |33530 |27236 |1 |20 |1d |0 | |
+ROW |33531 |27237 |1 |20 |1d |0 | |
+ROW |33532 |27295 |1 |20 |1d |0 | |
+ROW |33533 |27296 |1 |20 |1d |0 | |
+ROW |33534 |27297 |1 |20 |1d |0 | |
+ROW |33535 |27314 |1 |1 |0.5 |0 | |
+ROW |33536 |27315 |1 |1 |0.5 |0 | |
+ROW |33537 |27318 |1 |1 |0.5 |0 | |
+ROW |33538 |27319 |1 |20 |1d |0 | |
+ROW |33539 |27320 |1 |20 |1d |0 | |
+ROW |33540 |27378 |1 |20 |1d |0 | |
+ROW |33541 |27379 |1 |20 |1d |0 | |
+ROW |33542 |30097 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |33543 |30097 |2 |20 |1d |0 | |
+ROW |33544 |27382 |1 |20 |1d |0 | |
+ROW |33545 |27383 |1 |20 |1d |0 | |
+ROW |33546 |27385 |1 |20 |1d |0 | |
+ROW |33547 |27386 |1 |20 |1d |0 | |
+ROW |33548 |28209 |1 |20 |1d |0 | |
+ROW |33549 |28210 |1 |20 |1d |0 | |
+ROW |33550 |30098 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |33551 |30098 |2 |20 |1d |0 | |
+ROW |33552 |30099 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |33553 |30099 |2 |20 |1d |0 | |
+ROW |33554 |30100 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |33555 |30100 |2 |20 |1d |0 | |
+ROW |33556 |27419 |1 |20 |1d |0 | |
+ROW |33557 |27428 |1 |20 |1d |0 | |
+ROW |33558 |27445 |1 |20 |1d |0 | |
+ROW |33559 |28208 |1 |20 |1d |0 | |
+ROW |33560 |27481 |1 |20 |1d |0 | |
+ROW |33561 |27482 |1 |20 |1d |0 | |
+ROW |33562 |27483 |1 |20 |1d |0 | |
+ROW |33563 |27484 |1 |20 |1d |0 | |
+ROW |33564 |27508 |1 |20 |1d |0 | |
+ROW |33565 |27509 |1 |20 |1d |0 | |
+ROW |33566 |27510 |1 |20 |1d |0 | |
+ROW |33567 |30106 |1 |20 |1d |0 | |
+ROW |33568 |27543 |1 |20 |1d |0 | |
+ROW |33569 |27544 |1 |20 |1d |0 | |
+ROW |33570 |27545 |1 |20 |1d |0 | |
+ROW |33571 |27546 |1 |20 |1d |0 | |
+ROW |33572 |27579 |1 |20 |1d |0 | |
+ROW |33573 |27580 |1 |20 |1d |0 | |
+ROW |33574 |27582 |1 |20 |1d |0 | |
+ROW |33575 |27583 |1 |20 |1d |0 | |
+ROW |33576 |30109 |1 |20 |1d |0 | |
+ROW |33577 |27591 |1 |1 |1024 |0 | |
+ROW |33578 |30110 |1 |1 |1024 |0 | |
+ROW |33579 |27675 |1 |20 |1d |0 | |
+ROW |33580 |27676 |1 |20 |1d |0 | |
+ROW |33581 |27677 |1 |20 |1d |0 | |
+ROW |33582 |27678 |1 |20 |1d |0 | |
+ROW |33583 |27679 |1 |20 |1d |0 | |
+ROW |33584 |28141 |1 |20 |1d |0 | |
+ROW |33585 |28142 |1 |20 |1d |0 | |
+ROW |33586 |28157 |1 |20 |1d |0 | |
+ROW |33587 |28158 |1 |20 |1d |0 | |
+ROW |33588 |27748 |1 |20 |1d |0 | |
+ROW |33589 |27749 |1 |20 |1d |0 | |
+ROW |33590 |27750 |1 |20 |1d |0 | |
+ROW |33591 |27754 |1 |20 |1d |0 | |
+ROW |33592 |27777 |1 |5 |Firmware Version: ([0-9.]+),&bsn;\1 |0 | |
+ROW |33593 |27777 |2 |20 |1d |0 | |
+ROW |33594 |27778 |1 |5 |(.+) - Firmware&bsn;\1 |0 | |
+ROW |33595 |27778 |2 |20 |1d |0 | |
+ROW |33596 |27785 |1 |20 |1d |0 | |
+ROW |33597 |27812 |1 |20 |1d |0 | |
+ROW |33598 |27813 |1 |20 |1d |0 | |
+ROW |33599 |30117 |1 |5 |kernel (JUNOS [0-9a-zA-Z\.\-]+)&bsn;\1 |0 | |
+ROW |33600 |30117 |2 |20 |1d |0 | |
+ROW |33601 |28201 |1 |1 |0.1 |0 | |
+ROW |33602 |28204 |1 |20 |1d |0 | |
+ROW |33603 |28205 |1 |20 |1d |0 | |
+ROW |33604 |27893 |1 |20 |1d |0 | |
+ROW |33605 |27894 |1 |20 |1d |0 | |
+ROW |33606 |27895 |1 |20 |1d |0 | |
+ROW |33607 |27897 |1 |1 |0.1 |0 | |
+ROW |33608 |27898 |1 |1 |1024 |0 | |
+ROW |33609 |27900 |1 |1 |1024 |0 | |
+ROW |33610 |30119 |1 |20 |1d |0 | |
+ROW |33611 |27905 |1 |1 |0.1 |0 | |
+ROW |33612 |27907 |1 |1 |1024 |0 | |
+ROW |33613 |27908 |1 |1 |1024 |0 | |
+ROW |33614 |27930 |1 |20 |1d |0 | |
+ROW |33615 |27931 |1 |20 |1d |0 | |
+ROW |33616 |27936 |1 |5 |60 Secs \( ([0-9\.]+)%\).+300 Secs&bsn;\1 |0 | |
+ROW |33617 |30121 |1 |20 |1d |0 | |
+ROW |33618 |27967 |1 |20 |1d |0 | |
+ROW |33619 |27968 |1 |20 |1d |0 | |
+ROW |33620 |27970 |1 |20 |1d |0 | |
+ROW |33621 |27971 |1 |20 |1d |0 | |
+ROW |33622 |30125 |1 |20 |1d |0 | |
+ROW |33623 |27997 |1 |20 |1d |0 | |
+ROW |33624 |27998 |1 |20 |1d |0 | |
+ROW |33625 |27999 |1 |20 |1d |0 | |
+ROW |33626 |28000 |1 |20 |1d |0 | |
+ROW |33627 |28026 |1 |20 |1d |0 | |
+ROW |33628 |28027 |1 |20 |1d |0 | |
+ROW |33629 |30132 |1 |1 |1024 |0 | |
+ROW |33630 |30133 |1 |1 |1024 |0 | |
+ROW |33631 |30134 |1 |1 |1024 |0 | |
+ROW |33632 |30135 |1 |1 |1024 |0 | |
+ROW |33633 |29087 |1 |20 |1d |0 | |
+ROW |33634 |29089 |1 |10 | |0 | |
+ROW |33635 |29102 |1 |10 | |0 | |
+ROW |33636 |29103 |1 |21 |return (100-value); |0 | |
+ROW |33637 |29109 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
+ROW |33638 |29111 |1 |20 |1h |0 | |
+ROW |33639 |29113 |1 |20 |1h |0 | |
+ROW |33640 |29114 |1 |20 |1d |0 | |
+ROW |33641 |29116 |1 |20 |1d |0 | |
+ROW |33642 |29117 |1 |20 |1d |0 | |
+ROW |33643 |29120 |1 |20 |1h |0 | |
+ROW |33644 |29121 |1 |20 |1d |0 | |
+ROW |33645 |29122 |1 |20 |1d |0 | |
+ROW |33646 |29123 |1 |20 |1d |0 | |
+ROW |33647 |29124 |1 |20 |1d |0 | |
+ROW |33648 |29126 |1 |10 | |0 | |
+ROW |33649 |29139 |1 |10 | |0 | |
+ROW |33650 |29140 |1 |21 |return (100-value); |0 | |
+ROW |33651 |29146 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
+ROW |33652 |29148 |1 |20 |1h |0 | |
+ROW |33653 |29150 |1 |20 |1h |0 | |
+ROW |33654 |29151 |1 |20 |1d |0 | |
+ROW |33655 |29153 |1 |20 |1d |0 | |
+ROW |33656 |29154 |1 |20 |1d |0 | |
+ROW |33657 |29157 |1 |20 |1h |0 | |
+ROW |33658 |29158 |1 |20 |1d |0 | |
+ROW |33659 |29159 |1 |20 |1d |0 | |
+ROW |33660 |29160 |1 |20 |1d |0 | |
+ROW |33661 |29161 |1 |20 |1d |0 | |
+ROW |33662 |29163 |1 |10 | |0 | |
+ROW |33663 |29176 |1 |10 | |0 | |
+ROW |33664 |29177 |1 |21 |return (100-value); |0 | |
+ROW |33665 |29183 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
+ROW |33666 |29185 |1 |20 |1h |0 | |
+ROW |33667 |29187 |1 |20 |1h |0 | |
+ROW |33668 |29188 |1 |20 |1d |0 | |
+ROW |33669 |29190 |1 |20 |1d |0 | |
+ROW |33670 |29191 |1 |20 |1d |0 | |
+ROW |33671 |29194 |1 |20 |1h |0 | |
+ROW |33672 |29195 |1 |20 |1d |0 | |
+ROW |33673 |29196 |1 |20 |1d |0 | |
+ROW |33674 |29197 |1 |20 |1d |0 | |
+ROW |33675 |29198 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |33676 |29199 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |33677 |29200 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |33678 |29202 |1 |12 |$.lld |0 | |
+ROW |33679 |29202 |2 |20 |1h |0 | |
+ROW |33680 |29205 |1 |12 |$.lld |0 | |
+ROW |33681 |29205 |2 |20 |1h |0 | |
+ROW |33682 |29208 |1 |12 |$.lld |0 | |
+ROW |33683 |29208 |2 |20 |1h |0 | |
+ROW |33684 |29216 |1 |10 | |0 | |
+ROW |33685 |29216 |2 |1 |8 |0 | |
+ROW |33686 |29217 |1 |10 | |0 | |
+ROW |33687 |29217 |2 |1 |8 |0 | |
+ROW |33688 |29218 |1 |10 | |0 | |
+ROW |33689 |29219 |1 |10 | |0 | |
+ROW |33690 |29220 |1 |10 | |0 | |
+ROW |33691 |29221 |1 |10 | |0 | |
+ROW |33692 |29222 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |33693 |29223 |1 |20 |1d |0 | |
+ROW |33694 |29230 |1 |10 | |0 | |
+ROW |33695 |29230 |2 |1 |8 |0 | |
+ROW |33696 |29231 |1 |10 | |0 | |
+ROW |33697 |29231 |2 |1 |8 |0 | |
+ROW |33698 |29232 |1 |10 | |0 | |
+ROW |33699 |29233 |1 |10 | |0 | |
+ROW |33700 |29234 |1 |10 | |0 | |
+ROW |33701 |29235 |1 |10 | |0 | |
+ROW |33702 |29236 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |33703 |29237 |1 |20 |1d |0 | |
+ROW |33704 |29244 |1 |10 | |0 | |
+ROW |33705 |29244 |2 |1 |8 |0 | |
+ROW |33706 |29245 |1 |10 | |0 | |
+ROW |33707 |29245 |2 |1 |8 |0 | |
+ROW |33708 |29246 |1 |10 | |0 | |
+ROW |33709 |29247 |1 |10 | |0 | |
+ROW |33710 |29248 |1 |10 | |0 | |
+ROW |33711 |29249 |1 |10 | |0 | |
+ROW |33712 |29250 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |33713 |29251 |1 |20 |1d |0 | |
+ROW |33714 |29252 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |33715 |29252 |2 |10 | |0 | |
+ROW |33716 |29253 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |33717 |29253 |2 |10 | |0 | |
+ROW |33718 |29254 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |33719 |29254 |2 |10 | |0 | |
+ROW |33720 |29254 |3 |1 |0.001 |0 | |
+ROW |33721 |29255 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |33722 |29255 |2 |10 | |0 | |
+ROW |33723 |29255 |3 |1 |0.001 |0 | |
+ROW |33724 |29256 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |33725 |29256 |2 |10 | |0 | |
+ROW |33726 |29256 |3 |1 |0.001 |0 | |
+ROW |33727 |29257 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |33728 |29257 |2 |10 | |0 | |
+ROW |33729 |29257 |3 |1 |0.1 |0 | |
+ROW |33730 |29258 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |33731 |29258 |2 |10 | |0 | |
+ROW |33732 |29259 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |33733 |29259 |2 |10 | |0 | |
+ROW |33734 |29260 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |33735 |29260 |2 |10 | |0 | |
+ROW |33736 |29260 |3 |1 |0.001 |0 | |
+ROW |33737 |29261 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |33738 |29261 |2 |10 | |0 | |
+ROW |33739 |29261 |3 |1 |0.001 |0 | |
+ROW |33740 |29262 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |33741 |29262 |2 |10 | |0 | |
+ROW |33742 |29262 |3 |1 |0.001 |0 | |
+ROW |33743 |29263 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |33744 |29263 |2 |10 | |0 | |
+ROW |33745 |29263 |3 |1 |0.1 |0 | |
+ROW |33746 |29264 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |33747 |29264 |2 |10 | |0 | |
+ROW |33748 |29265 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |33749 |29265 |2 |10 | |0 | |
+ROW |33750 |29266 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |33751 |29266 |2 |10 | |0 | |
+ROW |33752 |29266 |3 |1 |0.001 |0 | |
+ROW |33753 |29267 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |33754 |29267 |2 |10 | |0 | |
+ROW |33755 |29267 |3 |1 |0.001 |0 | |
+ROW |33756 |29268 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |33757 |29268 |2 |10 | |0 | |
+ROW |33758 |29268 |3 |1 |0.001 |0 | |
+ROW |33759 |29269 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |33760 |29269 |2 |10 | |0 | |
+ROW |33761 |29269 |3 |1 |0.1 |0 | |
+ROW |33762 |29273 |1 |20 |1d |0 | |
+ROW |33763 |29275 |1 |10 | |0 | |
+ROW |33764 |29288 |1 |10 | |0 | |
+ROW |33765 |29289 |1 |21 |return (100-value); |0 | |
+ROW |33766 |29295 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
+ROW |33767 |29297 |1 |20 |1h |0 | |
+ROW |33768 |29299 |1 |20 |1h |0 | |
+ROW |33769 |29300 |1 |20 |1d |0 | |
+ROW |33770 |29302 |1 |20 |1d |0 | |
+ROW |33771 |29303 |1 |20 |1d |0 | |
+ROW |33772 |29306 |1 |20 |1h |0 | |
+ROW |33773 |29307 |1 |20 |1d |0 | |
+ROW |33774 |29308 |1 |20 |1d |0 | |
+ROW |33775 |29309 |1 |20 |1d |0 | |
+ROW |33776 |29310 |1 |20 |1d |0 | |
+ROW |33777 |29312 |1 |10 | |0 | |
+ROW |33778 |29325 |1 |10 | |0 | |
+ROW |33779 |29326 |1 |21 |return (100-value); |0 | |
+ROW |33780 |29332 |1 |21 |var parsed = value.split("\n").reduce(function(acc, x, i) {&bsn; parts = x.trim().split(/ +/)&bsn; acc["values"][parts[2]] = parts&bsn; acc["lld"].push({"{#DEVNAME}":parts[2]})&bsn; return acc;&bsn;}, {"values":{}, "lld": []});&bsn;&bsn;return JSON.stringify(parsed); |0 | |
+ROW |33781 |29334 |1 |20 |1h |0 | |
+ROW |33782 |29336 |1 |20 |1h |0 | |
+ROW |33783 |29337 |1 |20 |1d |0 | |
+ROW |33784 |29339 |1 |20 |1d |0 | |
+ROW |33785 |29340 |1 |20 |1d |0 | |
+ROW |33786 |29343 |1 |20 |1h |0 | |
+ROW |33787 |29344 |1 |20 |1d |0 | |
+ROW |33788 |29345 |1 |20 |1d |0 | |
+ROW |33789 |29346 |1 |20 |1d |0 | |
+ROW |33790 |29347 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |33791 |29348 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |33792 |29350 |1 |12 |$.lld |0 | |
+ROW |33793 |29350 |2 |20 |1h |0 | |
+ROW |33794 |29353 |1 |12 |$.lld |0 | |
+ROW |33795 |29353 |2 |20 |1h |0 | |
+ROW |33796 |29361 |1 |10 | |0 | |
+ROW |33797 |29361 |2 |1 |8 |0 | |
+ROW |33798 |29362 |1 |10 | |0 | |
+ROW |33799 |29362 |2 |1 |8 |0 | |
+ROW |33800 |29363 |1 |10 | |0 | |
+ROW |33801 |29364 |1 |10 | |0 | |
+ROW |33802 |29365 |1 |10 | |0 | |
+ROW |33803 |29366 |1 |10 | |0 | |
+ROW |33804 |29367 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |33805 |29368 |1 |20 |1d |0 | |
+ROW |33806 |29375 |1 |10 | |0 | |
+ROW |33807 |29375 |2 |1 |8 |0 | |
+ROW |33808 |29376 |1 |10 | |0 | |
+ROW |33809 |29376 |2 |1 |8 |0 | |
+ROW |33810 |29377 |1 |10 | |0 | |
+ROW |33811 |29378 |1 |10 | |0 | |
+ROW |33812 |29379 |1 |10 | |0 | |
+ROW |33813 |29380 |1 |10 | |0 | |
+ROW |33814 |29381 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |33815 |29382 |1 |20 |1d |0 | |
+ROW |33816 |29383 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |33817 |29383 |2 |10 | |0 | |
+ROW |33818 |29384 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |33819 |29384 |2 |10 | |0 | |
+ROW |33820 |29385 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |33821 |29385 |2 |10 | |0 | |
+ROW |33822 |29385 |3 |1 |0.001 |0 | |
+ROW |33823 |29386 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |33824 |29386 |2 |10 | |0 | |
+ROW |33825 |29386 |3 |1 |0.001 |0 | |
+ROW |33826 |29387 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |33827 |29387 |2 |10 | |0 | |
+ROW |33828 |29387 |3 |1 |0.001 |0 | |
+ROW |33829 |29388 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |33830 |29388 |2 |10 | |0 | |
+ROW |33831 |29388 |3 |1 |0.1 |0 | |
+ROW |33832 |29389 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |33833 |29389 |2 |10 | |0 | |
+ROW |33834 |29390 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |33835 |29390 |2 |10 | |0 | |
+ROW |33836 |29391 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |33837 |29391 |2 |10 | |0 | |
+ROW |33838 |29391 |3 |1 |0.001 |0 | |
+ROW |33839 |29392 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |33840 |29392 |2 |10 | |0 | |
+ROW |33841 |29392 |3 |1 |0.001 |0 | |
+ROW |33842 |29393 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |33843 |29393 |2 |10 | |0 | |
+ROW |33844 |29393 |3 |1 |0.001 |0 | |
+ROW |33845 |29394 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |33846 |29394 |2 |10 | |0 | |
+ROW |33847 |29394 |3 |1 |0.1 |0 | |
+ROW |33848 |29398 |1 |22 |{__name__=~"^node_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |33849 |29399 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="steal"} |0 | |
+ROW |33850 |29399 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33851 |29399 |3 |10 | |0 | |
+ROW |33852 |29399 |4 |1 |100 |0 | |
+ROW |33853 |29400 |1 |22 |{__name__=~"node_memory_SwapFree"}&bsn; |0 | |
+ROW |33854 |29401 |1 |22 |{__name__=~"node_memory_SwapTotal"}&bsn; |0 | |
+ROW |33855 |29402 |1 |22 |{__name__=~"node_memory_MemAvailable"}&bsn; |0 | |
+ROW |33856 |29403 |1 |22 |{__name__=~"node_memory_MemTotal"}&bsn; |0 | |
+ROW |33857 |29404 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |33858 |29405 |1 |22 |{__name__=~"node_context_switches"}&bsn; |0 | |
+ROW |33859 |29405 |2 |10 | |0 | |
+ROW |33860 |29406 |1 |22 |{__name__=~"node_intr"}&bsn; |0 | |
+ROW |33861 |29406 |2 |10 | |0 | |
+ROW |33862 |29407 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:nice&pipe;guest_nice)$"} |0 | |
+ROW |33863 |29407 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33864 |29407 |3 |10 | |0 | |
+ROW |33865 |29407 |4 |1 |100 |0 | |
+ROW |33866 |29408 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:user&pipe;guest)$"} |0 | |
+ROW |33867 |29408 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33868 |29408 |3 |10 | |0 | |
+ROW |33869 |29408 |4 |1 |100 |0 | |
+ROW |33870 |29409 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="irq"} |0 | |
+ROW |33871 |29409 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33872 |29409 |3 |10 | |0 | |
+ROW |33873 |29409 |4 |1 |100 |0 | |
+ROW |33874 |29410 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="iowait"} |0 | |
+ROW |33875 |29410 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33876 |29410 |3 |10 | |0 | |
+ROW |33877 |29410 |4 |1 |100 |0 | |
+ROW |33878 |29411 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="nice"} |0 | |
+ROW |33879 |29411 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33880 |29411 |3 |10 | |0 | |
+ROW |33881 |29411 |4 |1 |100 |0 | |
+ROW |33882 |29412 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="softirq"} |0 | |
+ROW |33883 |29412 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33884 |29412 |3 |10 | |0 | |
+ROW |33885 |29412 |4 |1 |100 |0 | |
+ROW |33886 |29413 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="user"} |0 | |
+ROW |33887 |29413 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33888 |29413 |3 |10 | |0 | |
+ROW |33889 |29413 |4 |1 |100 |0 | |
+ROW |33890 |29414 |1 |22 |node_uname_info&bsn;nodename |0 | |
+ROW |33891 |29414 |2 |20 |1d |0 | |
+ROW |33892 |29415 |1 |22 |node_exporter_build_info&bsn;version |0 | |
+ROW |33893 |29415 |2 |20 |1d |0 | |
+ROW |33894 |29416 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
+ROW |33895 |29416 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33896 |29416 |3 |10 | |0 | |
+ROW |33897 |29416 |4 |1 |100 |0 | |
+ROW |33898 |29417 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
+ROW |33899 |29417 |2 |21 |//count the number of cores&bsn;return JSON.parse(value).length&bsn; |0 | |
+ROW |33900 |29418 |1 |22 |node_load15&bsn; |0 | |
+ROW |33901 |29419 |1 |22 |node_load5&bsn; |0 | |
+ROW |33902 |29420 |1 |22 |node_load1&bsn; |0 | |
+ROW |33903 |29421 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |33904 |29421 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
+ROW |33905 |29422 |1 |22 |node_uname_info&bsn;machine |0 | |
+ROW |33906 |29422 |2 |20 |1d |0 | |
+ROW |33907 |29423 |1 |22 |node_filefd_allocated&bsn; |0 | |
+ROW |33908 |29424 |1 |22 |node_filefd_maximum&bsn; |0 | |
+ROW |33909 |29424 |2 |20 |1d |0 | |
+ROW |33910 |29425 |1 |23 |node_uname_info |0 | |
+ROW |33911 |29425 |2 |21 |var info = JSON.parse(value)[0];&bsn; return info.labels.sysname+' version: '+info.labels.release+' '+info.labels.version |0 | |
+ROW |33912 |29425 |3 |20 |1d |0 | |
+ROW |33913 |29426 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="system"} |0 | |
+ROW |33914 |29426 |2 |21 |//calculates average, all cpu utilization&bsn;var valueArr = JSON.parse(value);&bsn;return valueArr.reduce(function(acc,obj){&bsn; return acc + parseFloat(obj['value'])&bsn;},0)/valueArr.length; |0 | |
+ROW |33915 |29426 |3 |10 | |0 | |
+ROW |33916 |29426 |4 |1 |100 |0 | |
+ROW |33917 |29427 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |33918 |29428 |1 |20 |1d |0 | |
+ROW |33919 |29429 |1 |23 |{__name__=~"^node_network_info$"} |0 | |
+ROW |33920 |29430 |1 |23 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint=~".+"} |0 | |
+ROW |33921 |29431 |1 |23 |node_disk_io_now{device=~".+"} |0 | |
+ROW |33922 |29436 |1 |22 |node_network_receive_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |33923 |29436 |2 |10 | |0 | |
+ROW |33924 |29436 |3 |1 |8 |0 | |
+ROW |33925 |29437 |1 |22 |node_network_transmit_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |33926 |29437 |2 |10 | |0 | |
+ROW |33927 |29437 |3 |1 |8 |0 | |
+ROW |33928 |29438 |1 |22 |node_network_transmit_errs_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |33929 |29438 |2 |10 | |0 | |
+ROW |33930 |29439 |1 |22 |node_network_receive_errs_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |33931 |29439 |2 |10 | |0 | |
+ROW |33932 |29440 |1 |22 |node_network_receive_drop_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |33933 |29440 |2 |10 | |0 | |
+ROW |33934 |29441 |1 |22 |node_network_transmit_drop_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |33935 |29441 |2 |10 | |0 | |
+ROW |33936 |29442 |1 |22 |node_network_speed_bytes{device="{#IFNAME}"}&bsn; |2 |0 |
+ROW |33937 |29442 |2 |1 |8 |0 | |
+ROW |33938 |29443 |1 |22 |node_network_protocol_type{device="{#IFNAME}"}&bsn; |0 | |
+ROW |33939 |29444 |1 |22 |node_network_info{device="{#IFNAME}"}&bsn;operstate |0 | |
+ROW |33940 |29444 |2 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |33941 |29445 |1 |22 |{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
+ROW |33942 |29446 |1 |22 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
+ROW |33943 |29447 |1 |23 |{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"} |0 | |
+ROW |33944 |29447 |2 |21 |//count vfs.fs.inode.pfree&bsn;var inode_free;&bsn;var inode_total;&bsn;JSON.parse(value).forEach(function(metric) {&bsn; if (metric['name'] == 'node_filesystem_files'){&bsn; inode_total = metric['value'];&bsn; } else if (metric['name'] == 'node_filesystem_files_free'){&bsn; inode_free = metric['value'];&bsn; }&bsn;});&bsn;return (inode_free/inode_total)*100; |0 | |
+ROW |33945 |29448 |1 |22 |node_disk_reads_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |33946 |29448 |2 |10 | |0 | |
+ROW |33947 |29449 |1 |22 |node_disk_writes_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |33948 |29449 |2 |10 | |0 | |
+ROW |33949 |29450 |1 |22 |node_disk_read_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |33950 |29450 |2 |10 | |0 | |
+ROW |33951 |29451 |1 |22 |node_disk_write_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |33952 |29451 |2 |10 | |0 | |
+ROW |33953 |29452 |1 |22 |node_disk_io_time_weighted_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |33954 |29452 |2 |10 | |0 | |
+ROW |33955 |29453 |1 |22 |node_disk_io_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |33956 |29453 |2 |10 | |0 | |
+ROW |33957 |29453 |3 |1 |100 |0 | |
+ROW |33958 |28979 |1 |1 |1024 |0 | |
+ROW |33959 |28980 |1 |1 |1024 |0 | |
+ROW |33960 |28981 |1 |1 |1024 |0 | |
+ROW |33961 |28982 |1 |1 |1024 |0 | |
+ROW |33962 |28984 |1 |1 |1024 |0 | |
+ROW |33963 |28985 |1 |1 |1024 |0 | |
+ROW |33964 |28990 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
+ROW |33965 |28991 |1 |10 | |0 | |
+ROW |33966 |28992 |1 |10 | |0 | |
+ROW |33967 |28994 |1 |1 |1024 |0 | |
+ROW |33968 |28995 |1 |1 |1024 |0 | |
+ROW |33969 |28996 |1 |1 |1024 |0 | |
+ROW |33970 |28997 |1 |1 |1024 |0 | |
+ROW |33971 |28999 |1 |1 |1024 |0 | |
+ROW |33972 |29000 |1 |1 |1024 |0 | |
+ROW |33973 |29005 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
+ROW |33974 |29006 |1 |10 | |0 | |
+ROW |33975 |29007 |1 |10 | |0 | |
+ROW |33976 |29009 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
+ROW |33977 |29012 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
+ROW |33978 |29014 |1 |10 | |0 | |
+ROW |33979 |29015 |1 |10 | |0 | |
+ROW |33980 |29017 |1 |10 | |0 | |
+ROW |33981 |29017 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33982 |29018 |1 |10 | |0 | |
+ROW |33983 |29018 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33984 |29019 |1 |10 | |0 | |
+ROW |33985 |29019 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33986 |29020 |1 |10 | |0 | |
+ROW |33987 |29020 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33988 |29021 |1 |10 | |0 | |
+ROW |33989 |29021 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33990 |29022 |1 |10 | |0 | |
+ROW |33991 |29022 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33992 |29023 |1 |10 | |0 | |
+ROW |33993 |29023 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33994 |29024 |1 |10 | |0 | |
+ROW |33995 |29024 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33996 |29025 |1 |10 | |0 | |
+ROW |33997 |29025 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |33998 |29026 |1 |10 | |0 | |
+ROW |33999 |29026 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34000 |29027 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |34001 |29028 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |34002 |29030 |1 |21 |return (100-value); |0 | |
+ROW |34003 |29031 |1 |10 | |0 | |
+ROW |34004 |29032 |1 |10 | |0 | |
+ROW |34005 |29034 |1 |10 | |0 | |
+ROW |34006 |29034 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34007 |29035 |1 |10 | |0 | |
+ROW |34008 |29035 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34009 |29036 |1 |10 | |0 | |
+ROW |34010 |29036 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34011 |29037 |1 |10 | |0 | |
+ROW |34012 |29037 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34013 |29038 |1 |10 | |0 | |
+ROW |34014 |29038 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34015 |29039 |1 |10 | |0 | |
+ROW |34016 |29039 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34017 |29040 |1 |10 | |0 | |
+ROW |34018 |29040 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34019 |29041 |1 |10 | |0 | |
+ROW |34020 |29041 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34021 |29042 |1 |10 | |0 | |
+ROW |34022 |29042 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34023 |29043 |1 |10 | |0 | |
+ROW |34024 |29043 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |34025 |29044 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |34026 |29045 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |34027 |29047 |1 |21 |return (100-value); |0 | |
+ROW |34028 |29048 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
+ROW |34029 |29049 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
+ROW |34030 |29474 |1 |20 |1d |0 | |
+ROW |34031 |29475 |1 |20 |1d |0 | |
+ROW |34032 |29478 |1 |20 |1d |0 | |
+ROW |34033 |29500 |1 |20 |1d |0 | |
+ROW |34034 |29501 |1 |20 |1d |0 | |
+ROW |34035 |29504 |1 |20 |1d |0 | |
+ROW |34036 |29507 |1 |21 |output = JSON.parse(value).map(function(dev){&bsn; return {&bsn; "{#DEVNAME}": dev.Name,&bsn; "{#DEVQUEUE}": dev.CurrentDiskQueueLength,&bsn; "{#DEVREADS}": dev.DiskReadsPersec,&bsn; "{#DEVTIME}": dev.PercentDiskTime,&bsn; "{#DEVWRITES}": dev.DiskWritesPersec&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |34037 |29507 |2 |20 |1h |0 | |
+ROW |34038 |29508 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFPHYSICALADAPTER}": net.PhysicalAdapter,&bsn; "{#IFALIAS}" : net.NetConnectionID,&bsn; "{#IFNETENABLED}": net.NetEnabled,&bsn; "{#IFNETSTATUS}": net.NetConnectionStatus,&bsn; "{#IFSPEED}": net.Speed&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |34039 |29508 |2 |20 |1h |0 | |
+ROW |34040 |29510 |1 |21 |output = JSON.parse(value).map(function(dev){&bsn; return {&bsn; "{#DEVNAME}": dev.Name,&bsn; "{#DEVQUEUE}": dev.CurrentDiskQueueLength,&bsn; "{#DEVREADS}": dev.DiskReadsPersec,&bsn; "{#DEVTIME}": dev.PercentDiskTime,&bsn; "{#DEVWRITES}": dev.DiskWritesPersec&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |34041 |29510 |2 |20 |1h |0 | |
+ROW |34042 |29511 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFPHYSICALADAPTER}": net.PhysicalAdapter,&bsn; "{#IFALIAS}" : net.NetConnectionID,&bsn; "{#IFNETENABLED}": net.NetEnabled,&bsn; "{#IFNETSTATUS}": net.NetConnectionStatus,&bsn; "{#IFSPEED}": net.Speed&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |34043 |29511 |2 |20 |1h |0 | |
+ROW |34044 |29515 |1 |10 | |0 | |
+ROW |34045 |29515 |2 |1 |8 |0 | |
+ROW |34046 |29516 |1 |10 | |0 | |
+ROW |34047 |29516 |2 |1 |8 |0 | |
+ROW |34048 |29517 |1 |10 | |0 | |
+ROW |34049 |29518 |1 |10 | |0 | |
+ROW |34050 |29519 |1 |10 | |0 | |
+ROW |34051 |29520 |1 |10 | |0 | |
+ROW |34052 |29524 |1 |10 | |0 | |
+ROW |34053 |29524 |2 |1 |8 |0 | |
+ROW |34054 |29525 |1 |10 | |0 | |
+ROW |34055 |29525 |2 |1 |8 |0 | |
+ROW |34056 |29526 |1 |10 | |0 | |
+ROW |34057 |29527 |1 |10 | |0 | |
+ROW |34058 |29528 |1 |10 | |0 | |
+ROW |34059 |29529 |1 |10 | |0 | |
+ROW |34060 |29530 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
+ROW |34061 |29531 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
+ROW |34062 |29532 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
+ROW |34063 |29533 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
+ROW |34064 |29534 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |34065 |29535 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |34066 |29536 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |34067 |29537 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
+ROW |34068 |29538 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
+ROW |34069 |29539 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
+ROW |34070 |29540 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
+ROW |34071 |29541 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |34072 |29542 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |34073 |29543 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |34074 |29581 |1 |20 |1d |0 | |
+ROW |34075 |29582 |1 |20 |1d |0 | |
+ROW |34076 |29585 |1 |20 |1d |0 | |
+ROW |34077 |29607 |1 |20 |1d |0 | |
+ROW |34078 |29608 |1 |20 |1d |0 | |
+ROW |34079 |29611 |1 |20 |1d |0 | |
+ROW |34080 |29614 |1 |21 |output = JSON.parse(value).map(function(dev){&bsn; return {&bsn; "{#DEVNAME}": dev.Name,&bsn; "{#DEVQUEUE}": dev.CurrentDiskQueueLength,&bsn; "{#DEVREADS}": dev.DiskReadsPersec,&bsn; "{#DEVTIME}": dev.PercentDiskTime,&bsn; "{#DEVWRITES}": dev.DiskWritesPersec&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |34081 |29614 |2 |20 |1h |0 | |
+ROW |34082 |29615 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFPHYSICALADAPTER}": net.PhysicalAdapter,&bsn; "{#IFALIAS}" : net.NetConnectionID,&bsn; "{#IFNETENABLED}": net.NetEnabled,&bsn; "{#IFNETSTATUS}": net.NetConnectionStatus,&bsn; "{#IFSPEED}": net.Speed&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |34083 |29615 |2 |20 |1h |0 | |
+ROW |34084 |29617 |1 |21 |output = JSON.parse(value).map(function(dev){&bsn; return {&bsn; "{#DEVNAME}": dev.Name,&bsn; "{#DEVQUEUE}": dev.CurrentDiskQueueLength,&bsn; "{#DEVREADS}": dev.DiskReadsPersec,&bsn; "{#DEVTIME}": dev.PercentDiskTime,&bsn; "{#DEVWRITES}": dev.DiskWritesPersec&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |34085 |29617 |2 |20 |1h |0 | |
+ROW |34086 |29618 |1 |21 |output = JSON.parse(value).map(function(net){&bsn; return {&bsn; "{#IFNAME}": net.Name,&bsn; "{#IFDESCR}": net.Description,&bsn; "{#IFPHYSICALADAPTER}": net.PhysicalAdapter,&bsn; "{#IFALIAS}" : net.NetConnectionID,&bsn; "{#IFNETENABLED}": net.NetEnabled,&bsn; "{#IFNETSTATUS}": net.NetConnectionStatus,&bsn; "{#IFSPEED}": net.Speed&bsn; }})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |34087 |29618 |2 |20 |1h |0 | |
+ROW |34088 |29622 |1 |10 | |0 | |
+ROW |34089 |29622 |2 |1 |8 |0 | |
+ROW |34090 |29623 |1 |10 | |0 | |
+ROW |34091 |29623 |2 |1 |8 |0 | |
+ROW |34092 |29624 |1 |10 | |0 | |
+ROW |34093 |29625 |1 |10 | |0 | |
+ROW |34094 |29626 |1 |10 | |0 | |
+ROW |34095 |29627 |1 |10 | |0 | |
+ROW |34096 |29631 |1 |10 | |0 | |
+ROW |34097 |29631 |2 |1 |8 |0 | |
+ROW |34098 |29632 |1 |10 | |0 | |
+ROW |34099 |29632 |2 |1 |8 |0 | |
+ROW |34100 |29633 |1 |10 | |0 | |
+ROW |34101 |29634 |1 |10 | |0 | |
+ROW |34102 |29635 |1 |10 | |0 | |
+ROW |34103 |29636 |1 |10 | |0 | |
+ROW |34104 |29637 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
+ROW |34105 |29638 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
+ROW |34106 |29639 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
+ROW |34107 |29640 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
+ROW |34108 |29641 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |34109 |29642 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |34110 |29643 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |34111 |29644 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
+ROW |34112 |29645 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
+ROW |34113 |29646 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
+ROW |34114 |29647 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
+ROW |34115 |29648 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |34116 |29649 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |34117 |29650 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |34118 |30688 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].state.text.first() |0 | |
+ROW |34119 |30688 |2 |20 |1d |0 | |
+ROW |34120 |30689 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].value.first() |0 | |
+ROW |34121 |30689 |2 |20 |1h |0 | |
+ROW |34122 |30073 |1 |20 |1d |0 | |
+ROW |34123 |30074 |1 |20 |1d |0 | |
+ROW |34124 |30079 |1 |1 |1048576 |0 | |
+ROW |34125 |30082 |1 |1 |1048576 |0 | |
+ROW |34126 |28342 |1 |20 |1d |0 | |
+ROW |34127 |28344 |1 |20 |1d |0 | |
+ROW |34128 |28345 |1 |20 |1d |0 | |
+ROW |34129 |30141 |1 |20 |1d |0 | |
+ROW |34130 |28354 |1 |1 |0.1 |0 | |
+ROW |34131 |28356 |1 |1 |0.1 |0 | |
+ROW |34132 |28367 |1 |1 |1048576 |0 | |
+ROW |34133 |28372 |1 |1 |1048576 |0 | |
+ROW |34134 |28390 |1 |20 |1d |0 | |
+ROW |34135 |28391 |1 |20 |1d |0 | |
+ROW |34136 |28422 |1 |1 |1048576 |0 | |
+ROW |34137 |28425 |1 |1 |1048576 |0 | |
+ROW |34138 |28438 |1 |20 |1d |0 | |
+ROW |34139 |28439 |1 |20 |1d |0 | |
+ROW |34140 |28451 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |0 | |
+ROW |34141 |28466 |1 |20 |1d |0 | |
+ROW |34142 |28467 |1 |20 |1d |0 | |
+ROW |34143 |28479 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |0 | |
TABLE |sysmap_shape
-FIELDS|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|
-ROW |1 |1 |0 |0|0|680 |15 |{MAP.NAME}|9 |11 |000000 |0 |0 |0 |0 |000000 | |0 |
+FIELDS|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|
+ROW |1 |1 |0 |0 |0 |680 |15 |{MAP.NAME}|9 |11 |000000 |0 |0 |0 |0 |000000 | |0 |
TABLE |lld_macro_path
FIELDS|lld_macro_pathid|itemid|lld_macro |path |