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-05-05 16:21:42 +0300
committerContinuous Integration <ci@zabbix.com>2020-05-05 16:21:42 +0300
commitffde654900686e3147817306f6c0b799bc50ca2d (patch)
tree773545187587b1e7da233afe8a0034e2adc191c3
parent9865a2b272c5b09e1d43cdff818834ada38b6da4 (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.0.0rc1
-rw-r--r--create/src/data.tmpl19
-rw-r--r--create/src/templates.tmpl26518
2 files changed, 13278 insertions, 13259 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index b60e436df2d..3f1e31fdc61 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -66,6 +66,7 @@ ROW |16 |4 |Telegram | | |
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; if (typeof Zendesk.HTTPProxy === 'string' && Zendesk.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Zendesk.HTTPProxy);&eol; }&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;&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; priority = params['severity_' + severities[params.event_nseverity].name] &pipe;&pipe; severities[7].name;&eol;&eol; Zendesk.setParams(zendesk);&eol; Zendesk.HTTPProxy = params.HTTPProxy;&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} | |
ROW |18 |4 |ServiceNow | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var ServiceNow = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; ServiceNow.params = params;&eol; if (typeof ServiceNow.params.url === 'string') {&eol; if (!ServiceNow.params.url.endsWith('/')) {&eol; ServiceNow.params.url += '/';&eol; }&eol;&eol; ServiceNow.params.url += 'api/now/table/incident';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; ServiceNow.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data[field] = (fields[field].match(/^\d{4}\.\d{2}\.\d{2}$/) !== null)&eol; ? fields[field].replace(/\./g, '-')&eol; : fields[field];&eol; });&eol; }&eol; },&eol;&eol; request: function (method, data) {&eol; ['url', 'user', 'password'].forEach(function (field) {&eol; if (typeof ServiceNow.params !== 'object' &pipe;&pipe; typeof ServiceNow.params[field] === 'undefined'&eol; &pipe;&pipe; ServiceNow.params[field] === '' ) {&eol; throw 'Required ServiceNow param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = ServiceNow.params.url,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(ServiceNow.params.user + ':' + ServiceNow.params.password));&eol;&eol; if (typeof ServiceNow.HTTPProxy !== 'undefined' && ServiceNow.HTTPProxy !== '') {&eol; request.SetProxy(ServiceNow.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Sending request: ' + url + ((typeof data === 'string')&eol; ? ('\n' + data)&eol; : ''));&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, '[ ServiceNow Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Failed to parse response received from ServiceNow');&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.error.message !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error.message);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol; else if (typeof response.result !== 'object' &pipe;&pipe; typeof response.result.sys_id === 'undefined') {&eol; throw 'Cannot create ServiceNow incident. Check debug log for more information.';&eol; }&eol;&eol; return response.result;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; servicenow = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'alert_message', 'event_source', 'event_value',&eol; 'event_update_status', 'event_recovery_value', 'event_nseverity'&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; method = 'post',&eol; process_tags = true;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('servicenow_')) {&eol; servicenow[key.substring(11)] = params[key];&eol; }&eol; else if (key.startsWith('u_')) {&eol; fields[key] = 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; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&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; data.short_description = params.alert_subject;&eol; data.description = params.alert_message;&eol;&eol; if (typeof params['urgency_for_' + severities[params.event_nseverity].name] !== 'undefined') {&eol; data.urgency = params['urgency_for_' + severities[params.event_nseverity].name];&eol; }&eol;&eol; ServiceNow.setParams(servicenow);&eol; ServiceNow.setProxy(params.HTTPProxy);&eol; ServiceNow.setFields(data, fields);&eol;&eol; if (params.event_source === '0' && (params.event_value === '0' &pipe;&pipe; params.event_update_status === '1')) {&eol; process_tags = false;&eol; method = 'put';&eol; delete data.description;&eol; delete data.urgency;&eol; ServiceNow.params.url += '/' + params.servicenow_sys_id;&eol; data.comments = params.alert_message;&eol; }&eol;&eol; var response = ServiceNow.request(method, data);&eol;&eol; if (process_tags) {&eol; result.tags.__zbx_servicenow_sys_id = response.sys_id;&eol; result.tags.__zbx_servicenow_link = params.servicenow_url +&eol; (params.servicenow_url.endsWith('/') ? '' : '/') + 'incident.do?sys_id=' + response.sys_id;&eol; result.tags.__zbx_servicenow_number = response.number;&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ServiceNow Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_servicenow_link} |ServiceNow: {EVENT.TAGS.__zbx_servicenow_number} | |
ROW |19 |4 |Zammad | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zammad = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zammad.params = params;&eol; if (typeof Zammad.params.url === 'string') {&eol; if (!Zammad.params.url.endsWith('/')) {&eol; Zammad.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_token'].forEach(function (field) {&eol; if (typeof Zammad.params !== 'object' &pipe;&pipe; typeof Zammad.params[field] === 'undefined'&eol; &pipe;&pipe; Zammad.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Zammad.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Zammad.HTTPProxy === 'string' && Zammad.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Zammad.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Token token=' + Zammad.params.access_token);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Zammad 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, '[ Zammad 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, '[ Zammad Webhook ] Failed to parse response received from Zammad');&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; setTicketTags: function(tags, ticket_id) {&eol; try {&eol; var tags_json = JSON.parse(tags),&eol; result;&eol;&eol; for (var i in tags_json) {&eol; result = Zammad.request('get',&eol; '/api/v1/tags/add?object=Ticket&o_id=' + ticket_id +&eol; '&item=' + tags_json[i].tag);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; result.status != 200) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Cannot add ticket tag:' + tags_json[i].tag);&eol; }&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Failed to add ticket tags:' + error);&eol; }&eol;&eol; return;&eol; },&eol;&eol; createTicket: function(subject, message, priority) {&eol; var data = {&eol; title: subject,&eol; group: 'Users',&eol; article: {&eol; subject: subject,&eol; body: message,&eol; type: 'note',&eol; internal: false&eol; },&eol; customer: Zammad.params.customer&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.priority_id = priority;&eol; }&eol;&eol; result = Zammad.request('post', 'api/v1/tickets', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zammad ticket. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateTicket: function(subject, message) {&eol; var data = {&eol; ticket_id: Zammad.params.ticket_id,&eol; subject: subject,&eol; body: message &pipe;&pipe; '',&eol; type: 'note',&eol; internal: false&eol; };&eol;&eol; result = Zammad.request('post', 'api/v1/ticket_articles', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot update Zammad ticket. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_zammad = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'customer',&eol; 'event_source', '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: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zammad_')) {&eol; params_zammad[key.substring(7)] = params[key].trim();&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.zammad_ticket_id)) &pipe;&pipe; parseInt(params.zammad_ticket_id) < 1 )) {&eol; throw 'Incorrect "zammad_ticket_id" parameter given: ' + params.zammad_ticket_id +&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; Zammad.setParams(params_zammad);&eol; Zammad.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create ticket for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Zammad.createTicket(params.alert_subject, params.alert_message, priority, params.event_tags);&eol; }&eol; // Create ticket for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var ticket_id = Zammad.createTicket(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;&eol; result.tags.__zbx_zammad_ticket_id = ticket_id;&eol; result.tags.__zbx_zammad_ticketlink = params.zammad_url +&eol; (params.zammad_url.endsWith('/') ? '' : '/') + '#ticket/zoom/' + ticket_id;&eol;&eol; if (Zammad.params.enable_tags.toLowerCase() === 'true') {&eol; Zammad.setTicketTags(params.event_tags, ticket_id);&eol; }&eol; }&eol; // Update created ticket for trigger-based event.&eol; else {&eol; Zammad.updateTicket(params.alert_subject, params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Zammad Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zammad_ticketlink} |Zammad: ticket #{EVENT.TAGS.__zbx_zammad_ticket_id} | |
+ROW |20 |4 |Jira ServiceDesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol; schema: {},&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/servicedeskapi/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (!Jira.schema) {&eol; Zabbix.Log(4, '[ Jira Service Desk Webhook ] Cannot add labels because failed to retrieve field schema.');&eol;&eol; return;&eol; }&eol;&eol; var block = Jira.schema.requestTypeFields.filter(function(object) {&eol; return object.fieldId == 'labels';&eol; });&eol;&eol; if (block[0] && 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 < 255) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; if (Jira.schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.requestFieldValues[field] = fields[field];&eol;&eol; var block = Jira.schema.requestTypeFields.filter(function(object) {&eol; return object.fieldId == field;&eol; });&eol;&eol; if (typeof block[0] === 'object' && typeof block[0].jiraSchema === 'object'&eol; && (block[0].jiraSchema.type === 'number' &pipe;&pipe; block[0].jiraSchema.type === 'datetime')) {&eol; switch (block[0].jiraSchema.type) {&eol; case 'number':&eol; data.requestFieldValues[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.requestFieldValues[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.requestFieldValues[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Service Desk Webhook ] Cannot add custom fields' +&eol; 'because failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'servicedesk_id', 'request_type_id'].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; request.AddHeader('X-ExperimentalApi: opt-in');&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 Service Desk Webhook ] Sending request: ' + url +&eol; ((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 Service Desk Webhook ] Received response with status code ' +&eol; 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 Service Desk 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.errorMessage !== 'undefined'&eol; && Object.keys(response.errorMessage).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessage);&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', 'servicedesk/' + Jira.params.servicedesk_id + '/requesttype/' +&eol; Jira.params.request_type_id + '/field');&eol;&eol; if (typeof Jira.schema !== 'object' && typeof Jira.schema.requestTypeFields !== 'object') {&eol; Jira.schema = null;&eol; }&eol; else {&eol; Jira.schema = result.response;&eol; }&eol; },&eol;&eol; createRequest: function(summary, description, fields) {&eol; var data = {&eol; serviceDeskId: Jira.params.servicedesk_id,&eol; requestTypeId: Jira.params.request_type_id,&eol; requestFieldValues: {&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.requestFieldValues.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'request', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.issueKey === 'undefined') {&eol; throw 'Cannot create Jira request. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issueKey;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; comment = {public: true},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'alert_message', 'event_source', 'event_value',&eol; 'event_update_status', 'event_recovery_value'&eol; ];&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 (required_params.indexOf(key) !== -1 && params[key] === '') {&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_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.getSchema();&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create request for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createRequest(params.alert_subject, params.alert_message);&eol; }&eol; // Create request for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0'&eol; && jira.request_key === '{EVENT.TAGS.__zbx_jira_requestkey}') {&eol; var key = Jira.createRequest(params.alert_subject, params.alert_message, fields);&eol;&eol; result.tags.__zbx_jira_requestkey = key;&eol; result.tags.__zbx_jira_requestlink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Comment created request for trigger-based event.&eol; else {&eol; if (jira.request_key === '{EVENT.TAGS.__zbx_jira_requestkey}' &pipe;&pipe; jira.request_key.trim() === '') {&eol; throw 'Incorrect Request key given: ' + jira.request_key;&eol; }&eol; comment.body = params.alert_message;&eol; Jira.request('post', 'request/' + Jira.params.request_key + '/comment', comment);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Service Desk Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_requestlink} |Jira ServiceDesk: {EVENT.TAGS.__zbx_jira_requestkey} | |
TABLE |media_type_param
FIELDS|mediatype_paramid|mediatypeid|name |value |
@@ -334,6 +335,19 @@ ROW |266 |19 |zammad_customer
ROW |267 |19 |zammad_enable_tags |true |
ROW |268 |19 |zammad_ticket_id |{EVENT.TAGS.__zbx_zammad_ticket_id} |
ROW |269 |19 |zammad_url |<PUT YOUR ZAMMAD URL> |
+ROW |270 |20 |alert_message |{ALERT.MESSAGE} |
+ROW |271 |20 |alert_subject |{ALERT.SUBJECT} |
+ROW |272 |20 |event_recovery_value |{EVENT.RECOVERY.VALUE} |
+ROW |273 |20 |event_source |{EVENT.SOURCE} |
+ROW |274 |20 |event_tags_json |{EVENT.TAGSJSON} |
+ROW |275 |20 |event_update_status |{EVENT.UPDATE.STATUS} |
+ROW |276 |20 |event_value |{EVENT.VALUE} |
+ROW |277 |20 |jira_password |<PLACE PASSWORD OR TOKEN> |
+ROW |278 |20 |jira_request_key |{EVENT.TAGS.__zbx_jira_requestkey} |
+ROW |279 |20 |jira_request_type_id |<PLACE REQUEST TYPE ID> |
+ROW |280 |20 |jira_servicedesk_id |<PLACE SERVICEDESK ID> |
+ROW |281 |20 |jira_url |<PLACE YOUR JIRA URL> |
+ROW |282 |20 |jira_user |<PLACE LOGIN> |
TABLE |media_type_message
FIELDS|mediatype_messageid|mediatypeid|eventsource|recovery|subject |message |
@@ -398,6 +412,11 @@ ROW |58 |19 |0 |1 |Resolved: {EVENT.NAM
ROW |59 |19 |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 |60 |19 |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 |61 |19 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |62 |20 |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 |63 |20 |0 |1 |{EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} 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 |64 |20 |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 |65 |20 |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 |66 |20 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
TABLE |usrgrp
FIELDS|usrgrpid|name |gui_access|users_status|debug_mode|
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index 5b8217480d2..62f4edb9d29 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -18,164 +18,164 @@
--
TABLE |hosts
-FIELDS|hostid|proxy_hostid|host |status|ipmi_authtype|ipmi_privilege|ipmi_username|ipmi_password|name |flags|templateid|description |tls_connect|tls_accept|tls_issuer|tls_subject|tls_psk_identity|tls_psk|proxy_address|auto_compress|
-ROW |10001 |NULL |Template OS Linux by Zabbix agent |3 |-1 |2 | | |Template OS Linux by Zabbix agent |0 |NULL |Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.&eol;&eol;Known Issues:&eol;&eol; Description: Network discovery. Zabbix agent as of 4.2 doesn't support items such as net.if.status, net.if.speed.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10047 |NULL |Template App Zabbix Server |3 |-1 |2 | | |Template App Zabbix Server |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10048 |NULL |Template App Zabbix Proxy |3 |-1 |2 | | |Template App Zabbix Proxy |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10050 |NULL |Template Module Zabbix agent |3 |-1 |2 | | |Template Module Zabbix agent |0 |NULL |Use this template for agents reachable from Zabbix server/proxy (passive mode).&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10074 |NULL |Template OS OpenBSD |3 |-1 |2 | | |Template OS OpenBSD |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10075 |NULL |Template OS FreeBSD |3 |-1 |2 | | |Template OS FreeBSD |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10076 |NULL |Template OS AIX |3 |-1 |2 | | |Template OS AIX |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10077 |NULL |Template OS HP-UX |3 |-1 |2 | | |Template OS HP-UX |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10078 |NULL |Template OS Solaris |3 |-1 |2 | | |Template OS Solaris |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10079 |NULL |Template OS Mac OS X |3 |-1 |2 | | |Template OS Mac OS X |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10081 |NULL |Template OS Windows by Zabbix agent |3 |-1 |2 | | |Template OS Windows by Zabbix agent |0 |NULL |Official Windows template. Requires agent of Zabbix 4.4 and newer.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10084 |NULL |Zabbix server |0 |-1 |2 | | |Zabbix server |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10093 |NULL |Template App FTP Service |3 |-1 |2 | | |Template App FTP Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10094 |NULL |Template App HTTP Service |3 |-1 |2 | | |Template App HTTP Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10095 |NULL |Template App HTTPS Service |3 |-1 |2 | | |Template App HTTPS Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10096 |NULL |Template App IMAP Service |3 |-1 |2 | | |Template App IMAP Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10097 |NULL |Template App LDAP Service |3 |-1 |2 | | |Template App LDAP Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10098 |NULL |Template App NNTP Service |3 |-1 |2 | | |Template App NNTP Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10099 |NULL |Template App NTP Service |3 |-1 |2 | | |Template App NTP Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10100 |NULL |Template App POP Service |3 |-1 |2 | | |Template App POP Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10101 |NULL |Template App SMTP Service |3 |-1 |2 | | |Template App SMTP Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10102 |NULL |Template App SSH Service |3 |-1 |2 | | |Template App SSH Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10103 |NULL |Template App Telnet Service |3 |-1 |2 | | |Template App Telnet Service |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10169 |NULL |Template App Generic Java JMX |3 |-1 |2 | | |Template App Generic Java JMX |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10170 |NULL |Template DB MySQL |3 |-1 |2 | | |Template DB MySQL |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> |1 |1 | | | | | |1 |
-ROW |10171 |NULL |Template Server Intel SR1530 IPMI |3 |-1 |2 | | |Template Server Intel SR1530 IPMI |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10172 |NULL |Template Server Intel SR1630 IPMI |3 |-1 |2 | | |Template Server Intel SR1630 IPMI |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10173 |NULL |Template VM VMware |3 |-1 |2 | | |Template VM VMware |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10174 |NULL |Template VM VMware Guest |3 |-1 |2 | | |Template VM VMware Guest |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10175 |NULL |Template VM VMware Hypervisor |3 |-1 |2 | | |Template VM VMware Hypervisor |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10176 |NULL |{#HV.UUID} |0 |-1 |2 | | |{#HV.NAME} |2 |NULL | |1 |1 | | | | | |1 |
-ROW |10177 |NULL |{#VM.UUID} |0 |-1 |2 | | |{#VM.NAME} |2 |NULL | |1 |1 | | | | | |1 |
-ROW |10182 |NULL |Template Module EtherLike-MIB SNMPv1 |3 |-1 |2 | | |Template Module EtherLike-MIB SNMPv1 |0 |NULL |Template EtherLike-MIB (duplex control only)&eol;&eol;MIBs used:&eol;EtherLike-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10183 |NULL |Template Module EtherLike-MIB SNMPv2 |3 |-1 |2 | | |Template Module EtherLike-MIB SNMPv2 |0 |NULL |Template EtherLike-MIB (duplex control only)&eol;&eol;MIBs used:&eol;EtherLike-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10184 |NULL |Template Module HOST-RESOURCES-MIB SNMPv1 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB SNMPv1 |0 |NULL |HOST-RESOURCES-MIB: CPU, memory and storage(vfs.fs.file) linked together.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10185 |NULL |Template Module HOST-RESOURCES-MIB SNMPv2 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB SNMPv2 |0 |NULL |HOST-RESOURCES-MIB: CPU, memory and storage(vfs.fs.file) linked together.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10186 |NULL |Template Module ICMP Ping |3 |-1 |2 | | |Template Module ICMP Ping |0 |NULL |Template Module ICMP Ping&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10187 |NULL |Template Module Interfaces Simple SNMPv1 |3 |-1 |2 | | |Template Module Interfaces Simple SNMPv1 |0 |NULL |Template Module Interfaces Simple (no ifXTable). This is the exact copy of Template Module Interfaces template with the exception that metrics from ifXTable are replaced with ifTable counters where possible. Use this template with devices where IF-MIB::ifXtable is not available. If supported by the host - use Template Module Interfaces template instead.&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since there is no ifXtable available). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10188 |NULL |Template Module Interfaces Simple SNMPv2 |3 |-1 |2 | | |Template Module Interfaces Simple SNMPv2 |0 |NULL |Template Module Interfaces Simple (no ifXTable). This is the exact copy of Template Module Interfaces template with the exception that metrics from ifXTable are replaced with ifTable counters where possible. Use this template with devices where IF-MIB::ifXtable is not available. If supported by the host - use Template Module Interfaces template instead.&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since there is no ifXtable available). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10189 |NULL |Template Module Interfaces SNMPv1 |3 |-1 |2 | | |Template Module Interfaces SNMPv1 |0 |NULL |Template Module Interfaces&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10190 |NULL |Template Module Interfaces SNMPv2 |3 |-1 |2 | | |Template Module Interfaces SNMPv2 |0 |NULL |Template Module Interfaces&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10192 |NULL |Template Module Interfaces Windows SNMPv2 |3 |-1 |2 | | |Template Module Interfaces Windows SNMPv2 |0 |NULL |Template Interfaces Windows&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since 64bit are not supported by Windows OS). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10203 |NULL |Template Module Generic SNMPv1 |3 |-1 |2 | | |Template Module Generic SNMPv1 |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10204 |NULL |Template Module Generic SNMPv2 |3 |-1 |2 | | |Template Module Generic SNMPv2 |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10207 |NULL |Template Net Alcatel Timetra TiMOS SNMPv2 |3 |-1 |2 | | |Template Net Alcatel Timetra TiMOS SNMPv2 |0 |NULL |Template Net Alcatel Timetra TiMOS&eol;&eol;MIBs used:&eol;TIMETRA-CHASSIS-MIB&eol;TIMETRA-SYSTEM-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10208 |NULL |Template Net Brocade FC SNMPv2 |3 |-1 |2 | | |Template Net Brocade FC SNMPv2 |0 |NULL |Template Net Brocade FC&eol;&eol;MIBs used:&eol;SW-MIB&eol;&eol;Known Issues:&eol;&eol; Description: no IF-MIB::ifAlias is available&eol; Version: v6.3.1c, v7.0.0c, v7.4.1c&eol; Device: all&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10209 |NULL |Template Module Brocade_Foundry Performance SNMPv2 |3 |-1 |2 | | |Template Module Brocade_Foundry Performance SNMPv2 |0 |NULL |Template Module Brocade_Foundry Performance&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10210 |NULL |Template Net Brocade_Foundry Nonstackable SNMPv2 |3 |-1 |2 | | |Template Net Brocade_Foundry Nonstackable SNMPv2 |0 |NULL |Template Net Brocade_Foundry Nonstackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10211 |NULL |Template Net Brocade_Foundry Stackable SNMPv2 |3 |-1 |2 | | |Template Net Brocade_Foundry Stackable SNMPv2 |0 |NULL |Template Brocade_Foundry Stackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;FOUNDRY-SN-STACKING-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Correct fan(returns fan status as 'other(1)' and temperature (returns 0) for the non-master Switches are not available in SNMP&eol; Version: Version 08.0.40b and above&eol; Device: ICX 7750 in stack&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10212 |NULL |Template Module Cisco CISCO-MEMORY-POOL-MIB SNMPv2 |3 |-1 |2 | | |Template Module Cisco CISCO-MEMORY-POOL-MIB SNMPv2 |0 |NULL |Template Cisco CISCO-MEMORY-POOL-MIB&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10213 |NULL |Template Module Cisco CISCO-PROCESS-MIB SNMPv2 |3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB SNMPv2 |0 |NULL |Template Cisco CISCO-PROCESS-MIB&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10215 |NULL |Template Module Cisco OLD-CISCO-CPU-MIB SNMPv2 |3 |-1 |2 | | |Template Module Cisco OLD-CISCO-CPU-MIB SNMPv2 |0 |NULL |Template Cisco OLD-CISCO-CPU-MIB&eol;&eol;MIBs used:&eol;OLD-CISCO-CPU-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10216 |NULL |Template Module Cisco Inventory SNMPv2 |3 |-1 |2 | | |Template Module Cisco Inventory SNMPv2 |0 |NULL |Template Cisco Inventory&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10217 |NULL |Template Module Cisco CISCO-ENVMON-MIB SNMPv2 |3 |-1 |2 | | |Template Module Cisco CISCO-ENVMON-MIB SNMPv2 |0 |NULL |Template Cisco CISCO-ENVMON-MIB&eol;&eol;MIBs used:&eol;CISCO-ENVMON-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10218 |NULL |Template Net Cisco IOS SNMPv2 |3 |-1 |2 | | |Template Net Cisco IOS SNMPv2 |0 |NULL |Template Cisco IOS Software releases 12.2(3.5) or later&eol;&eol;Known Issues:&eol;&eol; Description: no if(in&pipe;out)(Errors&pipe;Discards) are available for vlan ifType&eol; Version: IOS for example: 12.1(22)EA11, 15.4(3)M2&eol; Device: C2911, C7600&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10220 |NULL |Template Net Cisco IOS prior to 12.0_3_T SNMPv2 |3 |-1 |2 | | |Template Net Cisco IOS prior to 12.0_3_T SNMPv2 |0 |NULL |Cisco IOS Software releases prior to 12.0(3)T&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10221 |NULL |Template Net Dell Force S-Series SNMPv2 |3 |-1 |2 | | |Template Net Dell Force S-Series SNMPv2 |0 |NULL |Template Dell Force S-Series&eol;&eol;MIBs used:&eol;F10-S-SERIES-CHASSIS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10222 |NULL |Template Net D-Link DES 7200 SNMPv2 |3 |-1 |2 | | |Template Net D-Link DES 7200 SNMPv2 |0 |NULL |Template D-Link DES 7200&eol;&eol;MIBs used:&eol;MY-PROCESS-MIB&eol;SNMPv2-MIB&eol;MY-MEMORY-MIB&eol;ENTITY-MIB&eol;MY-SYSTEM-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10223 |NULL |Template Net D-Link DES_DGS Switch SNMPv2 |3 |-1 |2 | | |Template Net D-Link DES_DGS Switch SNMPv2 |0 |NULL |Template D-Link DES_DGS Switch&eol;&eol;MIBs used:&eol;DLINK-AGENT-MIB&eol;SNMPv2-MIB&eol;ENTITY-MIB&eol;EQUIPMENT-MIB&eol;&eol;Known Issues:&eol;&eol; Description: D-Link reports missing PSU as fail(4)&eol; Version: Firmware: 1.73R008,hardware revision: B1&eol; Device: DGS-3420-26SC Gigabit Ethernet Switch&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10224 |NULL |Template Net Extreme EXOS SNMPv2 |3 |-1 |2 | | |Template Net Extreme EXOS SNMPv2 |0 |NULL |Template Extreme EXOS&eol;&eol;MIBs used:&eol;EXTREME-SOFTWARE-MONITOR-MIB&eol;EXTREME-SYSTEM-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10225 |NULL |Template Net Network Generic Device SNMPv1 |3 |-1 |2 | | |Template Net Network Generic Device SNMPv1 |0 |NULL |Template Net Network Generic Device&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10226 |NULL |Template Net Network Generic Device SNMPv2 |3 |-1 |2 | | |Template Net Network Generic Device SNMPv2 |0 |NULL |Template Net Network Generic Device&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10227 |NULL |Template Net HP Comware HH3C SNMPv2 |3 |-1 |2 | | |Template Net HP Comware HH3C SNMPv2 |0 |NULL |Template Net HP Comware (HH3C)&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;HH3C-ENTITY-EXT-MIB&eol;&eol;Known Issues:&eol;&eol; Description: No temperature sensors. All entities of them return 0 for HH3C-ENTITY-EXT-MIB::hh3cEntityExtTemperature&eol; Version: 1910-48 Switch Software Version 5.20.99, Release 1116 Copyright(c)2010-2016 Hewlett Packard Enterprise Development LP&eol; Device: HP 1910-48&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10229 |NULL |Template Net Huawei VRP SNMPv2 |3 |-1 |2 | | |Template Net Huawei VRP SNMPv2 |0 |NULL |Template Net Huawei VRP&eol;&eol;MIBs used:&eol;HUAWEI-ENTITY-EXTENT-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10230 |NULL |Template Net Intel_Qlogic Infiniband SNMPv2 |3 |-1 |2 | | |Template Net Intel_Qlogic Infiniband SNMPv2 |0 |NULL |Template Net Intel_Qlogic Infiniband&eol;&eol;MIBs used:&eol;ICS-CHASSIS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10231 |NULL |Template Net Juniper SNMPv2 |3 |-1 |2 | | |Template Net Juniper SNMPv2 |0 |NULL |Template Net Juniper&eol;&eol;MIBs used:&eol;JUNIPER-ALARM-MIB&eol;JUNIPER-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10233 |NULL |Template Net Mikrotik SNMPv2 |3 |-1 |2 | | |Template Net Mikrotik SNMPv2 |0 |NULL |Template Net Mikrotik&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;MIKROTIK-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't have ifHighSpeed filled. fixed in more recent versions&eol; Version: RouterOS 6.28 or lower&eol;&eol; Description: Doesn't have any temperature sensors&eol; Version: RouterOS 6.38.5&eol; Device: Mikrotik 941-2nD, Mikrotik 951G-2HnD&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10234 |NULL |Template Net Netgear Fastpath SNMPv2 |3 |-1 |2 | | |Template Net Netgear Fastpath SNMPv2 |0 |NULL |Template Net Netgear Fastpath&eol;&eol;MIBs used:&eol;FASTPATH-SWITCHING-MIB&eol;FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10235 |NULL |Template Net QTech QSW SNMPv2 |3 |-1 |2 | | |Template Net QTech QSW SNMPv2 |0 |NULL |Template Net QTech QSW&eol;&eol;MIBs used:&eol;QTECH-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10236 |NULL |Template Net TP-LINK SNMPv2 |3 |-1 |2 | | |Template Net TP-LINK SNMPv2 |0 |NULL |Template Net TP-LINK JetStream&eol;&eol;MIBs used:&eol;TPLINK-SYSINFO-MIB&eol;TPLINK-SYSMONITOR-MIB&eol;&eol;Known Issues:&eol;&eol; Description: default sysLocation, sysName and sysContact is not filled with proper data. Real hostname and location can be found only in private branch(TPLINK-SYSINFO-MIB). Please check whether this problem exists in the latest firware: http://www.tp-linkru.com/download/T2600G-28TS.html#Firmware&eol; Version: 2.0.0 Build 20170628 Rel.55184(Beta)&eol; Device: T2600G-28TS 2.0&eol;&eol; Description: The Serial number of the product(tpSysInfoSerialNum) is missing in HW versions prior to V2_170323&eol; Version: prior to version V2_170323&eol; Device: T2600G-28TS 2.0&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10237 |NULL |Template Net Ubiquiti AirOS SNMPv1 |3 |-1 |2 | | |Template Net Ubiquiti AirOS SNMPv1 |0 |NULL |Template Net Ubiquiti AirOS&eol;&eol;MIBs used:&eol;IEEE802dot11-MIB&eol;FROGFOOT-RESOURCES-MIB&eol;&eol;Known Issues:&eol;&eol; Description: UBNT unifi reports speed: like IF-MIB::ifSpeed.1 = Gauge32: 4294967295 for all interfaces&eol; Version: Firmware: BZ.ar7240.v3.7.51.6230.170322.1513&eol; Device: UBNT UAP-LR&eol;&eol; Description: UBNT AirMax(NanoStation, NanoBridge etc) reports ifSpeed: as 0 for VLAN and wireless(ath0) interfaces&eol; Version: Firmware: XW.ar934x.v5.6-beta4.22359.140521.1836&eol; Device: NanoStation M5&eol;&eol; Description: UBNT AirMax(NanoStation, NanoBridge etc) reports always return ifType: as ethernet(6) even for wifi,vlans and other types&eol; Version: Firmware: XW.ar934x.v5.6-beta4.22359.140521.1836&eol; Device: NanoStation M5&eol;&eol; Description: ifXTable is not provided in IF-MIB. So Interfaces Simple Template is used instead&eol; Version: all above&eol; Device: NanoStation, UAP-LR&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10248 |NULL |Template OS Linux SNMPv2 |3 |-1 |2 | | |Template OS Linux SNMPv2 |0 |NULL |Template OS Linux&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10249 |NULL |Template OS Windows SNMPv2 |3 |-1 |2 | | |Template OS Windows SNMPv2 |0 |NULL |Official Windows SNMP template. Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't support In/Out 64 bit counters even though IfxTable is present:&eol;Currently, Windows gets it’s interface status from MIB-2. Since these 64bit SNMP counters (ifHCInOctets, ifHCOutOctets, etc.) are defined as an extension to IF-MIB, Microsoft has not implemented it.&eol;https://social.technet.microsoft.com/Forums/windowsserver/en-US/07b62ff0-94f6-40ca-a99d-d129c1b33d70/windows-2008-r2-snmp-64bit-counters-support?forum=winservergen&eol;&eol; Version: Win2008, Win2012R2.&eol;&eol; Description: Doesn't support ifXTable at all&eol; Version: WindowsXP&eol;&eol; Description: EtherLike MIB is not supported&eol; Version: *&eol; Device: *&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10250 |NULL |Template Net HP Enterprise Switch SNMPv2 |3 |-1 |2 | | |Template Net HP Enterprise Switch SNMPv2 |0 |NULL |Template Net HP Enterprise Switch&eol;&eol;MIBs used:&eol;SEMI-MIB&eol;NETSWITCH-MIB&eol;HP-ICF-CHASSIS&eol;ENTITY-SENSORS-MIB&eol;ENTITY-MIB&eol;STATISTICS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10251 |NULL |Template Net Mellanox SNMPv2 |3 |-1 |2 | | |Template Net Mellanox SNMPv2 |0 |NULL |Template Net Mellanox&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10252 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMPv2|3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMPv2|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10253 |NULL |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMPv2 |3 |-1 |2 | | |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMPv2 |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10254 |NULL |Template Net Arista SNMPv2 |3 |-1 |2 | | |Template Net Arista SNMPv2 |0 |NULL |Template Net Arista&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10255 |NULL |Template Server Dell iDRAC SNMPv2 |3 |-1 |2 | | |Template Server Dell iDRAC SNMPv2 |0 |NULL |Template Server iDRAC&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10256 |NULL |Template Server HP iLO SNMPv2 |3 |-1 |2 | | |Template Server HP iLO SNMPv2 |0 |NULL |Template Server HP iLO&eol;&eol;MIBs used:&eol;CPQSINFO-MIB&eol;CPQHLTH-MIB&eol;CPQIDA-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10257 |NULL |Template Server IBM IMM SNMPv1 |3 |-1 |2 | | |Template Server IBM IMM SNMPv1 |0 |NULL |Template Server IBM IMM&eol;&eol;MIBs used:&eol;IMM-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Some IMMs (IMM1) do not return disks&eol; Version: IMM1&eol; Device: IBM x3250M3&eol;&eol; Description: Some IMMs (IMM1) do not return fan status: fanHealthStatus&eol; Version: IMM1&eol; Device: IBM x3250M3&eol;&eol; Description: IMM1 servers (M2, M3 generations) sysObjectID is NET-SNMP-MIB::netSnmpAgentOIDs.10&eol; Version: IMM1&eol; Device: IMM1 servers (M2,M3 generations)&eol;&eol; Description: IMM1 servers (M2, M3 generations) only Ambient temperature sensor available&eol; Version: IMM1&eol; Device: IMM1 servers (M2,M3 generations)&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10258 |NULL |Template Server IBM IMM SNMPv2 |3 |-1 |2 | | |Template Server IBM IMM SNMPv2 |0 |NULL |Template Server IBM IMM&eol;&eol;MIBs used:&eol;IMM-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Some IMMs (IMM1) do not return disks&eol; Version: IMM1&eol; Device: IBM x3250M3&eol;&eol; Description: Some IMMs (IMM1) do not return fan status: fanHealthStatus&eol; Version: IMM1&eol; Device: IBM x3250M3&eol;&eol; Description: IMM1 servers (M2, M3 generations) sysObjectID is NET-SNMP-MIB::netSnmpAgentOIDs.10&eol; Version: IMM1&eol; Device: IMM1 servers (M2,M3 generations)&eol;&eol; Description: IMM1 servers (M2, M3 generations) only Ambient temperature sensor available&eol; Version: IMM1&eol; Device: IMM1 servers (M2,M3 generations)&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10259 |NULL |Template Server Supermicro Aten SNMPv2 |3 |-1 |2 | | |Template Server Supermicro Aten SNMPv2 |0 |NULL |Template Server Supermicro Aten&eol;&eol;MIBs used:&eol;ATEN-IPMI-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10260 |NULL |Template App Apache Tomcat JMX |3 |-1 |2 | | |Template App Apache Tomcat JMX |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10261 |NULL |Template App Remote Zabbix server |3 |-1 |2 | | |Template App Remote Zabbix server |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10262 |NULL |Template App Remote Zabbix proxy |3 |-1 |2 | | |Template App Remote Zabbix proxy |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10263 |NULL |Template DB PostgreSQL |3 |-1 |2 | | |Template DB PostgreSQL |0 |NULL | |1 |1 | | | | | |1 |
-ROW |10264 |NULL |Template App Apache by Zabbix agent |3 |-1 |2 | | |Template App Apache by Zabbix agent |0 |NULL |Get metrics from mod_status module using HTTP agent.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10265 |NULL |Template App Apache by HTTP |3 |-1 |2 | | |Template App Apache by HTTP |0 |NULL |Get metrics from mod_status module using HTTP agent.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10266 |NULL |Template App Nginx by Zabbix agent |3 |-1 |2 | | |Template App Nginx by Zabbix agent |0 |NULL |Get metrics from stub status module using Zabbix agent running on Linux&eol;https://nginx.ru/en/docs/http/ngx_http_stub_status_module.html&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10267 |NULL |Template App Nginx by HTTP |3 |-1 |2 | | |Template App Nginx by HTTP |0 |NULL |Get metrics from stub status module using HTTP agent&eol;https://nginx.ru/en/docs/http/ngx_http_stub_status_module.html.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10268 |NULL |Template Module Linux memory SNMPv2 |3 |-1 |2 | | |Template Module Linux memory SNMPv2 |0 |NULL |MIBs used:&eol;UCD-SNMP-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10269 |NULL |Template Module Linux block devices SNMPv2 |3 |-1 |2 | | |Template Module Linux block devices SNMPv2 |0 |NULL |MIBs used:&eol;UCD-DISKIO-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10270 |NULL |Template Module Linux CPU SNMPv2 |3 |-1 |2 | | |Template Module Linux CPU SNMPv2 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;UCD-SNMP-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10271 |NULL |Template Module Linux filesystems SNMPv2 |3 |-1 |2 | | |Template Module Linux filesystems SNMPv2 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;UCD-SNMP-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10272 |NULL |Template Module Linux CPU by Zabbix agent |3 |-1 |2 | | |Template Module Linux CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10273 |NULL |Template Module Linux filesystems by Zabbix agent |3 |-1 |2 | | |Template Module Linux filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10274 |NULL |Template Module Linux memory by Zabbix agent |3 |-1 |2 | | |Template Module Linux memory by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10275 |NULL |Template Module Linux block devices by Zabbix agent |3 |-1 |2 | | |Template Module Linux block devices by Zabbix agent |0 |NULL |Known Issues:&eol;&eol; Description: If having problems accessing /proc/diskstats on CloudLinux, please read this https://docs.cloudlinux.com/cloudlinux_os_kernel/#virtualized-proc-filesystem.&eol; Device: CloudLinux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10276 |NULL |Template Module Linux network interfaces by Zabbix agent |3 |-1 |2 | | |Template Module Linux network interfaces by Zabbix agent |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10277 |NULL |Template Module Linux generic by Zabbix agent |3 |-1 |2 | | |Template Module Linux generic by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10278 |NULL |Template Module Linux CPU by Zabbix agent active |3 |-1 |2 | | |Template Module Linux CPU by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10279 |NULL |Template Module Linux filesystems by Zabbix agent active |3 |-1 |2 | | |Template Module Linux filesystems by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10280 |NULL |Template Module Linux memory by Zabbix agent active |3 |-1 |2 | | |Template Module Linux memory by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10281 |NULL |Template Module Linux block devices by Zabbix agent active |3 |-1 |2 | | |Template Module Linux block devices by Zabbix agent active |0 |NULL |Known Issues:&eol;&eol; Description: If having problems accessing /proc/diskstats on CloudLinux, please read this https://docs.cloudlinux.com/cloudlinux_os_kernel/#virtualized-proc-filesystem.&eol; Device: CloudLinux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10282 |NULL |Template Module Linux network interfaces by Zabbix agent active |3 |-1 |2 | | |Template Module Linux network interfaces by Zabbix agent active |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10283 |NULL |Template Module Linux generic by Zabbix agent active |3 |-1 |2 | | |Template Module Linux generic by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10284 |NULL |Template OS Linux by Zabbix agent active |3 |-1 |2 | | |Template OS Linux by Zabbix agent active |0 |NULL |Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.&eol;&eol;Known Issues:&eol;&eol; Description: Network discovery. Zabbix agent as of 4.2 doesn't support items such as net.if.status, net.if.speed.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10285 |NULL |Template OS Linux by Prom |3 |-1 |2 | | |Template OS Linux by Prom |0 |NULL |Official Linux template using node exporter.&eol;&eol;Known Issues:&eol;&eol; Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for 'guest' and 'guest_nice' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as 'best effort'. &eol; See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.&eol; Version: below 0.16.0&eol;&eol; Description: metric node_network_info with label 'device' cannot be found, so network discovery is not possible.&eol; Version: below 0.18&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10286 |NULL |Template Module Windows CPU by Zabbix agent |3 |-1 |2 | | |Template Module Windows CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10287 |NULL |Template Module Windows memory by Zabbix agent |3 |-1 |2 | | |Template Module Windows memory by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10288 |NULL |Template Module Windows filesystems by Zabbix agent |3 |-1 |2 | | |Template Module Windows filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10289 |NULL |Template Module Windows physical disks by Zabbix agent |3 |-1 |2 | | |Template Module Windows physical disks by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10290 |NULL |Template Module Windows generic by Zabbix agent |3 |-1 |2 | | |Template Module Windows generic by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10291 |NULL |Template Module Windows network by Zabbix agent |3 |-1 |2 | | |Template Module Windows network by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10292 |NULL |Template Module Zabbix agent active |3 |-1 |2 | | |Template Module Zabbix agent active |0 |NULL |Use this template instead of 'Template Module Zabbix agent' for agents running in active mode only.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10293 |NULL |Template Module Windows CPU by Zabbix agent active |3 |-1 |2 | | |Template Module Windows CPU by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10294 |NULL |Template Module Windows memory by Zabbix agent active |3 |-1 |2 | | |Template Module Windows memory by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10295 |NULL |Template Module Windows filesystems by Zabbix agent active |3 |-1 |2 | | |Template Module Windows filesystems by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10296 |NULL |Template Module Windows physical disks by Zabbix agent active |3 |-1 |2 | | |Template Module Windows physical disks by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10297 |NULL |Template Module Windows generic by Zabbix agent active |3 |-1 |2 | | |Template Module Windows generic by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10298 |NULL |Template Module Windows network by Zabbix agent active |3 |-1 |2 | | |Template Module Windows network by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10299 |NULL |Template OS Windows by Zabbix agent active |3 |-1 |2 | | |Template OS Windows by Zabbix agent active |0 |NULL |Official Windows template. Requires agent of Zabbix 4.4 and newer.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10300 |NULL |Template App RabbitMQ cluster by Zabbix agent |3 |-1 |2 | | |Template App RabbitMQ cluster by Zabbix agent |0 |NULL |Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10301 |NULL |Template App RabbitMQ node by Zabbix agent |3 |-1 |2 | | |Template App RabbitMQ node by Zabbix agent |0 |NULL |Get node metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10302 |NULL |Template App RabbitMQ cluster by HTTP |3 |-1 |2 | | |Template App RabbitMQ cluster by HTTP |0 |NULL |Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10303 |NULL |Template App RabbitMQ node by HTTP |3 |-1 |2 | | |Template App RabbitMQ node by HTTP |0 |NULL |Get node metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10304 |NULL |Template Server Cisco UCS SNMPv2 |3 |-1 |2 | | |Template Server Cisco UCS SNMPv2 |0 |NULL |Template Server Cisco UCS&eol;&eol;MIBs used:&eol;CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10305 |NULL |Template Module HOST-RESOURCES-MIB CPU SNMPv2 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB CPU SNMPv2 |0 |NULL |Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10306 |NULL |Template Module HOST-RESOURCES-MIB memory SNMPv2 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB memory SNMPv2 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10307 |NULL |Template Module HOST-RESOURCES-MIB storage SNMPv2 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB storage SNMPv2 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10308 |NULL |Template App HAProxy by Zabbix agent |3 |-1 |2 | | |Template App HAProxy by Zabbix agent |0 |NULL |Get metrics from status page using Zabbix agent&eol;https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.&eol;Example configuration of HAProxy: &eol; frontend stats&eol; bind *:8404&eol; stats enable&eol; stats uri /stats&eol; stats refresh 10s&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
-ROW |10309 |NULL |Template App HAProxy by HTTP |3 |-1 |2 | | |Template App HAProxy by HTTP |0 |NULL |Get metrics from status page using HTTP agent&eol;https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.&eol;Example configuration of HAProxy: &eol; frontend stats&eol; bind *:8404&eol; stats enable&eol; stats uri /stats&eol; stats refresh 10s&eol; #stats auth Username:Password # Authentication credentials&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
-ROW |10310 |NULL |Template DB Redis |3 |-1 |2 | | |Template DB Redis |0 |NULL |Get Redis 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/389050-discussion-thread-for-official-zabbix-template-redis&eol;&eol;Template tooling version used: 0.33 |1 |1 | | | | | |1 |
-ROW |10311 |NULL |Template Module HOST-RESOURCES-MIB CPU SNMPv1 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB CPU SNMPv1 |0 |NULL |Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10312 |NULL |Template Module HOST-RESOURCES-MIB memory SNMPv1 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB memory SNMPv1 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10313 |NULL |Template Module HOST-RESOURCES-MIB storage SNMPv1 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB storage SNMPv1 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10314 |NULL |Template Module Windows services by Zabbix agent |3 |-1 |2 | | |Template Module Windows services by Zabbix agent |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-ROW |10315 |NULL |Template Module Windows services by Zabbix agent active |3 |-1 |2 | | |Template Module Windows services by Zabbix agent active |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |
-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;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 |
-ROW |10322 |NULL |Template App Elasticsearch Cluster by HTTP |3 |-1 |2 | | |Template App Elasticsearch Cluster by HTTP |0 |NULL |The template to monitor Elasticsearch by Zabbix that work without any external scripts.&eol;It works with both standalone and cluster instances.&eol;The metrics are collected in one pass remotely using an HTTP agent. &eol;They are getting values from REST API _cluster/health, _cluster/stats, _nodes/stats requests.&eol;You can set {$ELASTICSEARCH.USERNAME} and {$ELASTICSEARCH.PASSWORD} macros in the template for using on the host level.&eol;If you use an atypical location ES API, don't forget to change the macros {$ELASTICSEARCH.SCHEME},{$ELASTICSEARCH.PORT}.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/399473-discussion-thread-for-official-zabbix-template-for-elasticsearch&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
-ROW |10323 |NULL |Template DB ClickHouse by HTTP |3 |-1 |2 | | |Template DB ClickHouse by HTTP |0 |NULL |Get node metrics from ClickHouse HTTP interface using HTTP agent.&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |
+FIELDS|hostid|proxy_hostid|host |status|ipmi_authtype|ipmi_privilege|ipmi_username|ipmi_password|name |flags|templateid|description |tls_connect|tls_accept|tls_issuer|tls_subject|tls_psk_identity|tls_psk|proxy_address|auto_compress|discover|
+ROW |10001 |NULL |Template OS Linux by Zabbix agent |3 |-1 |2 | | |Template OS Linux by Zabbix agent |0 |NULL |Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.&eol;&eol;Known Issues:&eol;&eol; Description: Network discovery. Zabbix agent as of 4.2 doesn't support items such as net.if.status, net.if.speed.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10047 |NULL |Template App Zabbix Server |3 |-1 |2 | | |Template App Zabbix Server |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10048 |NULL |Template App Zabbix Proxy |3 |-1 |2 | | |Template App Zabbix Proxy |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10050 |NULL |Template Module Zabbix agent |3 |-1 |2 | | |Template Module Zabbix agent |0 |NULL |Use this template for agents reachable from Zabbix server/proxy (passive mode).&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10074 |NULL |Template OS OpenBSD |3 |-1 |2 | | |Template OS OpenBSD |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10075 |NULL |Template OS FreeBSD |3 |-1 |2 | | |Template OS FreeBSD |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10076 |NULL |Template OS AIX |3 |-1 |2 | | |Template OS AIX |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10077 |NULL |Template OS HP-UX |3 |-1 |2 | | |Template OS HP-UX |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10078 |NULL |Template OS Solaris |3 |-1 |2 | | |Template OS Solaris |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10079 |NULL |Template OS Mac OS X |3 |-1 |2 | | |Template OS Mac OS X |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10081 |NULL |Template OS Windows by Zabbix agent |3 |-1 |2 | | |Template OS Windows by Zabbix agent |0 |NULL |Official Windows template. Requires agent of Zabbix 4.4 and newer.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10084 |NULL |Zabbix server |0 |-1 |2 | | |Zabbix server |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10093 |NULL |Template App FTP Service |3 |-1 |2 | | |Template App FTP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10094 |NULL |Template App HTTP Service |3 |-1 |2 | | |Template App HTTP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10095 |NULL |Template App HTTPS Service |3 |-1 |2 | | |Template App HTTPS Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10096 |NULL |Template App IMAP Service |3 |-1 |2 | | |Template App IMAP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10097 |NULL |Template App LDAP Service |3 |-1 |2 | | |Template App LDAP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10098 |NULL |Template App NNTP Service |3 |-1 |2 | | |Template App NNTP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10099 |NULL |Template App NTP Service |3 |-1 |2 | | |Template App NTP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10100 |NULL |Template App POP Service |3 |-1 |2 | | |Template App POP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10101 |NULL |Template App SMTP Service |3 |-1 |2 | | |Template App SMTP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10102 |NULL |Template App SSH Service |3 |-1 |2 | | |Template App SSH Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10103 |NULL |Template App Telnet Service |3 |-1 |2 | | |Template App Telnet Service |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10169 |NULL |Template App Generic Java JMX |3 |-1 |2 | | |Template App Generic Java JMX |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10170 |NULL |Template DB MySQL |3 |-1 |2 | | |Template DB MySQL |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> |1 |1 | | | | | |1 |0 |
+ROW |10171 |NULL |Template Server Intel SR1530 IPMI |3 |-1 |2 | | |Template Server Intel SR1530 IPMI |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10172 |NULL |Template Server Intel SR1630 IPMI |3 |-1 |2 | | |Template Server Intel SR1630 IPMI |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10173 |NULL |Template VM VMware |3 |-1 |2 | | |Template VM VMware |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10174 |NULL |Template VM VMware Guest |3 |-1 |2 | | |Template VM VMware Guest |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10175 |NULL |Template VM VMware Hypervisor |3 |-1 |2 | | |Template VM VMware Hypervisor |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10176 |NULL |{#HV.UUID} |0 |-1 |2 | | |{#HV.NAME} |2 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10177 |NULL |{#VM.UUID} |0 |-1 |2 | | |{#VM.NAME} |2 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10182 |NULL |Template Module EtherLike-MIB SNMPv1 |3 |-1 |2 | | |Template Module EtherLike-MIB SNMPv1 |0 |NULL |Template EtherLike-MIB (duplex control only)&eol;&eol;MIBs used:&eol;EtherLike-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10183 |NULL |Template Module EtherLike-MIB SNMPv2 |3 |-1 |2 | | |Template Module EtherLike-MIB SNMPv2 |0 |NULL |Template EtherLike-MIB (duplex control only)&eol;&eol;MIBs used:&eol;EtherLike-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10184 |NULL |Template Module HOST-RESOURCES-MIB SNMPv1 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB SNMPv1 |0 |NULL |HOST-RESOURCES-MIB: CPU, memory and storage(vfs.fs.file) linked together.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10185 |NULL |Template Module HOST-RESOURCES-MIB SNMPv2 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB SNMPv2 |0 |NULL |HOST-RESOURCES-MIB: CPU, memory and storage(vfs.fs.file) linked together.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10186 |NULL |Template Module ICMP Ping |3 |-1 |2 | | |Template Module ICMP Ping |0 |NULL |Template Module ICMP Ping&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10187 |NULL |Template Module Interfaces Simple SNMPv1 |3 |-1 |2 | | |Template Module Interfaces Simple SNMPv1 |0 |NULL |Template Module Interfaces Simple (no ifXTable). This is the exact copy of Template Module Interfaces template with the exception that metrics from ifXTable are replaced with ifTable counters where possible. Use this template with devices where IF-MIB::ifXtable is not available. If supported by the host - use Template Module Interfaces template instead.&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since there is no ifXtable available). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10188 |NULL |Template Module Interfaces Simple SNMPv2 |3 |-1 |2 | | |Template Module Interfaces Simple SNMPv2 |0 |NULL |Template Module Interfaces Simple (no ifXTable). This is the exact copy of Template Module Interfaces template with the exception that metrics from ifXTable are replaced with ifTable counters where possible. Use this template with devices where IF-MIB::ifXtable is not available. If supported by the host - use Template Module Interfaces template instead.&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since there is no ifXtable available). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10189 |NULL |Template Module Interfaces SNMPv1 |3 |-1 |2 | | |Template Module Interfaces SNMPv1 |0 |NULL |Template Module Interfaces&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10190 |NULL |Template Module Interfaces SNMPv2 |3 |-1 |2 | | |Template Module Interfaces SNMPv2 |0 |NULL |Template Module Interfaces&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10192 |NULL |Template Module Interfaces Windows SNMPv2 |3 |-1 |2 | | |Template Module Interfaces Windows SNMPv2 |0 |NULL |Template Interfaces Windows&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since 64bit are not supported by Windows OS). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10203 |NULL |Template Module Generic SNMPv1 |3 |-1 |2 | | |Template Module Generic SNMPv1 |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10204 |NULL |Template Module Generic SNMPv2 |3 |-1 |2 | | |Template Module Generic SNMPv2 |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10207 |NULL |Template Net Alcatel Timetra TiMOS SNMPv2 |3 |-1 |2 | | |Template Net Alcatel Timetra TiMOS SNMPv2 |0 |NULL |Template Net Alcatel Timetra TiMOS&eol;&eol;MIBs used:&eol;TIMETRA-CHASSIS-MIB&eol;TIMETRA-SYSTEM-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10208 |NULL |Template Net Brocade FC SNMPv2 |3 |-1 |2 | | |Template Net Brocade FC SNMPv2 |0 |NULL |Template Net Brocade FC&eol;&eol;MIBs used:&eol;SW-MIB&eol;&eol;Known Issues:&eol;&eol; Description: no IF-MIB::ifAlias is available&eol; Version: v6.3.1c, v7.0.0c, v7.4.1c&eol; Device: all&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10209 |NULL |Template Module Brocade_Foundry Performance SNMPv2 |3 |-1 |2 | | |Template Module Brocade_Foundry Performance SNMPv2 |0 |NULL |Template Module Brocade_Foundry Performance&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10210 |NULL |Template Net Brocade_Foundry Nonstackable SNMPv2 |3 |-1 |2 | | |Template Net Brocade_Foundry Nonstackable SNMPv2 |0 |NULL |Template Net Brocade_Foundry Nonstackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10211 |NULL |Template Net Brocade_Foundry Stackable SNMPv2 |3 |-1 |2 | | |Template Net Brocade_Foundry Stackable SNMPv2 |0 |NULL |Template Brocade_Foundry Stackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;FOUNDRY-SN-STACKING-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Correct fan(returns fan status as 'other(1)' and temperature (returns 0) for the non-master Switches are not available in SNMP&eol; Version: Version 08.0.40b and above&eol; Device: ICX 7750 in stack&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10212 |NULL |Template Module Cisco CISCO-MEMORY-POOL-MIB SNMPv2 |3 |-1 |2 | | |Template Module Cisco CISCO-MEMORY-POOL-MIB SNMPv2 |0 |NULL |Template Cisco CISCO-MEMORY-POOL-MIB&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10213 |NULL |Template Module Cisco CISCO-PROCESS-MIB SNMPv2 |3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB SNMPv2 |0 |NULL |Template Cisco CISCO-PROCESS-MIB&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10215 |NULL |Template Module Cisco OLD-CISCO-CPU-MIB SNMPv2 |3 |-1 |2 | | |Template Module Cisco OLD-CISCO-CPU-MIB SNMPv2 |0 |NULL |Template Cisco OLD-CISCO-CPU-MIB&eol;&eol;MIBs used:&eol;OLD-CISCO-CPU-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10216 |NULL |Template Module Cisco Inventory SNMPv2 |3 |-1 |2 | | |Template Module Cisco Inventory SNMPv2 |0 |NULL |Template Cisco Inventory&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10217 |NULL |Template Module Cisco CISCO-ENVMON-MIB SNMPv2 |3 |-1 |2 | | |Template Module Cisco CISCO-ENVMON-MIB SNMPv2 |0 |NULL |Template Cisco CISCO-ENVMON-MIB&eol;&eol;MIBs used:&eol;CISCO-ENVMON-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10218 |NULL |Template Net Cisco IOS SNMPv2 |3 |-1 |2 | | |Template Net Cisco IOS SNMPv2 |0 |NULL |Template Cisco IOS Software releases 12.2(3.5) or later&eol;&eol;Known Issues:&eol;&eol; Description: no if(in&pipe;out)(Errors&pipe;Discards) are available for vlan ifType&eol; Version: IOS for example: 12.1(22)EA11, 15.4(3)M2&eol; Device: C2911, C7600&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10220 |NULL |Template Net Cisco IOS prior to 12.0_3_T SNMPv2 |3 |-1 |2 | | |Template Net Cisco IOS prior to 12.0_3_T SNMPv2 |0 |NULL |Cisco IOS Software releases prior to 12.0(3)T&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10221 |NULL |Template Net Dell Force S-Series SNMPv2 |3 |-1 |2 | | |Template Net Dell Force S-Series SNMPv2 |0 |NULL |Template Dell Force S-Series&eol;&eol;MIBs used:&eol;F10-S-SERIES-CHASSIS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10222 |NULL |Template Net D-Link DES 7200 SNMPv2 |3 |-1 |2 | | |Template Net D-Link DES 7200 SNMPv2 |0 |NULL |Template D-Link DES 7200&eol;&eol;MIBs used:&eol;MY-PROCESS-MIB&eol;SNMPv2-MIB&eol;MY-MEMORY-MIB&eol;ENTITY-MIB&eol;MY-SYSTEM-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10223 |NULL |Template Net D-Link DES_DGS Switch SNMPv2 |3 |-1 |2 | | |Template Net D-Link DES_DGS Switch SNMPv2 |0 |NULL |Template D-Link DES_DGS Switch&eol;&eol;MIBs used:&eol;DLINK-AGENT-MIB&eol;SNMPv2-MIB&eol;ENTITY-MIB&eol;EQUIPMENT-MIB&eol;&eol;Known Issues:&eol;&eol; Description: D-Link reports missing PSU as fail(4)&eol; Version: Firmware: 1.73R008,hardware revision: B1&eol; Device: DGS-3420-26SC Gigabit Ethernet Switch&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10224 |NULL |Template Net Extreme EXOS SNMPv2 |3 |-1 |2 | | |Template Net Extreme EXOS SNMPv2 |0 |NULL |Template Extreme EXOS&eol;&eol;MIBs used:&eol;EXTREME-SOFTWARE-MONITOR-MIB&eol;EXTREME-SYSTEM-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10225 |NULL |Template Net Network Generic Device SNMPv1 |3 |-1 |2 | | |Template Net Network Generic Device SNMPv1 |0 |NULL |Template Net Network Generic Device&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10226 |NULL |Template Net Network Generic Device SNMPv2 |3 |-1 |2 | | |Template Net Network Generic Device SNMPv2 |0 |NULL |Template Net Network Generic Device&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10227 |NULL |Template Net HP Comware HH3C SNMPv2 |3 |-1 |2 | | |Template Net HP Comware HH3C SNMPv2 |0 |NULL |Template Net HP Comware (HH3C)&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;HH3C-ENTITY-EXT-MIB&eol;&eol;Known Issues:&eol;&eol; Description: No temperature sensors. All entities of them return 0 for HH3C-ENTITY-EXT-MIB::hh3cEntityExtTemperature&eol; Version: 1910-48 Switch Software Version 5.20.99, Release 1116 Copyright(c)2010-2016 Hewlett Packard Enterprise Development LP&eol; Device: HP 1910-48&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10229 |NULL |Template Net Huawei VRP SNMPv2 |3 |-1 |2 | | |Template Net Huawei VRP SNMPv2 |0 |NULL |Template Net Huawei VRP&eol;&eol;MIBs used:&eol;HUAWEI-ENTITY-EXTENT-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10230 |NULL |Template Net Intel_Qlogic Infiniband SNMPv2 |3 |-1 |2 | | |Template Net Intel_Qlogic Infiniband SNMPv2 |0 |NULL |Template Net Intel_Qlogic Infiniband&eol;&eol;MIBs used:&eol;ICS-CHASSIS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10231 |NULL |Template Net Juniper SNMPv2 |3 |-1 |2 | | |Template Net Juniper SNMPv2 |0 |NULL |Template Net Juniper&eol;&eol;MIBs used:&eol;JUNIPER-ALARM-MIB&eol;JUNIPER-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10233 |NULL |Template Net Mikrotik SNMPv2 |3 |-1 |2 | | |Template Net Mikrotik SNMPv2 |0 |NULL |Template Net Mikrotik&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;MIKROTIK-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't have ifHighSpeed filled. fixed in more recent versions&eol; Version: RouterOS 6.28 or lower&eol;&eol; Description: Doesn't have any temperature sensors&eol; Version: RouterOS 6.38.5&eol; Device: Mikrotik 941-2nD, Mikrotik 951G-2HnD&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10234 |NULL |Template Net Netgear Fastpath SNMPv2 |3 |-1 |2 | | |Template Net Netgear Fastpath SNMPv2 |0 |NULL |Template Net Netgear Fastpath&eol;&eol;MIBs used:&eol;FASTPATH-SWITCHING-MIB&eol;FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10235 |NULL |Template Net QTech QSW SNMPv2 |3 |-1 |2 | | |Template Net QTech QSW SNMPv2 |0 |NULL |Template Net QTech QSW&eol;&eol;MIBs used:&eol;QTECH-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10236 |NULL |Template Net TP-LINK SNMPv2 |3 |-1 |2 | | |Template Net TP-LINK SNMPv2 |0 |NULL |Template Net TP-LINK JetStream&eol;&eol;MIBs used:&eol;TPLINK-SYSINFO-MIB&eol;TPLINK-SYSMONITOR-MIB&eol;&eol;Known Issues:&eol;&eol; Description: default sysLocation, sysName and sysContact is not filled with proper data. Real hostname and location can be found only in private branch(TPLINK-SYSINFO-MIB). Please check whether this problem exists in the latest firware: http://www.tp-linkru.com/download/T2600G-28TS.html#Firmware&eol; Version: 2.0.0 Build 20170628 Rel.55184(Beta)&eol; Device: T2600G-28TS 2.0&eol;&eol; Description: The Serial number of the product(tpSysInfoSerialNum) is missing in HW versions prior to V2_170323&eol; Version: prior to version V2_170323&eol; Device: T2600G-28TS 2.0&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10237 |NULL |Template Net Ubiquiti AirOS SNMPv1 |3 |-1 |2 | | |Template Net Ubiquiti AirOS SNMPv1 |0 |NULL |Template Net Ubiquiti AirOS&eol;&eol;MIBs used:&eol;IEEE802dot11-MIB&eol;FROGFOOT-RESOURCES-MIB&eol;&eol;Known Issues:&eol;&eol; Description: UBNT unifi reports speed: like IF-MIB::ifSpeed.1 = Gauge32: 4294967295 for all interfaces&eol; Version: Firmware: BZ.ar7240.v3.7.51.6230.170322.1513&eol; Device: UBNT UAP-LR&eol;&eol; Description: UBNT AirMax(NanoStation, NanoBridge etc) reports ifSpeed: as 0 for VLAN and wireless(ath0) interfaces&eol; Version: Firmware: XW.ar934x.v5.6-beta4.22359.140521.1836&eol; Device: NanoStation M5&eol;&eol; Description: UBNT AirMax(NanoStation, NanoBridge etc) reports always return ifType: as ethernet(6) even for wifi,vlans and other types&eol; Version: Firmware: XW.ar934x.v5.6-beta4.22359.140521.1836&eol; Device: NanoStation M5&eol;&eol; Description: ifXTable is not provided in IF-MIB. So Interfaces Simple Template is used instead&eol; Version: all above&eol; Device: NanoStation, UAP-LR&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10248 |NULL |Template OS Linux SNMPv2 |3 |-1 |2 | | |Template OS Linux SNMPv2 |0 |NULL |Template OS Linux&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10249 |NULL |Template OS Windows SNMPv2 |3 |-1 |2 | | |Template OS Windows SNMPv2 |0 |NULL |Official Windows SNMP template. Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't support In/Out 64 bit counters even though IfxTable is present:&eol;Currently, Windows gets it’s interface status from MIB-2. Since these 64bit SNMP counters (ifHCInOctets, ifHCOutOctets, etc.) are defined as an extension to IF-MIB, Microsoft has not implemented it.&eol;https://social.technet.microsoft.com/Forums/windowsserver/en-US/07b62ff0-94f6-40ca-a99d-d129c1b33d70/windows-2008-r2-snmp-64bit-counters-support?forum=winservergen&eol;&eol; Version: Win2008, Win2012R2.&eol;&eol; Description: Doesn't support ifXTable at all&eol; Version: WindowsXP&eol;&eol; Description: EtherLike MIB is not supported&eol; Version: *&eol; Device: *&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10250 |NULL |Template Net HP Enterprise Switch SNMPv2 |3 |-1 |2 | | |Template Net HP Enterprise Switch SNMPv2 |0 |NULL |Template Net HP Enterprise Switch&eol;&eol;MIBs used:&eol;SEMI-MIB&eol;NETSWITCH-MIB&eol;HP-ICF-CHASSIS&eol;ENTITY-SENSORS-MIB&eol;ENTITY-MIB&eol;STATISTICS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10251 |NULL |Template Net Mellanox SNMPv2 |3 |-1 |2 | | |Template Net Mellanox SNMPv2 |0 |NULL |Template Net Mellanox&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10252 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMPv2|3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMPv2|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10253 |NULL |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMPv2 |3 |-1 |2 | | |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMPv2 |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10254 |NULL |Template Net Arista SNMPv2 |3 |-1 |2 | | |Template Net Arista SNMPv2 |0 |NULL |Template Net Arista&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10255 |NULL |Template Server Dell iDRAC SNMPv2 |3 |-1 |2 | | |Template Server Dell iDRAC SNMPv2 |0 |NULL |Template Server iDRAC&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10256 |NULL |Template Server HP iLO SNMPv2 |3 |-1 |2 | | |Template Server HP iLO SNMPv2 |0 |NULL |Template Server HP iLO&eol;&eol;MIBs used:&eol;CPQSINFO-MIB&eol;CPQHLTH-MIB&eol;CPQIDA-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10257 |NULL |Template Server IBM IMM SNMPv1 |3 |-1 |2 | | |Template Server IBM IMM SNMPv1 |0 |NULL |Template Server IBM IMM&eol;&eol;MIBs used:&eol;IMM-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Some IMMs (IMM1) do not return disks&eol; Version: IMM1&eol; Device: IBM x3250M3&eol;&eol; Description: Some IMMs (IMM1) do not return fan status: fanHealthStatus&eol; Version: IMM1&eol; Device: IBM x3250M3&eol;&eol; Description: IMM1 servers (M2, M3 generations) sysObjectID is NET-SNMP-MIB::netSnmpAgentOIDs.10&eol; Version: IMM1&eol; Device: IMM1 servers (M2,M3 generations)&eol;&eol; Description: IMM1 servers (M2, M3 generations) only Ambient temperature sensor available&eol; Version: IMM1&eol; Device: IMM1 servers (M2,M3 generations)&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10258 |NULL |Template Server IBM IMM SNMPv2 |3 |-1 |2 | | |Template Server IBM IMM SNMPv2 |0 |NULL |Template Server IBM IMM&eol;&eol;MIBs used:&eol;IMM-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Some IMMs (IMM1) do not return disks&eol; Version: IMM1&eol; Device: IBM x3250M3&eol;&eol; Description: Some IMMs (IMM1) do not return fan status: fanHealthStatus&eol; Version: IMM1&eol; Device: IBM x3250M3&eol;&eol; Description: IMM1 servers (M2, M3 generations) sysObjectID is NET-SNMP-MIB::netSnmpAgentOIDs.10&eol; Version: IMM1&eol; Device: IMM1 servers (M2,M3 generations)&eol;&eol; Description: IMM1 servers (M2, M3 generations) only Ambient temperature sensor available&eol; Version: IMM1&eol; Device: IMM1 servers (M2,M3 generations)&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10259 |NULL |Template Server Supermicro Aten SNMPv2 |3 |-1 |2 | | |Template Server Supermicro Aten SNMPv2 |0 |NULL |Template Server Supermicro Aten&eol;&eol;MIBs used:&eol;ATEN-IPMI-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10260 |NULL |Template App Apache Tomcat JMX |3 |-1 |2 | | |Template App Apache Tomcat JMX |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10261 |NULL |Template App Remote Zabbix server |3 |-1 |2 | | |Template App Remote Zabbix server |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10262 |NULL |Template App Remote Zabbix proxy |3 |-1 |2 | | |Template App Remote Zabbix proxy |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10263 |NULL |Template DB PostgreSQL |3 |-1 |2 | | |Template DB PostgreSQL |0 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10264 |NULL |Template App Apache by Zabbix agent |3 |-1 |2 | | |Template App Apache by Zabbix agent |0 |NULL |Get metrics from mod_status module using HTTP agent.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10265 |NULL |Template App Apache by HTTP |3 |-1 |2 | | |Template App Apache by HTTP |0 |NULL |Get metrics from mod_status module using HTTP agent.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10266 |NULL |Template App Nginx by Zabbix agent |3 |-1 |2 | | |Template App Nginx by Zabbix agent |0 |NULL |Get metrics from stub status module using Zabbix agent running on Linux&eol;https://nginx.ru/en/docs/http/ngx_http_stub_status_module.html&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10267 |NULL |Template App Nginx by HTTP |3 |-1 |2 | | |Template App Nginx by HTTP |0 |NULL |Get metrics from stub status module using HTTP agent&eol;https://nginx.ru/en/docs/http/ngx_http_stub_status_module.html.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384765-discussion-thread-for-official-zabbix-template-nginx&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10268 |NULL |Template Module Linux memory SNMPv2 |3 |-1 |2 | | |Template Module Linux memory SNMPv2 |0 |NULL |MIBs used:&eol;UCD-SNMP-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10269 |NULL |Template Module Linux block devices SNMPv2 |3 |-1 |2 | | |Template Module Linux block devices SNMPv2 |0 |NULL |MIBs used:&eol;UCD-DISKIO-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10270 |NULL |Template Module Linux CPU SNMPv2 |3 |-1 |2 | | |Template Module Linux CPU SNMPv2 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;UCD-SNMP-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10271 |NULL |Template Module Linux filesystems SNMPv2 |3 |-1 |2 | | |Template Module Linux filesystems SNMPv2 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;UCD-SNMP-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10272 |NULL |Template Module Linux CPU by Zabbix agent |3 |-1 |2 | | |Template Module Linux CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10273 |NULL |Template Module Linux filesystems by Zabbix agent |3 |-1 |2 | | |Template Module Linux filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10274 |NULL |Template Module Linux memory by Zabbix agent |3 |-1 |2 | | |Template Module Linux memory by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10275 |NULL |Template Module Linux block devices by Zabbix agent |3 |-1 |2 | | |Template Module Linux block devices by Zabbix agent |0 |NULL |Known Issues:&eol;&eol; Description: If having problems accessing /proc/diskstats on CloudLinux, please read this https://docs.cloudlinux.com/cloudlinux_os_kernel/#virtualized-proc-filesystem.&eol; Device: CloudLinux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10276 |NULL |Template Module Linux network interfaces by Zabbix agent |3 |-1 |2 | | |Template Module Linux network interfaces by Zabbix agent |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10277 |NULL |Template Module Linux generic by Zabbix agent |3 |-1 |2 | | |Template Module Linux generic by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10278 |NULL |Template Module Linux CPU by Zabbix agent active |3 |-1 |2 | | |Template Module Linux CPU by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10279 |NULL |Template Module Linux filesystems by Zabbix agent active |3 |-1 |2 | | |Template Module Linux filesystems by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10280 |NULL |Template Module Linux memory by Zabbix agent active |3 |-1 |2 | | |Template Module Linux memory by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10281 |NULL |Template Module Linux block devices by Zabbix agent active |3 |-1 |2 | | |Template Module Linux block devices by Zabbix agent active |0 |NULL |Known Issues:&eol;&eol; Description: If having problems accessing /proc/diskstats on CloudLinux, please read this https://docs.cloudlinux.com/cloudlinux_os_kernel/#virtualized-proc-filesystem.&eol; Device: CloudLinux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10282 |NULL |Template Module Linux network interfaces by Zabbix agent active |3 |-1 |2 | | |Template Module Linux network interfaces by Zabbix agent active |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10283 |NULL |Template Module Linux generic by Zabbix agent active |3 |-1 |2 | | |Template Module Linux generic by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10284 |NULL |Template OS Linux by Zabbix agent active |3 |-1 |2 | | |Template OS Linux by Zabbix agent active |0 |NULL |Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.&eol;&eol;Known Issues:&eol;&eol; Description: Network discovery. Zabbix agent as of 4.2 doesn't support items such as net.if.status, net.if.speed.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10285 |NULL |Template OS Linux by Prom |3 |-1 |2 | | |Template OS Linux by Prom |0 |NULL |Official Linux template using node exporter.&eol;&eol;Known Issues:&eol;&eol; Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for 'guest' and 'guest_nice' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as 'best effort'. &eol; See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.&eol; Version: below 0.16.0&eol;&eol; Description: metric node_network_info with label 'device' cannot be found, so network discovery is not possible.&eol; Version: below 0.18&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10286 |NULL |Template Module Windows CPU by Zabbix agent |3 |-1 |2 | | |Template Module Windows CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10287 |NULL |Template Module Windows memory by Zabbix agent |3 |-1 |2 | | |Template Module Windows memory by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10288 |NULL |Template Module Windows filesystems by Zabbix agent |3 |-1 |2 | | |Template Module Windows filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10289 |NULL |Template Module Windows physical disks by Zabbix agent |3 |-1 |2 | | |Template Module Windows physical disks by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10290 |NULL |Template Module Windows generic by Zabbix agent |3 |-1 |2 | | |Template Module Windows generic by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10291 |NULL |Template Module Windows network by Zabbix agent |3 |-1 |2 | | |Template Module Windows network by Zabbix agent |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10292 |NULL |Template Module Zabbix agent active |3 |-1 |2 | | |Template Module Zabbix agent active |0 |NULL |Use this template instead of 'Template Module Zabbix agent' for agents running in active mode only.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10293 |NULL |Template Module Windows CPU by Zabbix agent active |3 |-1 |2 | | |Template Module Windows CPU by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10294 |NULL |Template Module Windows memory by Zabbix agent active |3 |-1 |2 | | |Template Module Windows memory by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10295 |NULL |Template Module Windows filesystems by Zabbix agent active |3 |-1 |2 | | |Template Module Windows filesystems by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10296 |NULL |Template Module Windows physical disks by Zabbix agent active |3 |-1 |2 | | |Template Module Windows physical disks by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10297 |NULL |Template Module Windows generic by Zabbix agent active |3 |-1 |2 | | |Template Module Windows generic by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10298 |NULL |Template Module Windows network by Zabbix agent active |3 |-1 |2 | | |Template Module Windows network by Zabbix agent active |0 |NULL |Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10299 |NULL |Template OS Windows by Zabbix agent active |3 |-1 |2 | | |Template OS Windows by Zabbix agent active |0 |NULL |Official Windows template. Requires agent of Zabbix 4.4 and newer.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10300 |NULL |Template App RabbitMQ cluster by Zabbix agent |3 |-1 |2 | | |Template App RabbitMQ cluster by Zabbix agent |0 |NULL |Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10301 |NULL |Template App RabbitMQ node by Zabbix agent |3 |-1 |2 | | |Template App RabbitMQ node by Zabbix agent |0 |NULL |Get node metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10302 |NULL |Template App RabbitMQ cluster by HTTP |3 |-1 |2 | | |Template App RabbitMQ cluster by HTTP |0 |NULL |Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10303 |NULL |Template App RabbitMQ node by HTTP |3 |-1 |2 | | |Template App RabbitMQ node by HTTP |0 |NULL |Get node metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10304 |NULL |Template Server Cisco UCS SNMPv2 |3 |-1 |2 | | |Template Server Cisco UCS SNMPv2 |0 |NULL |Template Server Cisco UCS&eol;&eol;MIBs used:&eol;CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10305 |NULL |Template Module HOST-RESOURCES-MIB CPU SNMPv2 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB CPU SNMPv2 |0 |NULL |Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10306 |NULL |Template Module HOST-RESOURCES-MIB memory SNMPv2 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB memory SNMPv2 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10307 |NULL |Template Module HOST-RESOURCES-MIB storage SNMPv2 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB storage SNMPv2 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10308 |NULL |Template App HAProxy by Zabbix agent |3 |-1 |2 | | |Template App HAProxy by Zabbix agent |0 |NULL |Get metrics from status page using Zabbix agent&eol;https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.&eol;Example configuration of HAProxy: &eol; frontend stats&eol; bind *:8404&eol; stats enable&eol; stats uri /stats&eol; stats refresh 10s&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
+ROW |10309 |NULL |Template App HAProxy by HTTP |3 |-1 |2 | | |Template App HAProxy by HTTP |0 |NULL |Get metrics from status page using HTTP agent&eol;https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.&eol;Example configuration of HAProxy: &eol; frontend stats&eol; bind *:8404&eol; stats enable&eol; stats uri /stats&eol; stats refresh 10s&eol; #stats auth Username:Password # Authentication credentials&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
+ROW |10310 |NULL |Template DB Redis |3 |-1 |2 | | |Template DB Redis |0 |NULL |Get Redis 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/389050-discussion-thread-for-official-zabbix-template-redis&eol;&eol;Template tooling version used: 0.33 |1 |1 | | | | | |1 |0 |
+ROW |10311 |NULL |Template Module HOST-RESOURCES-MIB CPU SNMPv1 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB CPU SNMPv1 |0 |NULL |Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10312 |NULL |Template Module HOST-RESOURCES-MIB memory SNMPv1 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB memory SNMPv1 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10313 |NULL |Template Module HOST-RESOURCES-MIB storage SNMPv1 |3 |-1 |2 | | |Template Module HOST-RESOURCES-MIB storage SNMPv1 |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10314 |NULL |Template Module Windows services by Zabbix agent |3 |-1 |2 | | |Template Module Windows services by Zabbix agent |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+ROW |10315 |NULL |Template Module Windows services by Zabbix agent active |3 |-1 |2 | | |Template Module Windows services by Zabbix agent active |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
+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 |0 |
+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 |0 |
+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 |0 |
+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 |0 |
+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 |0 |
+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 |0 |
+ROW |10322 |NULL |Template App Elasticsearch Cluster by HTTP |3 |-1 |2 | | |Template App Elasticsearch Cluster by HTTP |0 |NULL |The template to monitor Elasticsearch by Zabbix that work without any external scripts.&eol;It works with both standalone and cluster instances.&eol;The metrics are collected in one pass remotely using an HTTP agent. &eol;They are getting values from REST API _cluster/health, _cluster/stats, _nodes/stats requests.&eol;You can set {$ELASTICSEARCH.USERNAME} and {$ELASTICSEARCH.PASSWORD} macros in the template for using on the host level.&eol;If you use an atypical location ES API, don't forget to change the macros {$ELASTICSEARCH.SCHEME},{$ELASTICSEARCH.PORT}.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/399473-discussion-thread-for-official-zabbix-template-for-elasticsearch&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
+ROW |10323 |NULL |Template DB ClickHouse by HTTP |3 |-1 |2 | | |Template DB ClickHouse by HTTP |0 |NULL |Get node metrics from ClickHouse HTTP interface using HTTP agent.&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
TABLE |group_prototype
FIELDS|group_prototypeid|hostid|name |groupid|templateid|
-ROW |149 |10176 |{#CLUSTER.NAME} |NULL |NULL |
-ROW |150 |10176 |{#DATACENTER.NAME} |NULL |NULL |
-ROW |151 |10176 | |7 |NULL |
-ROW |152 |10177 |{#CLUSTER.NAME} (vm) |NULL |NULL |
-ROW |153 |10177 |{#DATACENTER.NAME} (vm)|NULL |NULL |
-ROW |154 |10177 |{#HV.NAME} |NULL |NULL |
-ROW |155 |10177 | |6 |NULL |
+ROW |156 |10176 |{#CLUSTER.NAME} |NULL |NULL |
+ROW |157 |10176 |{#DATACENTER.NAME} |NULL |NULL |
+ROW |158 |10176 | |7 |NULL |
+ROW |159 |10177 |{#CLUSTER.NAME} (vm) |NULL |NULL |
+ROW |160 |10177 |{#DATACENTER.NAME} (vm)|NULL |NULL |
+ROW |161 |10177 |{#HV.NAME} |NULL |NULL |
+ROW |162 |10177 | |6 |NULL |
TABLE |screens
FIELDS|screenid|name |hsize|vsize|templateid|userid|private|
@@ -241,220 +241,220 @@ ROW |1956 |20 |0 |860 |750 |200 |0 |1 |1
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 |2890 |25 |0 |832 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2891 |25 |0 |833 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2892 |25 |20 |830 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2893 |25 |20 |831 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2894 |25 |0 |834 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2895 |26 |0 |838 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2896 |26 |0 |839 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2897 |26 |20 |836 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2898 |26 |20 |837 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2899 |26 |0 |840 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2900 |59 |0 |1125 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2901 |59 |0 |1129 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2902 |59 |0 |1128 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2903 |59 |0 |1126 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2904 |59 |0 |1127 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2905 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2906 |49 |20 |1078 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2907 |49 |20 |1076 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2908 |49 |20 |1079 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2909 |49 |20 |1077 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2910 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2911 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2912 |52 |20 |1084 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2913 |52 |20 |1082 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2914 |52 |20 |1085 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2915 |52 |20 |1083 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2916 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2917 |27 |0 |841 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2918 |27 |0 |843 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2919 |27 |0 |842 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2920 |28 |0 |845 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2921 |28 |0 |847 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2922 |28 |0 |846 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2923 |38 |0 |1029 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2924 |38 |0 |1027 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2925 |38 |0 |1030 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2926 |38 |0 |1028 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2927 |38 |0 |1031 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2928 |39 |0 |1011 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2929 |39 |0 |1012 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2930 |39 |0 |1008 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2931 |39 |0 |1009 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2932 |39 |0 |1007 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2933 |39 |0 |1010 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2934 |40 |0 |1018 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2935 |40 |0 |1016 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2936 |40 |0 |1019 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2937 |40 |0 |1017 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2938 |40 |0 |1020 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2939 |41 |0 |1025 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2940 |41 |0 |1026 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2941 |41 |0 |1022 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2942 |41 |0 |1023 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2943 |41 |0 |1021 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2944 |41 |0 |1024 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2945 |22 |0 |806 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2946 |22 |0 |804 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2947 |22 |0 |805 |750 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2948 |22 |0 |803 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2949 |21 |0 |802 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2950 |21 |0 |799 |750 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2951 |21 |0 |800 |750 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2952 |21 |0 |798 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2953 |21 |0 |797 |750 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2954 |21 |0 |801 |750 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2955 |17 |0 |532 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2956 |17 |0 |530 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2957 |17 |0 |531 |750 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2958 |17 |0 |529 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2959 |4 |0 |392 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2960 |4 |0 |404 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2961 |4 |0 |406 |750 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2962 |4 |0 |410 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2963 |4 |0 |527 |750 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2964 |4 |0 |788 |750 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2965 |5 |0 |469 |750 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2966 |5 |0 |471 |750 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2967 |5 |0 |498 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2968 |5 |0 |540 |750 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2969 |7 |0 |463 |750 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2970 |7 |0 |462 |750 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2971 |7 |0 |541 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2972 |7 |0 |464 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2973 |6 |0 |475 |750 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2974 |6 |0 |474 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2975 |6 |0 |542 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2976 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2977 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2978 |9 |0 |457 |750 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2979 |9 |0 |456 |750 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2980 |9 |0 |544 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2981 |9 |0 |458 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2982 |9 |1 |22838 |750 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2983 |9 |1 |22837 |750 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2984 |10 |0 |481 |750 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2985 |10 |0 |480 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |2986 |10 |0 |545 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2987 |10 |0 |482 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2988 |10 |1 |22998 |750 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2989 |10 |1 |22997 |750 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |2990 |57 |0 |1112 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2991 |57 |0 |1113 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2992 |57 |0 |1110 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2993 |57 |0 |1109 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2994 |57 |0 |1111 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2995 |57 |0 |1114 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2996 |60 |0 |1139 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2997 |60 |0 |1140 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2998 |60 |0 |1137 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |2999 |60 |0 |1136 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3000 |60 |0 |1138 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3001 |60 |0 |1141 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3002 |58 |0 |1118 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3003 |58 |0 |1119 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3004 |58 |0 |1116 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3005 |58 |0 |1115 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3006 |58 |0 |1117 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3007 |58 |0 |1120 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3008 |23 |20 |821 |750 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3009 |23 |20 |816 |750 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3010 |23 |20 |814 |750 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3011 |23 |20 |820 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3012 |23 |20 |817 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3013 |23 |20 |815 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3014 |23 |20 |818 |750 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3015 |23 |20 |819 |750 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3016 |24 |0 |824 |750 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3017 |24 |0 |827 |750 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3018 |24 |0 |825 |750 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3019 |24 |0 |828 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3020 |24 |0 |826 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3021 |24 |0 |829 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3022 |24 |0 |822 |750 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3023 |24 |0 |823 |750 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |3024 |54 |0 |1091 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3025 |54 |0 |1095 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3026 |54 |0 |1092 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3027 |54 |0 |1094 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3028 |54 |0 |1099 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3029 |54 |0 |1100 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3030 |54 |0 |1101 |750 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3031 |54 |0 |1102 |750 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3032 |54 |20 |1090 |750 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3033 |55 |0 |1093 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3034 |55 |0 |1098 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3035 |55 |0 |1096 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3036 |55 |0 |1097 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3037 |56 |0 |1108 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3038 |56 |20 |1104 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3039 |56 |20 |1106 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3040 |47 |0 |1071 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3041 |47 |20 |1061 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3042 |47 |20 |1066 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3043 |44 |20 |738 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3044 |45 |20 |741 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3045 |42 |20 |744 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3046 |43 |20 |745 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3047 |46 |20 |766 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3048 |3 |0 |903 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3049 |3 |0 |909 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3050 |3 |0 |918 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3051 |3 |0 |921 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3052 |3 |20 |888 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3053 |3 |20 |891 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3054 |3 |20 |894 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3055 |3 |20 |897 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3056 |3 |20 |900 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3057 |30 |20 |899 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3058 |31 |20 |934 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3059 |32 |0 |937 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3060 |32 |0 |941 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3061 |32 |0 |947 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3062 |32 |0 |949 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3063 |32 |20 |927 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3064 |32 |20 |929 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3065 |32 |20 |931 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3066 |32 |20 |933 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3067 |32 |20 |935 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3068 |33 |0 |957 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3069 |33 |0 |959 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3070 |33 |0 |962 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3071 |33 |0 |963 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3072 |33 |20 |953 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3073 |33 |20 |954 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3074 |33 |20 |955 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3075 |33 |20 |956 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3076 |33 |20 |952 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3077 |34 |20 |952 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3078 |29 |0 |881 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3079 |29 |20 |869 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3080 |29 |0 |877 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3081 |29 |0 |879 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3082 |29 |20 |873 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3083 |29 |20 |867 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3084 |29 |19 |29033 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3085 |29 |20 |865 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3086 |19 |0 |977 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3087 |19 |1 |29485 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3088 |19 |0 |979 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3089 |19 |0 |981 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3090 |19 |20 |965 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3091 |19 |20 |967 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3092 |19 |20 |969 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3093 |19 |20 |971 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3094 |35 |20 |970 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3095 |36 |20 |988 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3096 |37 |0 |995 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3097 |37 |1 |29592 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3098 |37 |0 |997 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3099 |37 |0 |999 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3100 |37 |20 |983 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3101 |37 |20 |985 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3102 |37 |20 |987 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |3103 |37 |20 |989 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3104 |25 |0 |832 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3105 |25 |0 |833 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3106 |25 |20 |830 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3107 |25 |20 |831 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3108 |25 |0 |834 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3109 |26 |0 |838 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3110 |26 |0 |839 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3111 |26 |20 |836 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3112 |26 |20 |837 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3113 |26 |0 |840 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3114 |59 |0 |1125 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3115 |59 |0 |1129 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3116 |59 |0 |1128 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3117 |59 |0 |1126 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3118 |59 |0 |1127 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3119 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3120 |49 |20 |1078 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3121 |49 |20 |1076 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3122 |49 |20 |1079 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3123 |49 |20 |1077 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3124 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3125 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3126 |52 |20 |1084 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3127 |52 |20 |1082 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3128 |52 |20 |1085 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3129 |52 |20 |1083 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3130 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3131 |27 |0 |841 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3132 |27 |0 |843 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3133 |27 |0 |842 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3134 |28 |0 |845 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3135 |28 |0 |847 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3136 |28 |0 |846 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3137 |38 |0 |1029 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3138 |38 |0 |1027 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3139 |38 |0 |1030 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3140 |38 |0 |1028 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3141 |38 |0 |1031 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3142 |39 |0 |1011 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3143 |39 |0 |1012 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3144 |39 |0 |1008 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3145 |39 |0 |1009 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3146 |39 |0 |1007 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3147 |39 |0 |1010 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3148 |40 |0 |1018 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3149 |40 |0 |1016 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3150 |40 |0 |1019 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3151 |40 |0 |1017 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3152 |40 |0 |1020 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3153 |41 |0 |1025 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3154 |41 |0 |1026 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3155 |41 |0 |1022 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3156 |41 |0 |1023 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3157 |41 |0 |1021 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3158 |41 |0 |1024 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3159 |22 |0 |806 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3160 |22 |0 |804 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3161 |22 |0 |805 |750 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3162 |22 |0 |803 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3163 |21 |0 |802 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3164 |21 |0 |799 |750 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3165 |21 |0 |800 |750 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3166 |21 |0 |798 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3167 |21 |0 |797 |750 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3168 |21 |0 |801 |750 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3169 |17 |0 |532 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3170 |17 |0 |530 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3171 |17 |0 |531 |750 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3172 |17 |0 |529 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3173 |4 |0 |392 |750 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3174 |4 |0 |404 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3175 |4 |0 |406 |750 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3176 |4 |0 |410 |750 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3177 |4 |0 |527 |750 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3178 |4 |0 |788 |750 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3179 |5 |0 |469 |750 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3180 |5 |0 |471 |750 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3181 |5 |0 |498 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3182 |5 |0 |540 |750 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3183 |7 |0 |463 |750 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3184 |7 |0 |462 |750 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3185 |7 |0 |541 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3186 |7 |0 |464 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3187 |6 |0 |475 |750 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3188 |6 |0 |474 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3189 |6 |0 |542 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3190 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3191 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3192 |9 |0 |457 |750 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3193 |9 |0 |456 |750 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3194 |9 |0 |544 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3195 |9 |0 |458 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3196 |9 |1 |22838 |750 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3197 |9 |1 |22837 |750 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3198 |10 |0 |481 |750 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3199 |10 |0 |480 |750 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |3200 |10 |0 |545 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3201 |10 |0 |482 |750 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3202 |10 |1 |22998 |750 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3203 |10 |1 |22997 |750 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3204 |57 |0 |1112 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3205 |57 |0 |1113 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3206 |57 |0 |1110 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3207 |57 |0 |1109 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3208 |57 |0 |1111 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3209 |57 |0 |1114 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3210 |60 |0 |1139 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3211 |60 |0 |1140 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3212 |60 |0 |1137 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3213 |60 |0 |1136 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3214 |60 |0 |1138 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3215 |60 |0 |1141 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3216 |58 |0 |1118 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3217 |58 |0 |1119 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3218 |58 |0 |1116 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3219 |58 |0 |1115 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3220 |58 |0 |1117 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3221 |58 |0 |1120 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3222 |23 |20 |821 |750 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3223 |23 |20 |816 |750 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3224 |23 |20 |814 |750 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3225 |23 |20 |820 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3226 |23 |20 |817 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3227 |23 |20 |815 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3228 |23 |20 |818 |750 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3229 |23 |20 |819 |750 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3230 |24 |0 |824 |750 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3231 |24 |0 |827 |750 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3232 |24 |0 |825 |750 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3233 |24 |0 |828 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3234 |24 |0 |826 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3235 |24 |0 |829 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3236 |24 |0 |822 |750 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3237 |24 |0 |823 |750 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |3238 |54 |0 |1091 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3239 |54 |0 |1095 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3240 |54 |0 |1092 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3241 |54 |0 |1094 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3242 |54 |0 |1099 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3243 |54 |0 |1100 |750 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3244 |54 |0 |1101 |750 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3245 |54 |0 |1102 |750 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3246 |54 |20 |1090 |750 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3247 |55 |0 |1093 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3248 |55 |0 |1098 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3249 |55 |0 |1096 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3250 |55 |0 |1097 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3251 |56 |0 |1108 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3252 |56 |20 |1104 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3253 |56 |20 |1106 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3254 |47 |0 |1071 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3255 |47 |20 |1061 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3256 |47 |20 |1066 |750 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3257 |44 |20 |738 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3258 |45 |20 |741 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3259 |42 |20 |744 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3260 |43 |20 |745 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3261 |46 |20 |766 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3262 |3 |0 |903 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3263 |3 |0 |909 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3264 |3 |0 |918 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3265 |3 |0 |921 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3266 |3 |20 |888 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3267 |3 |20 |891 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3268 |3 |20 |894 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3269 |3 |20 |897 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3270 |3 |20 |900 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3271 |30 |20 |899 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3272 |31 |20 |934 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3273 |32 |0 |937 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3274 |32 |0 |941 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3275 |32 |0 |947 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3276 |32 |0 |949 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3277 |32 |20 |927 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3278 |32 |20 |929 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3279 |32 |20 |931 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3280 |32 |20 |933 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3281 |32 |20 |935 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3282 |33 |0 |957 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3283 |33 |0 |959 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3284 |33 |0 |962 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3285 |33 |0 |963 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3286 |33 |20 |953 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3287 |33 |20 |954 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3288 |33 |20 |955 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3289 |33 |20 |956 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3290 |33 |20 |952 |750 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3291 |34 |20 |952 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3292 |29 |0 |881 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3293 |29 |20 |869 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3294 |29 |0 |877 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3295 |29 |0 |879 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3296 |29 |20 |873 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3297 |29 |20 |867 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3298 |29 |19 |29033 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3299 |29 |20 |865 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3300 |19 |0 |977 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3301 |19 |1 |29485 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3302 |19 |0 |979 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3303 |19 |0 |981 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3304 |19 |20 |965 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3305 |19 |20 |967 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3306 |19 |20 |969 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3307 |19 |20 |971 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3308 |35 |20 |970 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3309 |36 |20 |988 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3310 |37 |0 |995 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3311 |37 |1 |29592 |750 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3312 |37 |0 |997 |750 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3313 |37 |0 |999 |750 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3314 |37 |20 |983 |750 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3315 |37 |20 |985 |750 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3316 |37 |20 |987 |750 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |3317 |37 |20 |989 |750 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
TABLE |applications
FIELDS|applicationid|hostid|name |flags|
@@ -1134,5130 +1134,5130 @@ ROW |94 |ES cluster state
ROW |95 |Replicas state |
TABLE |items
-FIELDS|itemid|type|snmp_oid |hostid|name |key_ |delay |history|trends|status|value_type|trapper_hosts|units |formula|logtimefmt |templateid|valuemapid|params |ipmi_sensor |authtype|username |password |publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint |master_itemid|timeout|url |query_fields |posts|status_codes|follow_redirects|post_type|headers |retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|
-ROW |10061 |5 | |10047 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10062 |5 | |10047 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10063 |5 | |10047 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10064 |5 | |10047 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10065 |5 | |10047 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10066 |5 | |10047 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10067 |5 | |10048 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |10068 |5 | |10048 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |10069 |5 | |10048 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |10070 |5 | |10048 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |10071 |5 | |10048 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |10072 |5 | |10048 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |22183 |5 | |10047 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22185 |5 | |10047 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22187 |5 | |10047 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22189 |5 | |10047 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22191 |5 | |10047 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22196 |5 | |10047 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22199 |5 | |10047 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22219 |5 | |10047 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22231 |0 | |10050 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22232 |0 | |10050 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22396 |5 | |10047 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22399 |5 | |10047 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22400 |5 | |10047 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22401 |5 | |10047 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22402 |5 | |10047 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22404 |5 | |10047 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22406 |5 | |10047 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22408 |5 | |10047 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22412 |5 | |10047 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22414 |5 | |10047 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22416 |5 | |10047 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22418 |5 | |10047 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22420 |5 | |10047 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22422 |5 | |10047 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22424 |5 | |10047 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22426 |5 | |10047 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22430 |5 | |10047 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22689 |5 | |10047 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22835 |0 | |10074 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22836 |0 | |10074 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22837 |0 | |10074 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22838 |0 | |10074 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22839 |0 | |10074 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22840 |0 | |10074 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22841 |0 | |10074 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22842 |0 | |10074 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22843 |0 | |10074 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22844 |0 | |10074 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22845 |0 | |10074 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22846 |0 | |10074 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22848 |0 | |10074 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22851 |0 | |10074 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22852 |0 | |10074 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22853 |0 | |10074 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22854 |0 | |10074 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22855 |0 | |10074 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22856 |0 | |10074 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22857 |0 | |10074 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22858 |0 | |10074 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22859 |0 | |10074 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22860 |0 | |10074 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22861 |0 | |10074 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22862 |0 | |10074 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22863 |0 | |10074 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22867 |0 | |10074 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22868 |0 | |10074 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22869 |0 | |10074 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22870 |0 | |10074 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22871 |0 | |10074 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22872 |0 | |10074 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22875 |0 | |10075 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22876 |0 | |10075 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22877 |0 | |10075 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22878 |0 | |10075 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22879 |0 | |10075 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22880 |0 | |10075 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22881 |0 | |10075 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22882 |0 | |10075 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22883 |0 | |10075 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22884 |0 | |10075 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22885 |0 | |10075 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22886 |0 | |10075 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22888 |0 | |10075 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22891 |0 | |10075 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22892 |0 | |10075 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22893 |0 | |10075 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22894 |0 | |10075 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22895 |0 | |10075 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22896 |0 | |10075 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22897 |0 | |10075 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22898 |0 | |10075 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22899 |0 | |10075 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22900 |0 | |10075 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22901 |0 | |10075 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22902 |0 | |10075 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22903 |0 | |10075 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22907 |0 | |10075 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22908 |0 | |10075 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22909 |0 | |10075 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22910 |0 | |10075 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22911 |0 | |10075 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22912 |0 | |10075 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22917 |0 | |10076 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22918 |0 | |10076 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22920 |0 | |10076 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22921 |0 | |10076 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22922 |0 | |10076 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22923 |0 | |10076 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22924 |0 | |10076 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22933 |0 | |10076 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22934 |0 | |10076 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22938 |0 | |10076 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22939 |0 | |10076 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22940 |0 | |10076 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22941 |0 | |10076 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22942 |0 | |10076 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22943 |0 | |10076 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22944 |0 | |10076 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22945 |0 | |10076 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22946 |0 | |10076 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22947 |0 | |10076 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22948 |0 | |10076 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22949 |0 | |10076 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22950 |0 | |10076 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22951 |0 | |10076 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22952 |0 | |10076 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22961 |0 | |10077 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22962 |0 | |10077 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22963 |0 | |10077 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22965 |0 | |10077 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22968 |0 | |10077 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22971 |0 | |10077 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22972 |0 | |10077 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22973 |0 | |10077 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22974 |0 | |10077 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22978 |0 | |10077 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22980 |0 | |10077 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22981 |0 | |10077 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22982 |0 | |10077 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22983 |0 | |10077 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22984 |0 | |10077 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22985 |0 | |10077 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22986 |0 | |10077 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22987 |0 | |10077 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22988 |0 | |10077 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22989 |0 | |10077 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22990 |0 | |10077 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22991 |0 | |10077 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22992 |0 | |10077 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22996 |0 | |10078 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22997 |0 | |10078 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22998 |0 | |10078 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22999 |0 | |10078 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23000 |0 | |10078 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23001 |0 | |10078 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23002 |0 | |10078 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23003 |0 | |10078 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23004 |0 | |10078 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23005 |0 | |10078 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23007 |0 | |10078 |CPU iowait time |system.cpu.util[,iowait] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23011 |0 | |10078 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23012 |0 | |10078 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23013 |0 | |10078 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23014 |0 | |10078 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23015 |0 | |10078 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23016 |0 | |10078 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23017 |0 | |10078 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23018 |0 | |10078 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23019 |0 | |10078 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23020 |0 | |10078 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23021 |0 | |10078 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23022 |0 | |10078 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23023 |0 | |10078 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23024 |0 | |10078 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23025 |0 | |10078 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23026 |0 | |10078 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23027 |0 | |10078 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23028 |0 | |10078 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23029 |0 | |10078 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23030 |0 | |10078 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23031 |0 | |10078 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23032 |0 | |10078 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23035 |0 | |10079 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23036 |0 | |10079 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23039 |0 | |10079 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23041 |0 | |10079 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23042 |0 | |10079 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23043 |0 | |10079 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23053 |0 | |10079 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23054 |0 | |10079 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23058 |0 | |10079 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23059 |0 | |10079 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23060 |0 | |10079 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23061 |0 | |10079 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23062 |0 | |10079 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23063 |0 | |10079 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23067 |0 | |10079 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23068 |0 | |10079 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23069 |0 | |10079 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23070 |0 | |10079 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23071 |0 | |10079 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23072 |0 | |10079 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23073 |0 | |10075 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23074 |0 | |10075 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23075 |0 | |10074 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23076 |0 | |10074 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23077 |0 | |10079 |Incoming network traffic on en0 |net.if.in[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23078 |0 | |10079 |Outgoing network traffic on en0 |net.if.out[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23108 |0 | |10076 |CPU available physical processors in the shared pool |system.stat[cpu,app] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23109 |0 | |10076 |CPU entitled capacity consumed |system.stat[cpu,ec] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23110 |0 | |10076 |CPU idle time |system.stat[cpu,id] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23111 |0 | |10076 |CPU logical processor utilization |system.stat[cpu,lbusy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23112 |0 | |10076 |CPU number of physical processors consumed |system.stat[cpu,pc] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23113 |0 | |10076 |CPU system time |system.stat[cpu,sy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23114 |0 | |10076 |CPU user time |system.stat[cpu,us] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23115 |0 | |10076 |CPU iowait time |system.stat[cpu,wa] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23116 |0 | |10076 |Amount of data transferred |system.stat[disk,bps] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23117 |0 | |10076 |Number of transfers |system.stat[disk,tps] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23118 |0 | |10076 |Processor units is entitled to receive |system.stat[ent] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23119 |0 | |10076 |Kernel thread context switches |system.stat[faults,cs] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23120 |0 | |10076 |Device interrupts |system.stat[faults,in] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23121 |0 | |10076 |System calls |system.stat[faults,sy] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23122 |0 | |10076 |Length of the swap queue |system.stat[kthr,b] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23123 |0 | |10076 |Length of the run queue |system.stat[kthr,r] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23124 |0 | |10076 |Active virtual pages |system.stat[memory,avm] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23125 |0 | |10076 |Free real memory |system.stat[memory,fre] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23126 |0 | |10076 |File page-ins per second |system.stat[page,fi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23127 |0 | |10076 |File page-outs per second |system.stat[page,fo] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23128 |0 | |10076 |Pages freed (page replacement) |system.stat[page,fr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23129 |0 | |10076 |Pages paged in from paging space |system.stat[page,pi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23130 |0 | |10076 |Pages paged out to paging space |system.stat[page,po] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23131 |0 | |10076 |Pages scanned by page-replacement algorithm |system.stat[page,sr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23171 |5 | |10047 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23251 |5 | |10047 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23318 |0 | |10050 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23329 |0 | |10074 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23340 |5 | |10048 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23341 |5 | |10048 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23342 |5 | |10048 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23343 |5 | |10048 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23344 |5 | |10048 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23345 |5 | |10048 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23346 |5 | |10048 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23347 |5 | |10048 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23348 |5 | |10048 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23349 |5 | |10048 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23350 |5 | |10048 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23351 |5 | |10048 |Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23352 |5 | |10048 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23353 |5 | |10048 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23354 |5 | |10048 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23355 |5 | |10048 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23356 |5 | |10048 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23357 |5 | |10048 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23358 |5 | |10048 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23359 |5 | |10048 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23360 |5 | |10048 |Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |23540 |0 | |10075 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23634 |5 | |10047 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23644 |3 | |10093 |FTP service is running |net.tcp.service[ftp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23645 |3 | |10094 |HTTP service is running |net.tcp.service[http] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23646 |3 | |10095 |HTTPS service is running |net.tcp.service[https] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23647 |3 | |10096 |IMAP service is running |net.tcp.service[imap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23648 |3 | |10097 |LDAP service is running |net.tcp.service[ldap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23649 |3 | |10098 |NNTP service is running |net.tcp.service[nntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23650 |3 | |10099 |NTP service is running |net.udp.service[ntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23651 |3 | |10100 |POP service is running |net.tcp.service[pop] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23652 |3 | |10101 |SMTP service is running |net.tcp.service[smtp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23653 |3 | |10102 |SSH service is running |net.tcp.service[ssh] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23654 |3 | |10103 |Telnet service is running |net.tcp.service[telnet] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23661 |5 | |10047 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23663 |5 | |10047 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |25366 |5 | |10047 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |25368 |5 | |10048 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |25369 |5 | |10048 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |25370 |5 | |10047 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |25665 |5 | |10047 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |25666 |5 | |10047 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26856 |16 | |10169 |mp PS Old Gen max |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26857 |16 | |10169 |mp PS Old Gen committed |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26858 |16 | |10169 |mp PS Old Gen used |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26859 |16 | |10169 |mp PS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26860 |16 | |10169 |mp PS Perm Gen max |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26861 |16 | |10169 |mp Perm Gen used |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26862 |16 | |10169 |mp Perm Gen max |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26863 |16 | |10169 |mp Code Cache committed |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26864 |16 | |10169 |mp CMS Perm Gen used |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26865 |16 | |10169 |mp Code Cache max |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26866 |16 | |10169 |mp Code Cache used |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26867 |16 | |10169 |mp Perm Gen committed |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26868 |16 | |10169 |mp PS Perm Gen used |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26869 |16 | |10169 |mp Tenured Gen committed |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26870 |16 | |10169 |th Daemon Thread Count |jmx["java.lang:type=Threading",DaemonThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26871 |16 | |10169 |jvm Version |jmx["java.lang:type=Runtime",VmVersion] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26872 |16 | |10169 |th Peak Thread Count |jmx["java.lang:type=Threading",PeakThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26873 |16 | |10169 |th Thread Count |jmx["java.lang:type=Threading",ThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26874 |16 | |10169 |th Total Started Thread Count |jmx["java.lang:type=Threading",TotalStartedThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26875 |16 | |10169 |jvm Name |jmx["java.lang:type=Runtime",VmName] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26876 |16 | |10169 |jvm Uptime |jmx["java.lang:type=Runtime",Uptime] |1m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26877 |16 | |10169 |mp Tenured Gen used |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26878 |16 | |10169 |mp Tenured Gen max |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26879 |16 | |10169 |os Max File Descriptor Count |jmx["java.lang:type=OperatingSystem",MaxFileDescriptorCount] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26880 |16 | |10169 |os Open File Descriptor Count |jmx["java.lang:type=OperatingSystem",OpenFileDescriptorCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26881 |16 | |10169 |os Process CPU Load |jmx["java.lang:type=OperatingSystem",ProcessCpuLoad] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26882 |16 | |10169 |mp CMS Perm Gen max |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26883 |16 | |10169 |mp CMS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26884 |16 | |10169 |gc MarkSweepCompact number of collections per second |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26885 |16 | |10169 |gc Copy accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=Copy",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26886 |16 | |10169 |gc MarkSweepCompact accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26887 |16 | |10169 |gc ParNew number of collections per second |jmx["java.lang:type=GarbageCollector,name=ParNew",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26888 |16 | |10169 |gc ParNew accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ParNew",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26889 |16 | |10169 |gc Copy number of collections per second |jmx["java.lang:type=GarbageCollector,name=Copy",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26890 |16 | |10169 |gc ConcurrentMarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26891 |16 | |10169 |cl Unloaded Class Count |jmx["java.lang:type=ClassLoading",UnloadedClassCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26892 |16 | |10169 |cl Total Loaded Class Count |jmx["java.lang:type=ClassLoading",TotalLoadedClassCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26893 |16 | |10169 |comp Name of the current JIT compiler |jmx["java.lang:type=Compilation",Name] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26894 |16 | |10169 |comp Accumulated time spent in compilation |jmx["java.lang:type=Compilation",TotalCompilationTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26895 |16 | |10169 |gc ConcurrentMarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26896 |16 | |10169 |gc PS MarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26897 |16 | |10169 |gc PS MarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26898 |16 | |10169 |mem Object Pending Finalization Count |jmx["java.lang:type=Memory",ObjectPendingFinalizationCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26899 |16 | |10169 |mem Non-Heap Memory used |jmx["java.lang:type=Memory",NonHeapMemoryUsage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26900 |16 | |10169 |mp CMS Old Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26901 |16 | |10169 |mp CMS Old Gen max |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26902 |16 | |10169 |mp CMS Old Gen used |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26903 |16 | |10169 |mem Non-Heap Memory max |jmx["java.lang:type=Memory",NonHeapMemoryUsage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26904 |16 | |10169 |mem Non-Heap Memory committed |jmx["java.lang:type=Memory",NonHeapMemoryUsage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26905 |16 | |10169 |gc PS Scavenge accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS Scavenge",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26906 |16 | |10169 |gc PS Scavenge number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS Scavenge",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26907 |16 | |10169 |mem Heap Memory committed |jmx["java.lang:type=Memory",HeapMemoryUsage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26908 |16 | |10169 |mem Heap Memory max |jmx["java.lang:type=Memory",HeapMemoryUsage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26909 |16 | |10169 |mem Heap Memory used |jmx["java.lang:type=Memory",HeapMemoryUsage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26910 |16 | |10169 |cl Loaded Class Count |jmx["java.lang:type=ClassLoading",LoadedClassCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26925 |12 | |10171 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26926 |12 | |10171 |Processor Vcc |processor_vcc |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |Processor Vcc |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26927 |12 | |10171 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26928 |12 | |10171 |BB Ambient Temp |bb_ambient_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |BB Ambient Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26929 |12 | |10171 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26930 |12 | |10171 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26931 |12 | |10171 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26932 |12 | |10171 |BB +1.8V SM |bb_1.8v_sm |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.8V SM |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26933 |12 | |10172 |Front Panel Temp |front_panel_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Front Panel Temp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26934 |12 | |10172 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26935 |12 | |10172 |System Fan 2 |system_fan_2 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 2 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26936 |12 | |10172 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26937 |12 | |10172 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26938 |12 | |10172 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26939 |12 | |10172 |BB +1.05V PCH |bb_1.05v_pch |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.05V PCH |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26940 |12 | |10172 |BB +1.1V P1 Vccp |bb_1.1v_p1_vccp |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.1V P1 Vccp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26941 |12 | |10172 |BB +1.5V P1 DDR3 |bb_1.5v_p1_ddr3 |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.5V P1 DDR3|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26942 |12 | |10172 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26943 |12 | |10172 |Baseboard Temp |baseboard_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Baseboard Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26944 |3 | |10173 |Version |vmware.version[{$URL}] |1h |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26945 |3 | |10173 |Full name |vmware.fullname[{$URL}] |1h |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26946 |3 | |10173 |Event log |vmware.eventlog[{$URL},skip] |1m |90d |0 |0 |2 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26947 |3 | |10174 |Memory size |vmware.vm.memory.size[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Total size of configured memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26948 |3 | |10174 |Host memory usage |vmware.vm.memory.size.usage.host[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of host physical memory allocated to the VM, accounting for saving from memory sharing with other VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26949 |3 | |10174 |Guest memory usage |vmware.vm.memory.size.usage.guest[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory that is being used by the VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26950 |3 | |10174 |Power state |vmware.vm.powerstate[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |12 | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The current power state of the virtual machine. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26951 |3 | |10174 |Committed storage space |vmware.vm.storage.committed[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Total storage space, in bytes, committed to this virtual machine across all datastores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26952 |3 | |10174 |Uptime |vmware.vm.uptime[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26953 |3 | |10174 |Unshared storage space |vmware.vm.storage.unshared[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Total storage space, in bytes, occupied by the virtual machine across all datastores, that is not shared with any other virtual machine. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26954 |3 | |10174 |Uncommitted storage space |vmware.vm.storage.uncommitted[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Additional storage space, in bytes, potentially used by this virtual machine on all datastores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26955 |3 | |10174 |Swapped memory |vmware.vm.memory.size.swapped[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory swapped out to the VM's swap device by ESX. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26956 |3 | |10174 |Shared memory |vmware.vm.memory.size.shared[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory shared through transparent page sharing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26957 |3 | |10174 |CPU usage |vmware.vm.cpu.usage[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Current upper-bound on CPU usage. The upper-bound is based on the host the virtual machine is current running on, as well as limits configured on the virtual machine itself or any parent resource pool. Valid while the virtual machine is running. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26958 |3 | |10174 |CPU ready |vmware.vm.cpu.ready[{$URL},{HOST.HOST}] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval (VMware vCenter/ESXi Server performance counter sampling interval - 20 seconds) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26959 |3 | |10174 |Number of virtual CPUs |vmware.vm.cpu.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of virtual CPUs assigned to the guest. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26960 |3 | |10174 |Datacenter name |vmware.vm.datacenter.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Datacenter name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26961 |3 | |10174 |Hypervisor name |vmware.vm.hv.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Hypervisor name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26962 |3 | |10174 |Private memory |vmware.vm.memory.size.private[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Amount of memory backed by host memory and not being shared. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26963 |3 | |10174 |Compressed memory |vmware.vm.memory.size.compressed[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of memory currently in the compression cache for this VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26964 |3 | |10174 |Ballooned memory |vmware.vm.memory.size.ballooned[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26965 |3 | |10174 |Cluster name |vmware.vm.cluster.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Cluster name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26966 |3 | |10175 |Number of bytes transmitted |vmware.hv.network.out[{$URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26967 |3 | |10175 |Number of bytes received |vmware.hv.network.in[{$URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26968 |3 | |10175 |Used memory |vmware.hv.memory.used[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Physical memory usage on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26969 |3 | |10175 |Ballooned memory |vmware.hv.memory.size.ballooned[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26970 |3 | |10175 |Health state rollup |vmware.hv.sensor.health.state[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The host health state rollup sensor value: gray - unknown, ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26971 |3 | |10175 |Overall status |vmware.hv.status[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The overall alarm status of the host: gray - unknown, ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26972 |3 | |10175 |Number of guest VMs |vmware.hv.vm.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26973 |3 | |10175 |Version |vmware.hv.version[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Dot-separated version string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26974 |3 | |10175 |Uptime |vmware.hv.uptime[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26975 |3 | |10175 |Vendor |vmware.hv.hw.vendor[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The hardware vendor identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26976 |3 | |10175 |Bios UUID |vmware.hv.hw.uuid[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The hardware BIOS identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26977 |3 | |10175 |CPU frequency |vmware.hv.hw.cpu.freq[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The speed of the CPU cores. This is an average value if there are multiple speeds. The product of CPU frequency and number of cores is approximately equal to the sum of the MHz for all the individual cores on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26978 |3 | |10175 |Full name |vmware.hv.fullname[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The complete product name, including the version information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26979 |3 | |10175 |Datacenter name |vmware.hv.datacenter.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Datacenter name of the hypervisor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26980 |3 | |10175 |CPU usage |vmware.hv.cpu.usage[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Aggregated CPU usage across all cores on the host in Hz. This is only available if the host is connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26981 |3 | |10175 |CPU model |vmware.hv.hw.cpu.model[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The CPU model. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26982 |3 | |10175 |CPU cores |vmware.hv.hw.cpu.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of physical CPU cores on the host. Physical CPU cores are the processors contained by a CPU package. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26983 |3 | |10175 |Model |vmware.hv.hw.model[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The system model identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26984 |3 | |10175 |Total memory |vmware.hv.hw.memory[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The physical memory size. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26985 |3 | |10175 |CPU threads |vmware.hv.hw.cpu.threads[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of physical CPU threads on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26986 |3 | |10175 |Cluster name |vmware.hv.cluster.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Cluster name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26987 |3 | |10173 |Discover VMware clusters |vmware.cluster.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of clusters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26988 |3 | |10173 |Discover VMware hypervisors |vmware.hv.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of hypervisors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26989 |3 | |10173 |Discover VMware VMs |vmware.vm.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26990 |3 | |10174 |Network device discovery |vmware.vm.net.if.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of all network devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26991 |3 | |10174 |Disk device discovery |vmware.vm.vfs.dev.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of all disk devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26992 |3 | |10174 |Mounted filesystem discovery |vmware.vm.vfs.fs.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of all guest file systems. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26993 |3 | |10175 |Datastore discovery |vmware.hv.datastore.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26994 |3 | |10173 |Status of "{#CLUSTER.NAME}" cluster |vmware.cluster.status[{$URL},{#CLUSTER.NAME}] |1m |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26995 |3 | |10174 |Number of packets transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$URL},{HOST.HOST},{#IFNAME},pps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26996 |3 | |10174 |Number of bytes transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$URL},{HOST.HOST},{#IFNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26997 |3 | |10174 |Number of packets received on interface {#IFDESC} |vmware.vm.net.if.in[{$URL},{HOST.HOST},{#IFNAME},pps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26998 |3 | |10174 |Number of bytes received on interface {#IFDESC} |vmware.vm.net.if.in[{$URL},{HOST.HOST},{#IFNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |26999 |3 | |10174 |Average number of writes to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$URL},{HOST.HOST},{#DISKNAME},ops] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27000 |3 | |10174 |Average number of bytes written to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$URL},{HOST.HOST},{#DISKNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27001 |3 | |10174 |Average number of reads from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$URL},{HOST.HOST},{#DISKNAME},ops] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27002 |3 | |10174 |Average number of bytes read from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$URL},{HOST.HOST},{#DISKNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27003 |3 | |10174 |Used disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},used] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27004 |3 | |10174 |Total disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},total] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27005 |3 | |10174 |Free disk space on {#FSNAME} (percentage) |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},pfree] |{$VMWARE_INTERVAL} |90d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27006 |3 | |10174 |Free disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},free] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27007 |3 | |10175 |Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27008 |3 | |10175 |Total size of datastore {#DATASTORE} |vmware.hv.datastore.size[{$URL},{HOST.HOST},{#DATASTORE}] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27009 |3 | |10175 |Free space on datastore {#DATASTORE} (percentage) |vmware.hv.datastore.size[{$URL},{HOST.HOST},{#DATASTORE},pfree] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27010 |3 | |10175 |Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27029 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10182 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27030 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10182 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27031 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10183 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27032 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10183 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27065 |3 | |10186 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27066 |3 | |10186 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27067 |3 | |10186 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27068 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10187 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27069 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27070 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27071 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27072 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27073 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27074 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27075 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27076 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27077 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27078 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10188 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27079 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27080 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27081 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27082 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27083 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27084 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27085 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27086 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27087 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27088 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10189 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27089 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27090 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27091 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27092 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27093 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27094 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27095 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27096 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27097 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27098 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10190 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27099 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27100 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27101 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27102 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27103 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27104 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27105 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27106 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27107 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10192 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27120 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27121 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27141 |20 |1.3.6.1.2.1.1.5.0 |10203 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27143 |5 | |10203 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27146 |17 | |10203 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27209 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17] |10207 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27210 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2] |10207 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27211 |20 |discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5] |10207 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27212 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX} |10207 |{#SNMPVALUE}: Temperature |sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The current temperature reading in degrees celsius from this hardware component's temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27213 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Fan status |sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;Current status of the Fan tray. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27214 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX} |10207 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27236 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.6.0 |10208 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27237 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.10.0 |10208 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27238 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.7.0 |10208 |Overall system health status |system.status[swOperStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |25 | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;The current operational status of the switch.The states are as follow:&eol;online(1) means the switch is accessible by an external Fibre Channel port&eol;offline(2) means the switch is not accessible&eol;testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port&eol;faulty(4) means the switch is not operational. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27240 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.1.0 |10208 |CPU utilization |system.cpu.util[swCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;System's CPU usage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27242 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27243 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27246 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature status of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27247 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature |sensor.temp.value[swSensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature readings of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27248 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27249 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[swSensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;The current value (reading) of the sensor.&eol;The value, -2147483648, represents an unknown quantity.&eol;The fan value will be in RPM(revolution per minute) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27250 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan status |sensor.fan.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27294 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10209 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27295 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10210 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27296 |20 |1.3.6.1.4.1.1991.1.1.1.1.2.0 |10210 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27297 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10211 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form 'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27302 |20 |discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1] |10210 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27303 |20 |discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1] |10210 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFanTable: A table of each fan information. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27304 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3] |10210 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27306 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18] |10210 |Temperature Discovery Chassis |temp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27307 |20 |discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2] |10211 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27308 |20 |discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2] |10211 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27309 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4] |10211 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27310 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5] |10211 |Stack Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering snStackingConfigUnitTable for Model names |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1] |10211 |Chassis Discovery |chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasUnitIndex: The index to chassis table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27312 |20 |1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX} |10210 |PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27313 |20 |1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX} |10210 |Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27314 |20 |1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX} |10210 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTempValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celcius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27317 |20 |1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX} |10211 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27318 |20 |1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX} |10211 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27319 |20 |1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX} |10211 |Unit {#SNMPINDEX}: Hardware model name |system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-STACKING-MIB&eol;A description of the configured/active system type for each unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27320 |20 |1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX} |10211 |Unit {#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27376 |20 |1.3.6.1.4.1.9.2.1.58 |10215 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27378 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10216 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27379 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10216 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27390 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10212 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27391 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10213 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27393 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10216 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10217 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27395 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10217 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27396 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10217 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27415 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27416 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27417 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10213 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27419 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10216 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27420 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27421 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27422 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27423 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1] |10221 |CPU and Memory and Flash Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27474 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1] |10221 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A list of power supply residents in the S-series chassis. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27475 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1] |10221 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27476 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2] |10221 |Stack Unit Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27478 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;CPU utilization in percentage for last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27479 |20 |1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX} |10221 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |31 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27480 |20 |1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX} |10221 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |30 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the fan tray {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27481 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Operating system |system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Current code version of this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27482 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware version(revision) |system.hw.version[chStackUnitProductRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit manufacturer's product revision |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27483 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit's serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27484 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware model name |system.hw.model[chStackUnitModelID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The plugged-in model ID for this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27485 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX} |10221 |Device {#SNMPVALUE}: Temperature |sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The temperature of the unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27508 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10222 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27509 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10222 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27510 |20 |1.3.6.1.2.1.1.1.0 |10222 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27511 |20 |1.3.6.1.4.1.171.10.97.2.36.1.1.3.0 |10222 |CPU utilization |system.cpu.util[myCPUUtilization5Min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-PROCESS-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2] |10222 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27513 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2] |10222 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27514 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3] |10222 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27515 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3] |10222 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27517 |20 |1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Temperature |sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB&eol;Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27518 |20 |1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Power supply status |sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27519 |20 |1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Fan status |sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27543 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10223 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27544 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10223 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27545 |20 |1.3.6.1.4.1.171.12.1.1.12.0 |10223 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;A text string containing the serial number of this device. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27546 |20 |1.3.6.1.2.1.1.1.0 |10223 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27547 |20 |1.3.6.1.4.1.171.12.1.1.6.2.0 |10223 |CPU utilization |system.cpu.util[agentCPUutilizationIn1min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27548 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1] |10223 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27549 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1] |10223 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27550 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3] |10223 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swPowerID of EQUIPMENT-MIB::swPowerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27551 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3] |10223 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swFanID of EQUIPMENT-MIB::swFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27553 |20 |1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Temperature |sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;The shelf current temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27554 |20 |1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[swPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |34 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current power status.&eol;lowVoltage : The voltage of the power unit is too low.&eol;overCurrent: The current of the power unit is too high.&eol;working : The power unit is working normally.&eol;fail : The power unit has failed.&eol;connect : The power unit is connected but not powered on.&eol;disconnect : The power unit is not connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27555 |20 |1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Fan status |sensor.fan.status[swFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |33 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current fan status.&eol;speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.&eol;speed-low : Fan spin using the lowest speed.&eol;speed-middle: Fan spin using the middle speed.&eol;speed-high : Fan spin using the highest speed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27579 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27580 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27582 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10224 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27583 |20 |1.3.6.1.2.1.47.1.1.1.1.2.1 |10224 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27584 |20 |1.3.6.1.4.1.1916.1.1.1.8.0 |10224 |Device: Temperature |sensor.temp.value[extremeCurrentTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature readings of testpoint: Device&eol;Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27585 |20 |1.3.6.1.4.1.1916.1.1.1.7.0 |10224 |Device: Temperature status |sensor.temp.status[extremeOverTemperatureAlarm.0] |3m |2w |0d |0 |3 | | | | |NULL |37 | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature status of testpoint: Device |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27586 |20 |1.3.6.1.4.1.1916.1.32.1.2.0 |10224 |CPU utilization |system.cpu.util[extremeCpuMonitorTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total CPU utlization (percentage) as of last sampling. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27587 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1] |10224 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27588 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1] |10224 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Table of status of all power supplies in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27589 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1] |10224 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27591 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Total memory |vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of DRAM in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27593 |20 |1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX} |10224 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |38 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27594 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan speed |sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27595 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[extremeFanOperational.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |36 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Operational status of a cooling fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27665 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Module Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filter limits results to 'Module level1' or Fabric Modules |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27666 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27667 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 7: fan(7) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27668 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 6: powerSupply(6) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27669 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27671 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX} |10227 |{#MODULE_NAME}: CPU utilization |system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage&eol;will calculate the overall CPU usage on the entity, and it&eol;is not sensible with the number of CPU on the entity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27672 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX} |10227 |{#SNMPVALUE}: Temperature |sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27673 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Fan status |sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;fanError(41) means that the fan stops working. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27674 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Power supply status |sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;psuError(51) means that the Power Supply Unit is in the state of fault.&eol;rpsError(61) means the Redundant Power Supply is in the state of fault. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27675 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10227 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27676 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27677 |20 |1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX} |10227 |{#ENT_NAME}: Firmware version |system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27678 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27679 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27745 |20 |discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |MPU Discovery |mpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27746 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27747 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1] |10229 |FAN Discovery |discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27748 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27749 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10229 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27750 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27751 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Temperature |sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27753 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX} |10229 |{#ENT_NAME}: CPU utilization |system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27754 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27755 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX} |10229 |#{#SNMPVALUE}: Fan status |sensor.fan.status[hwEntityFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |41 | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27777 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27778 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27779 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7] |10230 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering sensor's table with temperature filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27780 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2] |10230 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27781 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2] |10230 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A textual description of the power supply, that can be assigned by the administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27782 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2] |10230 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |icsChassisFanDescription of icsChassisFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27783 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |43 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27784 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature |sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The current value read from the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27785 |20 |1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX} |10230 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The serial number of the FRU. If not available, this value is a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27786 |20 |1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Power supply status |sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |44 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;Actual status of the power supply:&eol;(1) unknown: status not known.&eol;(2) disabled: power supply is disabled.&eol;(3) failed - power supply is unable to supply power due to failure.&eol;(4) warning - power supply is supplying power, but an output or sensor is bad or warning.&eol;(5) standby - power supply believed usable,but not supplying power.&eol;(6) engaged - power supply is supplying power.&eol;(7) redundant - power supply is supplying power, but not needed.&eol;(8) notPresent - power supply is supplying power is not present. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27787 |20 |1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Fan status |sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |42 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the fan unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27812 |20 |1.3.6.1.4.1.2636.3.1.2.0 |10231 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The name, model, or detailed description of the box,indicating which product the box is about, for example 'M40'. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27813 |20 |1.3.6.1.4.1.2636.3.1.3.0 |10231 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The serial number of this subject, blank if unknown or unavailable. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27814 |20 |1.3.6.1.4.1.2636.3.4.2.3.1.0 |10231 |Overall system health status |system.status[jnxRedAlarmState.0] |30s |2w |0d |0 |3 | | | | |NULL |46 | | |0 | | | | |0 |NULL |MIB: JUNIPER-ALARM-MIB&eol;The red alarm indication on the craft interface panel.&eol;The red alarm is on when there is some system&eol;failure or power supply failure or the system&eol;is experiencing a hardware malfunction or some&eol;threshold is being exceeded.&eol;&eol;This red alarm state could be turned off by the&eol;ACO/LT (Alarm Cut Off / Lamp Test) button on the&eol;front panel module. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27815 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |CPU and Memory Discovery |jnxOperatingTable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27816 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |Temperature discovery |jnxOperatingTable.discovery.temp |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Temperature&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27817 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4] |10231 |FAN Discovery |jnxOperatingTable.discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Fans |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27818 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2] |10231 |PSU Discovery |jnxOperatingTable.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27821 |20 |1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} |10231 |{#SENSOR_INFO}: Temperature |sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The temperature in Celsius (degrees C) of {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27822 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Fan status |sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27823 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Power supply status |sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.&eol;This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27893 |20 |1.3.6.1.2.1.1.1.0 |10233 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27894 |20 |1.3.6.1.4.1.14988.1.1.7.3.0 |10233 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;RouterBOARD serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27895 |20 |1.3.6.1.4.1.14988.1.1.7.4.0 |10233 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Current firmware version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27897 |20 |1.3.6.1.4.1.14988.1.1.3.10.0 |10233 |Device: Temperature |sensor.temp.value[mtxrHlTemperature] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;(mtxrHlTemperature) Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..)&eol;Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27898 |20 |1.3.6.1.2.1.25.2.3.1.5.65536 |10233 |Total memory |vm.memory.total[hrStorageSize.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27900 |20 |1.3.6.1.2.1.25.2.3.1.6.65536 |10233 |Used memory |vm.memory.used[hrStorageUsed.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27901 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10233 |CPU discovery |hrProcessorLoad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrProcessorTable discovery |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27902 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11] |10233 |Temperature CPU discovery |mtxrHlProcessorTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlProcessorTemperature&eol;Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27903 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2] |10233 |Storage discovery |storage.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27904 |20 |1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} |10233 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[hrProcessorLoad.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27905 |20 |1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX} |10233 |CPU: Temperature |sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;(mtxrHlProcessorTemperature) Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27906 |15 | |10233 |Disk-{#SNMPINDEX}: Space utilization |vfs.fs.pused[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageSize.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for Disk-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27907 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27908 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Used space |vfs.fs.used[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27930 |20 |1.3.6.1.4.1.4526.10.1.1.1.3.0 |10234 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27931 |20 |1.3.6.1.4.1.4526.10.1.1.1.4.0 |10234 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Serial number of the switch |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27935 |20 |1.3.6.1.4.1.4526.10.1.1.5.2.0 |10234 |Total memory |vm.memory.total[agentSwitchCpuProcessMemAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total Memory allocated for the tasks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27936 |20 |1.3.6.1.4.1.4526.10.1.1.4.9.0 |10234 |CPU utilization |system.cpu.util[agentSwitchCpuProcessTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27937 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.8.1.1] |10234 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorsTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27938 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.6.1.1] |10234 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::1.3.6.1.4.1.4526.10.43.1.6.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27939 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.7.1.1] |10234 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyIndex |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27940 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature status |sensor.temp.status[boxServicesTempSensorState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |51 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The state of temperature sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27941 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.5.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature |sensor.temp.value[boxServicesTempSensorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The temperature value reported by sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27942 |20 |1.3.6.1.4.1.4526.10.43.1.6.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Fan status |sensor.fan.status[boxServicesFanItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |50 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of fan |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27943 |20 |1.3.6.1.4.1.4526.10.43.1.7.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[boxServicesPowSupplyItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |49 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of power supply |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27967 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10235 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27968 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10235 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27970 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10235 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27971 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10235 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27972 |20 |1.3.6.1.4.1.27514.100.1.11.7.0 |10235 |Used memory |vm.memory.used[switchMemoryBusy.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27973 |20 |1.3.6.1.4.1.27514.100.1.11.6.0 |10235 |Total memory |vm.memory.total[switchMemorySize.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27975 |20 |1.3.6.1.4.1.27514.100.1.11.10.0 |10235 |CPU utilization |system.cpu.util[switchCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27997 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27998 |20 |1.3.6.1.4.1.11863.6.1.1.6.0 |10236 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The software version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27999 |20 |1.3.6.1.4.1.11863.6.1.1.8.0 |10236 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The Serial number of the product. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28000 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28001 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.1.1.1.1] |10236 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28002 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.2.1.1.1] |10236 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28003 |20 |1.3.6.1.4.1.11863.6.4.1.1.1.1.3.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: CPU utilization |system.cpu.util[tpSysMonitorCpu1Minute.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the CPU utilization in 1 minute.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28026 |20 |1.2.840.10036.3.1.2.1.3.5 |10237 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;A printable string used to identify the manufacturer's product name of the resource. Maximum string length is 128 octets. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28027 |20 |1.2.840.10036.3.1.2.1.4.5 |10237 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;Printable string used to identify the manufacturer's product version of the resource. Maximum string length is 128 octets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28031 |20 |1.3.6.1.4.1.10002.1.1.1.4.2.1.3.2 |10237 |CPU utilization |system.cpu.util[loadValue.2] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;5 minute load average of processor load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28141 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.3.0 |10250 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: NETSWITCH-MIB&eol;Contains the operating code version number (also known as software or firmware).&eol;For example, a software version such as A.08.01 is described as follows:&eol;A the function set available in your router&eol;08 the common release number&eol;01 updates to the current common release |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28142 |20 |1.3.6.1.4.1.11.2.36.1.1.2.9.0 |10250 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SEMI-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28143 |20 |1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0 |10250 |CPU utilization |system.cpu.util[hpSwitchCpuStat.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: STATISTICS-MIB&eol;The CPU utilization in percent(%).&eol;Reference: http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02597344&sp4ts.oid=51079 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28144 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10250 |Temperature Discovery |temp.precision0.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28145 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1] |10250 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of NETSWITCH-MIB::hpLocalMemTable, A table that contains information on all the local memory for each slot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28146 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.2 - fans and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28147 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.1 - power supplies and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28148 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |Temp Status Discovery |temp.status.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.3 - over temp status and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28149 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10250 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28150 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10250 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28153 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.7.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Used memory |vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently allocated bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28154 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Fan status |sensor.fan.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28155 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Power supply status |sensor.psu.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28156 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Temperature status |sensor.temp.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28157 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28158 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28196 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10251 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28197 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2] |10251 |Fan Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28198 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28199 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28200 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28201 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28202 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28203 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28205 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28206 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10251 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10252 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28246 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10252 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28248 |5 | |10047 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28250 |5 | |10048 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |28251 |5 | |10048 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |
-ROW |28306 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10254 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28307 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2] |10254 |Fan discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28308 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |Entity discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28309 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28323 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28324 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28325 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28326 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28327 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28328 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28329 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10254 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28341 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10255 |Overall system health status |system.status[globalSystemStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28342 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10255 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the model name of the system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28344 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10255 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the service tag of the system. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28345 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10255 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the firmware version of a remote access card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28346 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28347 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature Ambient Discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28348 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8] |10255 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::powerSupplyTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28349 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7] |10255 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::coolingDeviceTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28350 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2] |10255 |Physical Disk Discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::physicalDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28351 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2] |10255 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::virtualDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28352 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79] |10255 |Array Controller Discovery |physicaldisk.arr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28353 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1] |10255 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28354 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28355 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28356 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28357 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28358 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10255 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0600.0012.0001.0005 This attribute defines the status of the power supply. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28359 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan status |sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0005 This attribute defines the probe status of the cooling device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28360 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan speed |sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0006 This attribute defines the reading for a cooling device&eol;of subtype other than coolingDeviceSubTypeIsDiscrete. When the value&eol;for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the&eol;value returned for this attribute is the speed in RPM or the OFF/ON value&eol;of the cooling device. When the value for coolingDeviceSubType is&eol;coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28361 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk status |system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |61 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the physical disk itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28362 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk serial number |system.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The physical disk's unique identification number from the manufacturer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28363 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |62 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Indicates whether the physical disk has received a predictive failure alert. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28364 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk model name |system.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The model number of the physical disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28365 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk part number |system.hw.physicaldisk.part_number[physicalDiskPartNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The part number of the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28366 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk media type |system.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | | | | |NULL |63 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The media type of the physical disk. Possible Values:&eol;1: The media type could not be determined.&eol;2: Hard Disk Drive (HDD).&eol;3: Solid State Drive (SSD). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28367 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10255 |{#DISK_NAME}: Disk size |system.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the physical disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28368 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |65 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The virtual disk's RAID type.&eol;Possible values:&eol;1: Not one of the following&eol;2: RAID-0&eol;3: RAID-1&eol;4: RAID-5&eol;5: RAID-6&eol;6: RAID-10&eol;7: RAID-50&eol;8: RAID-60&eol;9: Concatenated RAID 1&eol;10: Concatenated RAID 5 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28369 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Current state |system.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |66 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The state of the virtual disk when there are progressive operations ongoing.&eol;Possible values:&eol;1: There is no active operation running.&eol;2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.&eol;3: A Consistency Check (CC) is being performed on the virtual disk.&eol;4: The virtual disk is being initialized.&eol;5: BackGround Initialization (BGI) is being performed on the virtual disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28370 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Read policy |system.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The read policy used by the controller for read operations on this virtual disk.&eol;Possible values:&eol;1: No Read Ahead.&eol;2: Read Ahead.&eol;3: Adaptive Read Ahead. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28371 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Write policy |system.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |67 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The write policy used by the controller for write operations on this virtual disk.&eol;Possible values:&eol;1: Write Through.&eol;2: Write Back.&eol;3: Force Write Back. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28372 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the virtual disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28373 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Status |system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The current state of this virtual disk (which includes any member physical disks.)&eol;Possible states:&eol;1: The current state could not be determined.&eol;2: The virtual disk is operating normally or optimally.&eol;3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.&eol;4: The virtual disk encounterd a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the controller itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28375 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller model |system.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The controller's name as represented in Storage Management. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28376 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10255 |Battery {#BATTERY_NUM}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |64 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Current state of battery.&eol;Possible values:&eol;1: The current state could not be determined.&eol;2: The battery is operating normally.&eol;3: The battery has failed and needs to be replaced.&eol;4: The battery temperature is high or charge level is depleting.&eol;5: The battery is missing or not detected.&eol;6: The battery is undergoing the re-charge phase.&eol;7: The battery voltage or charge level is below the threshold. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28388 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10256 |System: Temperature status |sensor.temp.status[cpqHeThermalCondition.0] |3m |2w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;This value specifies the overall condition of the system's thermal environment.&eol;This value will be one of the following:&eol;other(1) Temperature could not be determined.&eol;ok(2) The temperature sensor is within normal operating range.&eol;degraded(3) The temperature sensor is outside of normal operating range.&eol;failed(4) The temperature sensor detects a condition that could permanently damage the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28390 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10256 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: CPQSINFO-MIB&eol;The machine product name.The name of the machine used in this system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28391 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10256 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: CPQSINFO-MIB&eol;The serial number of the physical system unit. The string will be empty if the system does not report the serial number function. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28392 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28393 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28395 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery Memory |tempDescr.discovery.memory |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28396 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery PSU |tempDescr.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28397 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery System |tempDescr.discovery.io |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2] |10256 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28399 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10256 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQHLTH-MIB::cpqHeFltTolFanCondition |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28400 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20] |10256 |Array Controller Discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28401 |20 |discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1] |10256 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28402 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64] |10256 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28403 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14] |10256 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqDaLogDrvTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28404 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |6m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: {#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28405 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature sensor location |sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1h |1w |0d |0 |3 | | | | |NULL |55 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;This specifies the location of the temperature sensor present in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28406 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |Ambient: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28407 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |CPU-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: CPU-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28408 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |Memory-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |6m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: Memory-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28409 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |PSU-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |6m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: PSU-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28410 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |System-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |6m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: System-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28411 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10256 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The condition of the power supply. This value will be one of the following:&eol;other(1) The status could not be determined or not present.&eol;ok(2) The power supply is operating normally.&eol;degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.&eol;failed(4) A power supply component detects a condition that could permanently damage the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28412 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10256 |Fan {#SNMPINDEX}: Fan status |sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The condition of the fan.&eol;This value will be one of the following:&eol;other(1) Fan status detection is not supported by this system or driver.&eol;ok(2) The fan is operating properly.&eol;degraded(2) A redundant fan is not operating properly.&eol;failed(4) A non-redundant fan is not operating properly. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28413 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10256 |{#CNTLR_LOCATION}: Disk array controller status |system.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;This value represents the overall condition of this controller,&eol;and any associated logical drives,physical drives, and array accelerators. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28414 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10256 |{#CNTLR_LOCATION}: Disk array controller model |system.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1d |90d |0d |0 |3 | | | | |NULL |56 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Array Controller Model. The type of controller card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28415 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10256 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |system.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |71 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Cache Module/Operations Status. This describes the status of the cache module and/or cache operations.&eol;Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28416 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10256 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |72 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board.&eol;The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.&eol;The following values are valid:&eol;Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.&eol;&eol;Ok (2) The backup power source is fully charged.&eol;&eol;Recharging (3) The array controller has one or more cache module backup power sources that are recharging.&eol;Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.&eol;Cache module operations will automatically resume when charging is complete.&eol;&eol;Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.&eol;Your Cache Module board needs to be serviced.&eol;&eol;Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.&eol;Your Cache Module board should be serviced as soon as possible.&eol;&eol;NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.&eol;&eol;Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28417 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk status |system.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |57 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:&eol;other (1) Indicates that the instrument agent does not recognize the drive.&eol;You may need to upgrade your instrument agent and/or driver software.&eol;ok (2) Indicates the drive is functioning properly.&eol;failed (3) Indicates that the drive is no longer operating and should be replaced.&eol;predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28418 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |70 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive S.M.A.R.T Status.The following values are defined:&eol;other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.&eol;ok(2) Indicates the drive is functioning properly.&eol;replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28419 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk serial number |system.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Serial Number.&eol;This is the serial number assigned to the physical drive.&eol;This value is based upon the serial number as returned by the SCSI inquiry command&eol;but may have been modified due to space limitations. This can be used for identification purposes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28420 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk model name |system.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Model.This is a text description of the physical drive.&eol;The text that appears depends upon who manufactured the drive and the drive type.&eol;If a drive fails, note the model to identify the type of drive necessary for replacement.&eol;If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28421 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk media type |system.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | | | | |NULL |73 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Drive Array Physical Drive Media Type.The following values are defined:&eol;other(1) The instrument agent is unable to determine the physical drive’s media type.&eol;rotatingPlatters(2) The physical drive media is composed of rotating platters.&eol;solidState(3) The physical drive media is composed of solid state electronics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28422 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Disk size |system.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Size in MB.&eol;This is the size of the physical drive in megabytes.&eol;This value is calculated using the value 1,048,576 (2^20) as a megabyte.&eol;Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ&eol;from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,&eol;and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated&eol;or if the controller does not support SCSI drives. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28423 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |system.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |75 | | |0 | | | | |2 |NULL |Logical Drive Status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28424 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |74 | | |0 | | | | |2 |NULL |Logical Drive Fault Tolerance.&eol;This shows the fault tolerance mode of the logical drive. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28425 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Logical Drive Size.&eol;This is the size of the logical drive in megabytes. This value&eol;is calculated using the value 1,048,576 (2^20) as a megabyte.&eol;Drive manufacturers sometimes use the number 1,000,000 as a&eol;megabyte when giving drive capacities so this value may&eol;differ from the advertised size of a drive. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28437 |20 |1.3.6.1.4.1.2.3.51.3.1.4.1.0 |10257 |Overall system health status |system.status[systemHealthStat.0] |30s |2w |0d |0 |3 | | | | |NULL |58 | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Indicates status of system health for the system in which the IMM resides. Value of 'nonRecoverable' indicates a severe error has occurred and the system may not be functioning. A value of 'critical' indicates that a error has occurred but the system is currently functioning properly. A value of 'nonCritical' indicates that a condition has occurred that may change the state of the system in the future but currently the system is working properly. A value of 'normal' indicates that the system is operating normally. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28438 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0 |10257 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28439 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0 |10257 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Machine serial number VPD information |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28440 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10257 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28441 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10257 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with Ambient filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28442 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10257 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with CPU filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28443 |20 |discovery[{#PSU_DESCR},1.3.6.1.4.1.2.3.51.3.1.11.2.1.2] |10257 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::powerFruName |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28444 |20 |discovery[{#FAN_DESCR},1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] |10257 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::fanDescr |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28445 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.12.2.1.1] |10257 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28446 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10257 |{#SNMPVALUE}: Temperature |sensor.temp.value[tempReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28447 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10257 |Ambient: Temperature |sensor.temp.value[tempReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28448 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10257 |CPU: Temperature |sensor.temp.value[tempReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28449 |20 |1.3.6.1.4.1.2.3.51.3.1.11.2.1.6.{#SNMPINDEX} |10257 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the power module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28450 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.10.{#SNMPINDEX} |10257 |{#FAN_DESCR}: Fan status |sensor.fan.status[fanHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the fan component status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28451 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.3.{#SNMPINDEX} |10257 |{#FAN_DESCR}: Fan speed, % |sensor.fan.speed.percentage[fanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Fan speed expressed in percent(%) of maximum RPM.&eol;An octet string expressed as 'ddd% of maximum' where:d is a decimal digit or blank space for a leading zero.&eol;If the fan is determined not to be running or the fan speed cannot be determined, the string will indicate 'Offline'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28452 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.3.{#SNMPINDEX} |10257 |{#SNMPINDEX}: Physical disk status |system.hw.physicaldisk.status[diskHealthStatus.{#SNMPINDEX}] |3m |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28453 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.2.{#SNMPINDEX} |10257 |{#SNMPINDEX}: Physical disk part number |system.hw.physicaldisk.part_number[diskFruName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;disk module FRU name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28465 |20 |1.3.6.1.4.1.2.3.51.3.1.4.1.0 |10258 |Overall system health status |system.status[systemHealthStat.0] |30s |2w |0d |0 |3 | | | | |NULL |58 | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Indicates status of system health for the system in which the IMM resides. Value of 'nonRecoverable' indicates a severe error has occurred and the system may not be functioning. A value of 'critical' indicates that a error has occurred but the system is currently functioning properly. A value of 'nonCritical' indicates that a condition has occurred that may change the state of the system in the future but currently the system is working properly. A value of 'normal' indicates that the system is operating normally. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28466 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0 |10258 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28467 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0 |10258 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Machine serial number VPD information |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28468 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28469 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with Ambient filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28470 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with CPU filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28471 |20 |discovery[{#PSU_DESCR},1.3.6.1.4.1.2.3.51.3.1.11.2.1.2] |10258 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::powerFruName |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28472 |20 |discovery[{#FAN_DESCR},1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] |10258 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::fanDescr |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.12.2.1.1] |10258 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28474 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |{#SNMPVALUE}: Temperature |sensor.temp.value[tempReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28475 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |Ambient: Temperature |sensor.temp.value[tempReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28476 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |CPU: Temperature |sensor.temp.value[tempReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28477 |20 |1.3.6.1.4.1.2.3.51.3.1.11.2.1.6.{#SNMPINDEX} |10258 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the power module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28478 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.10.{#SNMPINDEX} |10258 |{#FAN_DESCR}: Fan status |sensor.fan.status[fanHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the fan component status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28479 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.3.{#SNMPINDEX} |10258 |{#FAN_DESCR}: Fan speed, % |sensor.fan.speed.percentage[fanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Fan speed expressed in percent(%) of maximum RPM.&eol;An octet string expressed as 'ddd% of maximum' where:d is a decimal digit or blank space for a leading zero.&eol;If the fan is determined not to be running or the fan speed cannot be determined, the string will indicate 'Offline'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28480 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.3.{#SNMPINDEX} |10258 |{#SNMPINDEX}: Physical disk status |system.hw.physicaldisk.status[diskHealthStatus.{#SNMPINDEX}] |3m |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28481 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.2.{#SNMPINDEX} |10258 |{#SNMPINDEX}: Physical disk part number |system.hw.physicaldisk.part_number[diskFruName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;disk module FRU name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28493 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13] |10259 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected temp sensors (Value = 0) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28494 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13] |10259 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected FAN sensors (Value = 0) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28495 |20 |1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX} |10259 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[sensorReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ATEN-IPMI-MIB&eol;A textual string containing information about the interface.&eol;This string should include the name of the manufacturer, the product name and the version of the interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28496 |20 |1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX} |10259 |{#SENSOR_DESCR}: Fan speed, % |sensor.fan.speed.percentage[sensorReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ATEN-IPMI-MIB&eol;A textual string containing information about the interface.&eol;This string should include the name of the manufacturer, the product name and the version of the interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28501 |16 | |10260 |jk-8009 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"", bytesReceived] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28502 |16 | |10260 |Maximum number of active sessions so far |jmx["Catalina:type=Manager,context=/,host=localhost",maxActive] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28503 |16 | |10260 |http-8080 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",currentThreadsBusy] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28504 |16 | |10260 |http-8080 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",currentThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28505 |16 | |10260 |http-8443 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",maxThreads] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28506 |16 | |10260 |http-8443 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",currentThreadsBusy] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28507 |16 | |10260 |http-8443 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",currentThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28508 |16 | |10260 |jk-8009 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",maxThreads] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28509 |16 | |10260 |jk-8009 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",currentThreadsBusy] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28510 |16 | |10260 |jk-8009 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",currentThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28511 |16 | |10260 |Tomcat version |jmx["Catalina:type=Server",serverInfo] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28512 |16 | |10260 |http-8443 gzip compression |jmx["Catalina:type=ProtocolHandler,port=8443",compression] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28513 |16 | |10260 |http-8080 gzip compression |jmx["Catalina:type=ProtocolHandler,port=8080",compression] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28514 |16 | |10260 |Number of sessions created by this manager per second |jmx["Catalina:type=Manager,context=/,host=localhost",sessionCounter] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28515 |16 | |10260 |Number of sessions we rejected due to maxActive being reached |jmx["Catalina:type=Manager,context=/,host=localhost",rejectedSessions] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28516 |16 | |10260 |The maximum number of active Sessions allowed, or -1 for no limit |jmx["Catalina:type=Manager,context=/,host=localhost",maxActiveSessions] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28517 |16 | |10260 |jk-8009 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",bytesSent] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28518 |16 | |10260 |Number of active sessions at this moment |jmx["Catalina:type=Manager,context=/,host=localhost",activeSessions] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28519 |16 | |10260 |http-8080 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",requestCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28520 |16 | |10260 |http-8080 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28521 |16 | |10260 |http-8080 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",errorCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28522 |16 | |10260 |http-8080 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",bytesSent] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28523 |16 | |10260 |http-8080 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",bytesReceived] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28524 |16 | |10260 |http-8443 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",requestCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28525 |16 | |10260 |http-8443 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28526 |16 | |10260 |http-8443 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",errorCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28527 |16 | |10260 |http-8443 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"", bytesSent] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28528 |16 | |10260 |http-8443 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",bytesReceived] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28529 |16 | |10260 |jk-8009 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",requestCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28530 |16 | |10260 |jk-8009 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28531 |16 | |10260 |jk-8009 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",errorCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28532 |16 | |10260 |http-8080 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",maxThreads] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28533 |5 | |10047 |Zabbix LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28535 |5 | |10047 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28537 |5 | |10047 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28539 |5 | |10261 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix server statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28540 |5 | |10261 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28541 |5 | |10261 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28542 |18 | |10261 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28543 |18 | |10261 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28544 |18 | |10261 |Value cache, % used |vcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28545 |18 | |10261 |Value cache hits |vcache.cache.hits |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28546 |18 | |10261 |Value cache misses |vcache.cache.misses |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28547 |18 | |10261 |Value cache operating mode |vcache.cache.mode |0 |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28548 |18 | |10261 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28549 |18 | |10261 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28550 |18 | |10261 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28551 |18 | |10261 |Trend write cache, % used |wcache.trend.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28552 |18 | |10261 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28553 |18 | |10261 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28554 |18 | |10261 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28555 |18 | |10261 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28556 |18 | |10261 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28557 |18 | |10261 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28558 |18 | |10261 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28559 |18 | |10261 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28560 |18 | |10261 |Preprocessing queue |preprocessing_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28561 |18 | |10261 |Utilization of alerter internal processes, in % |process.alerter.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28562 |18 | |10261 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28563 |18 | |10261 |Utilization of alert manager internal processes, in % |process.alert_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28564 |18 | |10261 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28565 |18 | |10261 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28566 |18 | |10261 |Utilization of escalator internal processes, in % |process.escalator.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28567 |18 | |10261 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28568 |18 | |10261 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28569 |18 | |10261 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28570 |18 | |10261 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28571 |18 | |10261 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28572 |18 | |10261 |Utilization of timer internal processes, in % |process.timer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28573 |18 | |10261 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28574 |18 | |10261 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28575 |18 | |10261 |Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28576 |18 | |10261 |Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28577 |18 | |10261 |Utilization of proxy poller data collector processes, in % |process.proxy_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28578 |18 | |10261 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28579 |18 | |10261 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28580 |18 | |10261 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28581 |18 | |10261 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28582 |18 | |10261 |Utilization of LLD manager internal processes, in % |process.lld_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28583 |18 | |10261 |Utilization of LLD worker internal processes, in % |process.lld_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28584 |18 | |10261 |LLD queue |lld_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28585 |5 | |10262 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix proxy statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28586 |5 | |10262 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28587 |5 | |10262 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28588 |18 | |10262 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28589 |18 | |10262 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28590 |18 | |10262 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28591 |18 | |10262 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28592 |18 | |10262 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28593 |18 | |10262 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28594 |18 | |10262 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28595 |18 | |10262 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28596 |18 | |10262 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28597 |18 | |10262 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28598 |18 | |10262 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28599 |18 | |10262 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28600 |18 | |10262 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28601 |18 | |10262 |Utilization of data sender internal processes, in % |process.data_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28602 |18 | |10262 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28603 |18 | |10262 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28604 |18 | |10262 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28605 |18 | |10262 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28606 |18 | |10262 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28607 |18 | |10262 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28608 |18 | |10262 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28609 |18 | |10262 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28610 |18 | |10262 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28611 |18 | |10262 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28612 |18 | |10262 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28613 |18 | |10262 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28614 |18 | |10262 |Utilization of heartbeat sender internal processes, in % |process.heartbeat_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28615 |18 | |10262 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28616 |18 | |10262 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28617 |5 | |10048 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28618 |5 | |10048 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28619 |5 | |10048 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28620 |3 | |10173 |Discover VMware datastores |vmware.datastore.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28621 |3 | |10173 |Average read latency of the datastore {#DATASTORE} |vmware.datastore.read[{$URL},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28622 |3 | |10173 |Free space on datastore {#DATASTORE} (percentage) |vmware.datastore.size[{$URL},{#DATASTORE},pfree] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28623 |3 | |10173 |Total size of datastore {#DATASTORE} |vmware.datastore.size[{$URL},{#DATASTORE}] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28624 |3 | |10173 |Average write latency of the datastore {#DATASTORE} |vmware.datastore.write[{$URL},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28671 |0 | |10263 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28672 |0 | |10263 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28673 |0 | |10263 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28674 |0 | |10263 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28675 |0 | |10263 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics by query execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28676 |0 | |10263 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28677 |0 | |10263 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28678 |0 | |10263 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28679 |0 | |10263 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28680 |0 | |10263 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL configuration hash |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28681 |0 | |10263 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache hit ratio |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28682 |0 | |10263 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics about the background writer process's activity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28683 |0 | |10263 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics by transaction execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28684 |0 | |10263 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28685 |0 | |10263 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28686 |0 | |10263 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |5m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Master item to collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28687 |0 | |10263 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28688 |18 | |10263 |Transactions: Max idle transaction time |pgsql.transactions.idle |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max idle transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28689 |18 | |10263 |Transactions: Max active transaction time |pgsql.transactions.active |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max active transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28690 |18 | |10263 |Transactions: Max prepared transaction time |pgsql.transactions.prepared |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max prepared transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28691 |18 | |10263 |Transactions: Max waiting transaction time |pgsql.transactions.waiting |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max waiting transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28692 |18 | |10263 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |28686 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28693 |18 | |10263 |Bgwriter: Buffers allocated per second |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28694 |18 | |10263 |Bgwriter: Buffers written directly by a backend per second |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28695 |18 | |10263 |Bgwriter: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28696 |18 | |10263 |Bgwriter: Buffers backend fsync per second |pgsql.bgwriter.buffers_backend_fsync.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write) |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28697 |18 | |10263 |Bgwriter: Buffers written during checkpoints per second |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28698 |18 | |10263 |Bgwriter: Buffers written by the background writer per second |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28699 |18 | |10263 |Bgwriter: Requested checkpoints per second |pgsql.bgwriter.checkpoints_req.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requested checkpoints that have been performed |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28700 |18 | |10263 |Bgwriter: Scheduled checkpoints per second |pgsql.bgwriter.checkpoints_timed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of scheduled checkpoints that have been performed |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28701 |18 | |10263 |Bgwriter: Checkpoint sync time |pgsql.bgwriter.checkpoint_sync_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28702 |18 | |10263 |Bgwriter: Max written per second |pgsql.bgwriter.maxwritten_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times the background writer stopped a cleaning scan because it had written too many buffers |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28703 |18 | |10263 |Connections sum: Waiting |pgsql.connections.sum.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of waiting connections&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28704 |18 | |10263 |Connections sum: Active |pgsql.connections.sum.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28705 |18 | |10263 |Connections sum: Idle |pgsql.connections.sum.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28706 |18 | |10263 |Connections sum: Idle in transaction |pgsql.connections.sum.idle_in_transaction |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28707 |18 | |10263 |Connections sum: Prepared |pgsql.connections.sum.prepared |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of prepared transactions&eol;https://www.postgresql.org/docs/current/sql-prepare-transaction.html |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28708 |18 | |10263 |Connections sum: Total |pgsql.connections.sum.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28709 |18 | |10263 |Connections sum: Total % |pgsql.connections.sum.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28710 |18 | |10263 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |28686 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28711 |0 | |10263 |Database discovery |pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28712 |0 | |10263 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{#DBNAME}"] |15m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28713 |0 | |10263 |DB {#DBNAME}: Get frozen XID |pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{#DBNAME}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28714 |0 | |10263 |DB {#DBNAME}: Get scans |pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{#DBNAME}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of scans done for table/index in the database |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28715 |18 | |10263 |DB {#DBNAME}: Detected conflicts per second |pgsql.dbstat.conflicts.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of queries canceled due to conflicts with recovery in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28716 |18 | |10263 |DB {#DBNAME}: Locks total |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of locks in the database |0 |30d |0 | |28672 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28717 |18 | |10263 |DB {#DBNAME}: Sequential scans per second |pgsql.scans.seq.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sequential scans in the database |0 |30d |0 | |28714 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28718 |18 | |10263 |DB {#DBNAME}: Index scans per second |pgsql.scans.idx.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of index scans in the database |0 |30d |0 | |28714 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28719 |18 | |10263 |DB {#DBNAME}: Queries sum transaction time |pgsql.queries.tx.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum transaction query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28720 |18 | |10263 |DB {#DBNAME}: Queries max transaction time |pgsql.queries.tx.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max transaction query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28721 |18 | |10263 |DB {#DBNAME}: Queries slow transaction count |pgsql.queries.tx.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow transaction query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28722 |18 | |10263 |DB {#DBNAME}: Queries sum query time |pgsql.queries.query.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28723 |18 | |10263 |DB {#DBNAME}: Queries max query time |pgsql.queries.query.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28724 |18 | |10263 |DB {#DBNAME}: Queries slow query count |pgsql.queries.query.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28725 |18 | |10263 |DB {#DBNAME}: Queries sum maintenance time |pgsql.queries.mro.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum maintenance query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28726 |18 | |10263 |DB {#DBNAME}: Queries max maintenance time |pgsql.queries.mro.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max maintenance query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28727 |18 | |10263 |DB {#DBNAME}: Queries slow maintenance count |pgsql.queries.mro.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow maintenance query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28728 |18 | |10263 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blks_read.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of disk blocks read in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28729 |18 | |10263 |DB {#DBNAME}: Detected deadlocks per second |pgsql.dbstat.deadlocks.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of detected deadlocks in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28730 |18 | |10263 |DB {#DBNAME}: Blocks hit per second |pgsql.dbstat.blks_hit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times disk blocks were found already in the buffer cache, so that a read was not necessary |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28731 |18 | |10263 |DB {#DBNAME}: Frozen XID before avtovacuum % |pgsql.frozenxid.prc_before_av["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |reventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |0 |30d |0 | |28713 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28732 |18 | |10263 |DB {#DBNAME}: Rollbacks per second |pgsql.dbstat.xact_rollback.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions in this database that have been rolled back |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28733 |18 | |10263 |DB {#DBNAME}: Commits per second |pgsql.dbstat.xact_commit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions in this database that have been committed |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28734 |18 | |10263 |DB {#DBNAME}: Tuples updated per second |pgsql.dbstat.tup_updated.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28735 |18 | |10263 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28736 |18 | |10263 |DB {#DBNAME}: Tuples inserted per second |pgsql.dbstat.tup_inserted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows inserted by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28737 |18 | |10263 |DB {#DBNAME}: Tuples fetched per second |pgsql.dbstat.tup_fetched.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows fetched by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28738 |18 | |10263 |DB {#DBNAME}: Tuples deleted per second |pgsql.dbstat.tup_deleted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows deleted by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28739 |18 | |10263 |DB {#DBNAME}: Temp_files created per second |pgsql.dbstat.temp_files.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of temporary files created by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28740 |18 | |10263 |DB {#DBNAME}: Temp_bytes written per second |pgsql.dbstat.temp_bytes.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of data written to temporary files by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28741 |18 | |10263 |DB {#DBNAME}: Frozen XID before stop % |pgsql.frozenxid.prc_before_stop["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |0 |30d |0 | |28713 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28742 |0 | |10264 |Apache: Get status |web.page.get["{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PATH}","{$APACHE.STATUS.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28743 |0 | |10264 |Apache: Service ping |net.tcp.service[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28744 |0 | |10264 |Apache: Memory usage (vsize) |proc.mem["{$APACHE.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28745 |0 | |10264 |Apache: Memory usage (rss) |proc.mem["{$APACHE.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28746 |0 | |10264 |Apache: Number of processes running |proc.num["{$APACHE.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28747 |0 | |10264 |Apache: CPU utilization |proc.cpu.util["{$APACHE.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28748 |0 | |10264 |Apache: Service response time |net.tcp.service.perf[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28749 |18 | |10264 |Apache: Total requests |apache.requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |A total number of accesses |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28750 |18 | |10264 |Apache: Workers reading request |apache.workers.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in reading state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28751 |18 | |10264 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28752 |18 | |10264 |Apache: Bytes per second |apache.bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total bytes' stat.&eol;BytesPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28753 |18 | |10264 |Apache: Workers waiting for connection |apache.workers.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in waiting state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28754 |18 | |10264 |Apache: Workers starting up |apache.workers.starting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in starting state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28755 |18 | |10264 |Apache: Workers slot with no current process |apache.workers.slot |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of slots with no current process |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28756 |18 | |10264 |Apache: Workers sending reply |apache.workers.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in sending state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28757 |18 | |10264 |Apache: Workers logging |apache.workers.logging |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in logging state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28758 |18 | |10264 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28759 |18 | |10264 |Apache: Workers keepalive (read) |apache.workers.keepalive |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in keepalive state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28760 |18 | |10264 |Apache: Workers idle cleanup |apache.workers.cleanup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in cleanup state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28761 |18 | |10264 |Apache: Requests per second |apache.requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total requests' stat.&eol;ReqPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28762 |18 | |10264 |Apache: Workers DNS lookup |apache.workers.dnslookup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in dnslookup state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28763 |18 | |10264 |Apache: Workers closing connection |apache.workers.closing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in closing state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28764 |18 | |10264 |Apache: Total workers idle |apache.workers_total.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of idle worker threads/processes |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28765 |18 | |10264 |Apache: Total workers busy |apache.workers_total.busy |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of busy worker threads/processes |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28766 |18 | |10264 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28767 |18 | |10264 |Apache: Workers finishing |apache.workers.finishing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in finishing state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28768 |18 | |10264 |Event MPM discovery |apache.mpm.event.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if event MPM is used&eol;https://httpd.apache.org/docs/current/mod/event.html |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28769 |18 | |10264 |Apache: Connections async closing |apache.connections[async_closing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in closing state (only applicable to event MPM) |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28770 |18 | |10264 |Apache: Connections async keep alive |apache.connections[async_keep_alive{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in keep-alive state (only applicable to event MPM) |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28771 |18 | |10264 |Apache: Connections async writing |apache.connections[async_writing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in writing state (only applicable to event MPM) |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28772 |18 | |10264 |Apache: Connections total |apache.connections[total{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total connections |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28773 |18 | |10264 |Apache: Bytes per request |apache.bytes[per_request{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Average number of client requests per second |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28774 |18 | |10264 |Apache: Number of async processes |apache.process[num{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async processes |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28775 |19 | |10265 |Apache: Get status |apache.get_status |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html |0 |30d |0 | |NULL |3s |{$APACHE.STATUS.SCHEME}://{HOST.CONN}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |
-ROW |28776 |3 | |10265 |Apache: Service ping |net.tcp.service[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28777 |3 | |10265 |Apache: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28778 |18 | |10265 |Apache: Workers starting up |apache.workers.starting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in starting state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28779 |18 | |10265 |Apache: Workers slot with no current process |apache.workers.slot |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of slots with no current process |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28780 |18 | |10265 |Apache: Workers sending reply |apache.workers.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in sending state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28781 |18 | |10265 |Apache: Workers reading request |apache.workers.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in reading state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28782 |18 | |10265 |Apache: Workers logging |apache.workers.logging |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in logging state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28783 |18 | |10265 |Apache: Workers keepalive (read) |apache.workers.keepalive |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in keepalive state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28784 |18 | |10265 |Apache: Workers idle cleanup |apache.workers.cleanup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in cleanup state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28785 |18 | |10265 |Apache: Workers finishing |apache.workers.finishing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in finishing state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28786 |18 | |10265 |Apache: Workers closing connection |apache.workers.closing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in closing state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28787 |18 | |10265 |Apache: Workers DNS lookup |apache.workers.dnslookup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in dnslookup state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28788 |18 | |10265 |Apache: Total workers idle |apache.workers_total.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of idle worker threads/processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28789 |18 | |10265 |Apache: Total workers busy |apache.workers_total.busy |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of busy worker threads/processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28790 |18 | |10265 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28791 |18 | |10265 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28792 |18 | |10265 |Apache: Total requests |apache.requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |A total number of accesses |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28793 |18 | |10265 |Apache: Requests per second |apache.requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total requests' stat.&eol;ReqPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28794 |18 | |10265 |Apache: Bytes per second |apache.bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total bytes' stat.&eol;BytesPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28795 |18 | |10265 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28796 |18 | |10265 |Apache: Workers waiting for connection |apache.workers.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in waiting state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28797 |18 | |10265 |Event MPM discovery |apache.mpm.event.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if event MPM is used&eol;https://httpd.apache.org/docs/current/mod/event.html |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28798 |18 | |10265 |Apache: Connections async closing |apache.connections[async_closing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in closing state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28799 |18 | |10265 |Apache: Connections async keep alive |apache.connections[async_keep_alive{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in keep-alive state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28800 |18 | |10265 |Apache: Connections async writing |apache.connections[async_writing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in writing state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28801 |18 | |10265 |Apache: Connections total |apache.connections[total{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total connections |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28802 |18 | |10265 |Apache: Bytes per request |apache.bytes[per_request{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Average number of client requests per second |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28803 |18 | |10265 |Apache: Number of async processes |apache.process[num{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28804 |0 | |10266 |Nginx: Get stub status page |web.page.get["{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PATH}","{$NGINX.STUB_STATUS.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The following status information is provided:&eol;Active connections - the current number of active client connections including Waiting connections.&eol;Accepts - the total number of accepted client connections.&eol;Handled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).&eol;Requests - the total number of client requests.&eol;Reading - the current number of connections where nginx is reading the request header.&eol;Writing - the current number of connections where nginx is writing the response back to the client.&eol;Waiting - the current number of idle client connections waiting for a request.&eol;https://nginx.org/en/docs/http/ngx_http_stub_status_module.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28805 |0 | |10266 |Nginx: Service response time |net.tcp.service.perf[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28806 |0 | |10266 |Nginx: CPU utilization |proc.cpu.util[nginx] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28807 |0 | |10266 |Nginx: Memory usage (rss) |proc.mem[nginx,,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28808 |0 | |10266 |Nginx: Memory usage (vsize) |proc.mem[nginx,,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28809 |0 | |10266 |Nginx: Number of processes running |proc.num[nginx] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of the Nginx processes running. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28810 |0 | |10266 |Nginx: Service status |net.tcp.service[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28811 |18 | |10266 |Nginx: Connections waiting |nginx.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections waiting for a request. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28812 |18 | |10266 |Nginx: Connections writing |nginx.connections.writing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is writing the response back to the client. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28813 |18 | |10266 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections including Waiting connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28814 |18 | |10266 |Nginx: Connections reading |nginx.connections.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is reading the request header. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28815 |18 | |10266 |Nginx: Connections handled per second |nginx.connections.handled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28816 |18 | |10266 |Nginx: Connections dropped per second |nginx.connections.dropped.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28817 |18 | |10266 |Nginx: Connections accepted per second |nginx.connections.accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28818 |18 | |10266 |Nginx: Requests per second |nginx.requests.total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28819 |18 | |10266 |Nginx: Requests total |nginx.requests.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28820 |18 | |10266 |Nginx: Version |nginx.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28821 |19 | |10267 |Nginx: Get stub status page |nginx.get_stub_status |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The following status information is provided:&eol;Active connections - the current number of active client connections including Waiting connections.&eol;Accepts - the total number of accepted client connections.&eol;Handled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).&eol;Requests - the total number of client requests.&eol;Reading - the current number of connections where nginx is reading the request header.&eol;Writing - the current number of connections where nginx is writing the response back to the client.&eol;Waiting - the current number of idle client connections waiting for a request.&eol;https://nginx.org/en/docs/http/ngx_http_stub_status_module.html |0 |30d |0 | |NULL |3s |{$NGINX.STUB_STATUS.SCHEME}://{HOST.CONN}:{$NGINX.STUB_STATUS.PORT}/{$NGINX.STUB_STATUS.PATH} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |
-ROW |28822 |3 | |10267 |Nginx: Service status |net.tcp.service[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28823 |3 | |10267 |Nginx: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28824 |18 | |10267 |Nginx: Requests total |nginx.requests.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28825 |18 | |10267 |Nginx: Requests per second |nginx.requests.total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28826 |18 | |10267 |Nginx: Connections accepted per second |nginx.connections.accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28827 |18 | |10267 |Nginx: Connections dropped per second |nginx.connections.dropped.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28828 |18 | |10267 |Nginx: Connections handled per second |nginx.connections.handled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28829 |18 | |10267 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections including Waiting connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28830 |18 | |10267 |Nginx: Connections reading |nginx.connections.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is reading the request header. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28831 |18 | |10267 |Nginx: Connections waiting |nginx.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections waiting for a request. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28832 |18 | |10267 |Nginx: Connections writing |nginx.connections.writing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is writing the response back to the client. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28833 |18 | |10267 |Nginx: Version |nginx.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28894 |20 |1.3.6.1.4.1.2636.3.1.13.1.8.{#SNMPINDEX} |10231 |{#SNMPVALUE}: CPU utilization |system.cpu.util[jnxOperatingCPU.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The CPU utilization in percentage of this subject. Zero if unavailable or inapplicable.&eol;Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28909 |0 | |10170 |Info: MySQL version |mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28910 |0 | |10170 |Availability: MySQL status |mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28911 |15 | |10170 |Performance: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &eol;( last(mysql.innodb_buffer_pool_read_requests) + &eol;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &eol;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28912 |15 | |10170 |Performance: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &eol;last(mysql.innodb_buffer_pool_pages_free) ) / &eol;( last(mysql.innodb_buffer_pool_pages_total) + &eol;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 *&eol;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28913 |0 | |10170 |Availability: Get status variables |mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28914 |18 | |10170 |Performance: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28915 |18 | |10170 |Performance: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28916 |18 | |10170 |Performance: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28917 |18 | |10170 |Performance: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28918 |18 | |10170 |Performance: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28919 |18 | |10170 |Connections: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28920 |18 | |10170 |Throughput: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28921 |18 | |10170 |Throughput: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28922 |18 | |10170 |Performance: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28923 |18 | |10170 |Connections: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28924 |18 | |10170 |Connections: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28925 |18 | |10170 |Connections: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28926 |18 | |10170 |Connections: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28927 |18 | |10170 |Info: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28928 |18 | |10170 |Performance: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28929 |18 | |10170 |Connections: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28930 |18 | |10170 |Performance: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28931 |18 | |10170 |Connections: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28932 |18 | |10170 |Throughput: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28933 |18 | |10170 |Throughput: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28934 |18 | |10170 |Throughput: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28935 |18 | |10170 |Throughput: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28936 |18 | |10170 |Throughput: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28937 |18 | |10170 |Throughput: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28938 |18 | |10170 |Connections: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28939 |18 | |10170 |Connections: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28940 |18 | |10170 |Connections: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28941 |18 | |10170 |Connections: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28942 |18 | |10170 |Connections: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28943 |18 | |10170 |Connections: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28944 |18 | |10170 |Connections: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28945 |18 | |10170 |Performance: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28946 |18 | |10170 |Performance: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28947 |18 | |10170 |Performance: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28948 |0 | |10170 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28949 |0 | |10170 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If 'show slave status' returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28950 |0 | |10170 |Info: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28951 |0 | |10170 |Replication: Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28952 |18 | |10170 |Replication: Seconds Behind Master {#MASTERHOST} |mysql.seconds_behind_master["{#MASTERHOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28953 |18 | |10170 |Replication: Slave IO Running {#MASTERHOST} |mysql.slave_io_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. Normally, you want this to be Yes unless you have not yet started replication or have explicitly stopped it with STOP SLAVE. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28954 |18 | |10170 |Replication: Slave SQL Running {#MASTERHOST} |mysql.slave_sql_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be Yes. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28978 |15 | |10268 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28979 |20 |1.3.6.1.4.1.2021.4.6.0 |10268 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28980 |20 |1.3.6.1.4.1.2021.4.14.0 |10268 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28981 |20 |1.3.6.1.4.1.2021.4.15.0 |10268 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28982 |20 |1.3.6.1.4.1.2021.4.5.0 |10268 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28983 |15 | |10268 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28984 |20 |1.3.6.1.4.1.2021.4.3.0 |10268 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28985 |20 |1.3.6.1.4.1.2021.4.4.0 |10268 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28986 |15 | |10268 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28987 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10270 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28988 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10270 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28989 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10270 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28990 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10270 |Number of CPUs |system.cpu.num[snmp] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;Count the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28991 |20 |1.3.6.1.4.1.2021.11.59.0 |10270 |Interrupts per second |system.cpu.intr[ssRawInterrupts.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28992 |20 |1.3.6.1.4.1.2021.11.60.0 |10270 |Context switches per second |system.cpu.switches[ssRawContexts.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29008 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10269 |Block devices discovery |vfs.dev.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29009 |18 | |10270 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |28990 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29010 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10271 |Mounted filesystem discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29014 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of read accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29015 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of write accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29016 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk utilization |vfs.dev.util[diskIOLA1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The 1 minute average load of disk (%) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29017 |20 |1.3.6.1.4.1.2021.11.53.0 |10270 |CPU idle time |system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29018 |20 |1.3.6.1.4.1.2021.11.52.0 |10270 |CPU system time |system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29019 |20 |1.3.6.1.4.1.2021.11.50.0 |10270 |CPU user time |system.cpu.user[ssCpuRawUser.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29020 |20 |1.3.6.1.4.1.2021.11.64.0 |10270 |CPU steal time |system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29021 |20 |1.3.6.1.4.1.2021.11.61.0 |10270 |CPU softirq time |system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29022 |20 |1.3.6.1.4.1.2021.11.51.0 |10270 |CPU nice time |system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29023 |20 |1.3.6.1.4.1.2021.11.54.0 |10270 |CPU iowait time |system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29024 |20 |1.3.6.1.4.1.2021.11.56.0 |10270 |CPU interrupt time |system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29025 |20 |1.3.6.1.4.1.2021.11.65.0 |10270 |CPU guest time |system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29026 |20 |1.3.6.1.4.1.2021.11.66.0 |10270 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29027 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10271 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29028 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10271 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29029 |15 | |10271 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29030 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10271 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29048 |18 | |10270 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29087 |0 | |10272 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29088 |0 | |10272 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29089 |0 | |10272 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29090 |0 | |10272 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29091 |0 | |10272 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29092 |0 | |10272 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29093 |0 | |10272 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29094 |0 | |10272 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29095 |0 | |10272 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29096 |0 | |10272 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29097 |0 | |10272 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29098 |0 | |10272 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29099 |0 | |10272 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29100 |0 | |10272 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29101 |0 | |10272 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29102 |0 | |10272 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29103 |0 | |10274 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29104 |0 | |10274 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29105 |0 | |10274 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29106 |0 | |10274 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29107 |0 | |10274 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29108 |0 | |10274 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29109 |0 | |10275 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29110 |0 | |10277 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29118 |0 | |10277 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29119 |0 | |10277 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29120 |0 | |10277 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29121 |0 | |10277 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29122 |0 | |10277 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29123 |0 | |10277 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29198 |18 | |10272 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29099 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29201 |0 | |10273 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29202 |18 | |10275 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29203 |0 | |10276 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29210 |0 | |10273 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29211 |0 | |10273 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29212 |0 | |10273 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29213 |0 | |10273 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29214 |15 | |10275 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29215 |15 | |10275 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29216 |0 | |10276 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29217 |0 | |10276 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29218 |0 | |10276 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29219 |0 | |10276 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29220 |0 | |10276 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29221 |0 | |10276 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29222 |0 | |10276 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29223 |0 | |10276 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29252 |18 | |10275 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29253 |18 | |10275 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29254 |18 | |10275 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29255 |18 | |10275 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29256 |18 | |10275 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29257 |18 | |10275 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29273 |7 | |10278 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29274 |7 | |10278 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29275 |7 | |10278 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29276 |7 | |10278 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29277 |7 | |10278 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29278 |7 | |10278 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29279 |7 | |10278 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29280 |7 | |10278 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29281 |7 | |10278 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29282 |7 | |10278 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29283 |7 | |10278 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29284 |7 | |10278 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29285 |7 | |10278 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29286 |7 | |10278 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29287 |7 | |10278 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29288 |7 | |10278 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29289 |7 | |10280 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29290 |7 | |10280 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29291 |7 | |10280 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29292 |7 | |10280 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29293 |7 | |10280 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29294 |7 | |10280 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29295 |7 | |10281 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29296 |7 | |10283 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29297 |7 | |10283 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29298 |0 | |10283 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29299 |7 | |10283 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29300 |7 | |10283 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29301 |7 | |10283 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29302 |7 | |10283 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29303 |7 | |10283 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29304 |7 | |10283 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29305 |7 | |10283 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29306 |7 | |10283 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29307 |7 | |10283 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29308 |7 | |10283 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29309 |7 | |10283 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29347 |18 | |10278 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29285 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29349 |7 | |10279 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29350 |18 | |10281 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29351 |7 | |10282 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29355 |7 | |10279 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29356 |7 | |10279 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29357 |7 | |10279 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29358 |7 | |10279 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29359 |15 | |10281 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29360 |15 | |10281 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29361 |7 | |10282 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29362 |7 | |10282 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29363 |7 | |10282 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29364 |7 | |10282 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29365 |7 | |10282 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29366 |7 | |10282 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29367 |7 | |10282 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29368 |7 | |10282 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29383 |18 | |10281 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29384 |18 | |10281 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29385 |18 | |10281 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29386 |18 | |10281 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29387 |18 | |10281 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29388 |18 | |10281 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29395 |19 | |10285 |Get node_exporter metrics |node_exporter.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |http://{HOST.CONN}:{$NODE_EXPORTER_PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29396 |15 | |10285 |Memory utilization |vm.memory.util[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[node_exporter]")-last("vm.memory.available[node_exporter]"))/last("vm.memory.total[node_exporter]")*100 | |0 | | | | |0 |NULL |Memory used percentage is calculated as (total-available)/total*100 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29397 |15 | |10285 |Free swap space in % |system.swap.pfree[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free[node_exporter]")/last("system.swap.total[node_exporter]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29398 |18 | |10285 |System local time |system.localtime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29399 |18 | |10285 |CPU steal time |system.cpu.steal[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29400 |18 | |10285 |Free swap space |system.swap.free[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29401 |18 | |10285 |Total swap space |system.swap.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29406 |18 | |10285 |Interrupts per second |system.cpu.intr[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29407 |18 | |10285 |CPU guest nice time |system.cpu.guest_nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29408 |18 | |10285 |CPU guest time |system.cpu.guest[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29409 |18 | |10285 |CPU interrupt time |system.cpu.interrupt[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29410 |18 | |10285 |CPU iowait time |system.cpu.iowait[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29411 |18 | |10285 |CPU nice time |system.cpu.nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29412 |18 | |10285 |CPU softirq time |system.cpu.softirq[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29413 |18 | |10285 |CPU user time |system.cpu.user[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29414 |18 | |10285 |System name |system.name[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29415 |18 | |10285 |Version of node_exporter running |agent.version[node_exporter] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29416 |18 | |10285 |CPU idle time |system.cpu.idle[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29417 |18 | |10285 |Number of CPUs |system.cpu.num[node_exporter] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29418 |18 | |10285 |Load average (15m avg) |system.cpu.load.avg15[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29419 |18 | |10285 |Load average (5m avg) |system.cpu.load.avg5[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29420 |18 | |10285 |Load average (1m avg) |system.cpu.load.avg1[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29421 |18 | |10285 |System uptime |system.uptime[node_exporter] |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29422 |18 | |10285 |Operating system architecture |system.sw.arch[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29423 |18 | |10285 |Number of open file descriptors |fd.open[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29424 |18 | |10285 |Maximum number of open file descriptors |kernel.maxfiles[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29425 |18 | |10285 |System description |system.descr[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Labeled system information as provided by the uname system call. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29426 |18 | |10285 |CPU system time |system.cpu.system[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29427 |18 | |10285 |CPU utilization |system.cpu.util[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29416 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29428 |18 | |10285 |Operating system |system.sw.os[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |29425 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29429 |18 | |10285 |Network interface discovery |net.if.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. Requires node_exporter v0.18 and up. |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29430 |18 | |10285 |Mounted filesystem discovery |vfs.fs.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29431 |18 | |10285 |Block devices discovery |vfs.dev.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29432 |15 | |10285 |{#FSNAME}: Used space |vfs.fs.used[node_exporter,"{#FSNAME}"] |1m |7d |365d |0 |0 | |B | | |NULL |NULL |(last("vfs.fs.total[node_exporter,\"{#FSNAME}\"]")-last("vfs.fs.free[node_exporter,\"{#FSNAME}\"]")) | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29433 |15 | |10285 |{#FSNAME}: Space utilization |vfs.fs.pused[node_exporter,"{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[node_exporter,\"{#FSNAME}\"]")/last("vfs.fs.total[node_exporter,\"{#FSNAME}\"]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29434 |15 | |10285 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[node_exporter,"{#DEVNAME}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[node_exporter,\"{#DEVNAME}\"]")/(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]")+(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]")=0)))*1000*(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29435 |15 | |10285 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[node_exporter,"{#DEVNAME}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[node_exporter,\"{#DEVNAME}\"]")/(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]")+(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]")=0)))*1000*(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29436 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29437 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29438 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[node_exporter"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29439 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29440 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29441 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29442 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Sets value to 0 if metric is missing in node_exporter output. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29443 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |node_network_protocol_type protocol_type value of /sys/class/net/<iface>. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29444 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[node_exporter,"{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29445 |18 | |10285 |{#FSNAME}: Free space |vfs.fs.free[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29446 |18 | |10285 |{#FSNAME}: Total space |vfs.fs.total[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29447 |18 | |10285 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29448 |18 | |10285 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29449 |18 | |10285 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29450 |18 | |10285 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29451 |18 | |10285 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29452 |18 | |10285 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29453 |18 | |10285 |{#DEVNAME}: Disk utilization |vfs.dev.util[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29454 |0 | |10286 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29455 |0 | |10286 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |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%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29456 |0 | |10286 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29457 |0 | |10286 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29458 |0 | |10286 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29459 |0 | |10286 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29460 |0 | |10287 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29461 |0 | |10287 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29462 |15 | |10287 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29463 |0 | |10287 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29464 |0 | |10287 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29465 |0 | |10287 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29466 |0 | |10287 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29467 |0 | |10287 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29468 |0 | |10287 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29469 |0 | |10287 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29470 |0 | |10287 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29471 |0 | |10289 |Physical disks WMI get |wmi.getall[root\cimv2,"select * from win32_perfformatteddata_perfdisk_physicaldisk"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_perfformatteddata_perfdisk_physicaldisk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29472 |0 | |10290 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29473 |0 | |10290 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29474 |0 | |10290 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29475 |0 | |10290 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29479 |0 | |10291 |Network interfaces WMI get |wmi.getall[root\cimv2,"select * from win32_networkadapter where PhysicalAdapter=True"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29506 |0 | |10288 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29507 |18 | |10289 |Physical disks discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29508 |18 | |10291 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |29479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29512 |0 | |10288 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29513 |0 | |10288 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29514 |0 | |10288 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29515 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29516 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29517 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29518 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29519 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29520 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29530 |18 | |10289 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[DiskReadsPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29531 |18 | |10289 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[DiskWritesPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29532 |18 | |10289 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[CurrentDiskQueueLength.{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29533 |18 | |10289 |{#DEVNAME}: Disk utilization |vfs.dev.util[PercentDiskTime.{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29534 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |29479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29535 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |29479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29536 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |29479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29544 |5 | |10050 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29545 |7 | |10292 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29546 |7 | |10292 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29547 |7 | |10292 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29561 |7 | |10293 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29562 |7 | |10293 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |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%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29563 |7 | |10293 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29564 |7 | |10293 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29565 |7 | |10293 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29566 |7 | |10293 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29567 |7 | |10294 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29568 |7 | |10294 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29569 |15 | |10294 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29570 |7 | |10294 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29571 |7 | |10294 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29572 |7 | |10294 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29573 |7 | |10294 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29574 |7 | |10294 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29575 |7 | |10294 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29576 |7 | |10294 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29577 |7 | |10294 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29578 |7 | |10296 |Physical disks WMI get |wmi.getall[root\cimv2,"select * from win32_perfformatteddata_perfdisk_physicaldisk"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_perfformatteddata_perfdisk_physicaldisk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29579 |7 | |10297 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29580 |0 | |10297 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29581 |7 | |10297 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29582 |7 | |10297 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29583 |7 | |10297 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29584 |7 | |10297 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29585 |7 | |10297 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29586 |7 | |10298 |Network interfaces WMI get |wmi.getall[root\cimv2,"select * from win32_networkadapter where PhysicalAdapter=True"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29613 |7 | |10295 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29614 |18 | |10296 |Physical disks discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29615 |18 | |10298 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |29586 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29619 |7 | |10295 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29620 |7 | |10295 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29621 |7 | |10295 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29622 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29623 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29624 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29625 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29626 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29627 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29637 |18 | |10296 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[DiskReadsPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29638 |18 | |10296 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[DiskWritesPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29639 |18 | |10296 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[CurrentDiskQueueLength.{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29640 |18 | |10296 |{#DEVNAME}: Disk utilization |vfs.dev.util[PercentDiskTime.{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29641 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |29586 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29642 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |29586 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29643 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |29586 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29653 |0 | |10301 |RabbitMQ: Get node overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29654 |0 | |10301 |RabbitMQ: Get nodes |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"]|1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29655 |0 | |10301 |RabbitMQ: Service ping |net.tcp.service[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29656 |0 | |10301 |RabbitMQ: CPU utilization |proc.cpu.util["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29657 |0 | |10301 |RabbitMQ: Memory usage (vsize) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29658 |0 | |10301 |RabbitMQ: Memory usage (rss) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29659 |0 | |10301 |RabbitMQ: Number of processes running |proc.num["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29660 |0 | |10301 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29661 |0 | |10301 |RabbitMQ: Get queues |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29662 |0 | |10301 |RabbitMQ: Healthcheck |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node"] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |0 | | | | |0 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29687 |18 | |10301 |RabbitMQ: Memory used |rabbitmq.node.mem_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29688 |18 | |10301 |RabbitMQ: Disk free alarm |rabbitmq.node.disk_free_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the node have disk alarm |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29691 |18 | |10301 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29692 |18 | |10301 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29693 |18 | |10301 |RabbitMQ: Memory alarm |rabbitmq.node.mem_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the host has memory alarm |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29694 |18 | |10301 |RabbitMQ: Memory limit |rabbitmq.node.mem_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory usage high watermark in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29695 |18 | |10301 |RabbitMQ: Is running |rabbitmq.node.running |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Is the node running or not |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29696 |18 | |10301 |RabbitMQ: Number of network partitions |rabbitmq.node.partitions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of network partitions this node is seeing |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29697 |18 | |10301 |RabbitMQ: Sockets available |rabbitmq.node.sockets_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |File descriptors available for use as sockets |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29698 |18 | |10301 |RabbitMQ: Free disk space |rabbitmq.node.disk_free |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current free disk space |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29699 |18 | |10301 |RabbitMQ: Runtime run queue |rabbitmq.node.run_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average number of Erlang processes waiting to run |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29700 |18 | |10301 |RabbitMQ: Disk free limit |rabbitmq.node.disk_free_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Disk free space limit in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29701 |18 | |10301 |RabbitMQ: Sockets used |rabbitmq.node.sockets_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors used as sockets |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29703 |18 | |10301 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29720 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages |rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the total messages in the queue |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29721 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29722 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered |rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29723 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published per second |rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of messages published |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29724 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published |rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29725 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29726 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29727 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29728 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged per second |rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients and acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29729 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count per second of the total messages in the queue |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29730 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged |rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29731 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged per second |rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29732 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged |rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29733 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready per second |rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages ready to be delivered to clients |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29734 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready |rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages ready to be delivered to clients |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29735 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Memory |rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29736 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Consumers |rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29737 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered per second |rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29738 |19 | |10302 |RabbitMQ: Get overview |rabbitmq.get_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29739 |19 | |10302 |RabbitMQ: Get exchanges |rabbitmq.get_exchanges |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/exchanges | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29741 |19 | |10303 |RabbitMQ: Get nodes |rabbitmq.get_nodes |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true| | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29742 |3 | |10303 |RabbitMQ: Service ping |net.tcp.service[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29743 |3 | |10303 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29744 |19 | |10303 |RabbitMQ: Healthcheck |rabbitmq.healthcheck |1m |7h |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/healthchecks/node | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29745 |19 | |10303 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29746 |18 | |10302 |RabbitMQ: Messages returned redeliver |rabbitmq.overview.messages.redeliver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29747 |18 | |10302 |RabbitMQ: Messages returned unroutable per second |rabbitmq.overview.messages.return_unroutable.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29748 |18 | |10302 |RabbitMQ: Messages returned unroutable |rabbitmq.overview.messages.return_unroutable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29749 |18 | |10302 |RabbitMQ: Messages publish_out per second |rabbitmq.overview.messages.publish_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29750 |18 | |10302 |RabbitMQ: Messages publish_out |rabbitmq.overview.messages.publish_out |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29751 |18 | |10302 |RabbitMQ: Messages publish_in per second |rabbitmq.overview.messages.publish_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29752 |18 | |10302 |RabbitMQ: Messages publish_in |rabbitmq.overview.messages.publish_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29753 |18 | |10302 |RabbitMQ: Messages published per second |rabbitmq.overview.messages.publish.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29754 |18 | |10302 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29755 |18 | |10302 |RabbitMQ: Messages delivered per second |rabbitmq.overview.messages.deliver_get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29756 |18 | |10302 |RabbitMQ: Messages delivered |rabbitmq.overview.messages.deliver_get |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29757 |18 | |10302 |RabbitMQ: Messages confirmed per second |rabbitmq.overview.messages.confirm.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29758 |18 | |10302 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29759 |18 | |10302 |RabbitMQ: Messages acknowledged per second |rabbitmq.overview.messages.ack.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29760 |18 | |10302 |RabbitMQ: Messages acknowledged |rabbitmq.overview.messages.ack |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29761 |18 | |10302 |RabbitMQ: Messages unacknowledged |rabbitmq.overview.queue_totals.messages.unacknowledged |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unacknowledged messages |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29762 |18 | |10302 |RabbitMQ: Messages ready for delivery |rabbitmq.overview.queue_totals.messages.ready |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages ready for deliver |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29763 |18 | |10302 |RabbitMQ: Messages total |rabbitmq.overview.queue_totals.messages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of messages (ready plus unacknowledged) |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29764 |18 | |10302 |RabbitMQ: Exchanges total |rabbitmq.overview.object_totals.exchanges |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of exchanges |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29765 |18 | |10302 |RabbitMQ: Consumers total |rabbitmq.overview.object_totals.consumers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of consumers |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29766 |18 | |10302 |RabbitMQ: Queues total |rabbitmq.overview.object_totals.queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of queues |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29767 |18 | |10302 |RabbitMQ: Channels total |rabbitmq.overview.object_totals.channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of channels |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29768 |18 | |10302 |RabbitMQ: Connections total |rabbitmq.overview.object_totals.connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29769 |18 | |10302 |RabbitMQ: Messages returned redeliver per second |rabbitmq.overview.messages.redeliver.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29771 |18 | |10303 |RabbitMQ: Number of network partitions |rabbitmq.node.partitions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of network partitions this node is seeing |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29772 |18 | |10303 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29773 |18 | |10303 |RabbitMQ: Disk free alarm |rabbitmq.node.disk_free_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the node have disk alarm |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29774 |18 | |10303 |RabbitMQ: Memory alarm |rabbitmq.node.mem_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the host has memory alarm |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29775 |18 | |10303 |RabbitMQ: Is running |rabbitmq.node.running |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Is the node running or not |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29776 |18 | |10303 |RabbitMQ: Sockets used |rabbitmq.node.sockets_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors used as sockets |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29777 |18 | |10303 |RabbitMQ: Sockets available |rabbitmq.node.sockets_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |File descriptors available for use as sockets |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29779 |18 | |10303 |RabbitMQ: Runtime run queue |rabbitmq.node.run_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average number of Erlang processes waiting to run |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29780 |18 | |10303 |RabbitMQ: Memory used |rabbitmq.node.mem_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29781 |18 | |10303 |RabbitMQ: Disk free limit |rabbitmq.node.disk_free_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Disk free space limit in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29782 |18 | |10303 |RabbitMQ: Free disk space |rabbitmq.node.disk_free |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current free disk space |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29783 |18 | |10303 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29784 |18 | |10303 |RabbitMQ: Memory limit |rabbitmq.node.mem_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory usage high watermark in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29785 |18 | |10302 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29786 |18 | |10303 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29787 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged |rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29788 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged per second |rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29789 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed |rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages confirmed |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29790 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed per second |rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29791 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered |rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29792 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered per second |rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29793 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published |rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29794 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published per second |rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29795 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in |rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29796 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in per second |rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29797 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out |rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29798 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out per second |rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29799 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable |rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29800 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable per second|rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29801 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered |rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29802 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second |rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29803 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages |rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the total messages in the queue |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29804 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29805 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered |rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29806 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published per second |rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of messages published |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29807 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published |rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29808 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29809 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29810 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29811 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged per second |rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients and acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29812 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count per second of the total messages in the queue |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29813 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged |rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29814 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged per second |rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29815 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged |rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29816 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready per second |rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages ready to be delivered to clients |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29817 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready |rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages ready to be delivered to clients |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29818 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Memory |rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29819 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Consumers |rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29820 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered per second |rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29821 |18 | |10261 |Utilization of alert syncer internal processes, in % |process.alert_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29822 |5 | |10047 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29824 |20 |1.3.6.1.2.1.1.3.0 |10203 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29825 |20 |1.3.6.1.2.1.1.6.0 |10203 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29826 |20 |1.3.6.1.2.1.1.4.0 |10203 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29827 |20 |1.3.6.1.2.1.1.2.0 |10203 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29828 |20 |1.3.6.1.2.1.1.1.0 |10203 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |30s |2w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;The overall condition. This object represents the overall status of the server information represented by this MIB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29998 |0 | |10300 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29999 |0 | |10300 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30000 |18 | |10300 |RabbitMQ: Messages returned redeliver |rabbitmq.overview.messages.redeliver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30001 |18 | |10300 |RabbitMQ: Messages returned unroutable per second |rabbitmq.overview.messages.return_unroutable.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30002 |18 | |10300 |RabbitMQ: Messages returned unroutable |rabbitmq.overview.messages.return_unroutable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30003 |18 | |10300 |RabbitMQ: Messages publish_out per second |rabbitmq.overview.messages.publish_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30004 |18 | |10300 |RabbitMQ: Messages publish_out |rabbitmq.overview.messages.publish_out |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30005 |18 | |10300 |RabbitMQ: Messages publish_in per second |rabbitmq.overview.messages.publish_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30006 |18 | |10300 |RabbitMQ: Messages publish_in |rabbitmq.overview.messages.publish_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30007 |18 | |10300 |RabbitMQ: Messages published per second |rabbitmq.overview.messages.publish.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30008 |18 | |10300 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30009 |18 | |10300 |RabbitMQ: Messages delivered per second |rabbitmq.overview.messages.deliver_get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30010 |18 | |10300 |RabbitMQ: Messages delivered |rabbitmq.overview.messages.deliver_get |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30011 |18 | |10300 |RabbitMQ: Messages confirmed per second |rabbitmq.overview.messages.confirm.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30012 |18 | |10300 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30013 |18 | |10300 |RabbitMQ: Messages acknowledged per second |rabbitmq.overview.messages.ack.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30014 |18 | |10300 |RabbitMQ: Messages acknowledged |rabbitmq.overview.messages.ack |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30015 |18 | |10300 |RabbitMQ: Messages unacknowledged |rabbitmq.overview.queue_totals.messages.unacknowledged |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unacknowledged messages |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30016 |18 | |10300 |RabbitMQ: Messages ready for delivery |rabbitmq.overview.queue_totals.messages.ready |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages ready for deliver |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30017 |18 | |10300 |RabbitMQ: Messages total |rabbitmq.overview.queue_totals.messages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of messages (ready plus unacknowledged) |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30018 |18 | |10300 |RabbitMQ: Exchanges total |rabbitmq.overview.object_totals.exchanges |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of exchanges |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30019 |18 | |10300 |RabbitMQ: Consumers total |rabbitmq.overview.object_totals.consumers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of consumers |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30020 |18 | |10300 |RabbitMQ: Queues total |rabbitmq.overview.object_totals.queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of queues |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30021 |18 | |10300 |RabbitMQ: Channels total |rabbitmq.overview.object_totals.channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of channels |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30022 |18 | |10300 |RabbitMQ: Connections total |rabbitmq.overview.object_totals.connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30023 |18 | |10300 |RabbitMQ: Messages returned redeliver per second |rabbitmq.overview.messages.redeliver.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30024 |18 | |10301 |RabbitMQ: Management plugin version |rabbitmq.node.overview.management_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the management plugin in use |0 |30d |0 | |29653 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30025 |18 | |10301 |RabbitMQ: RabbitMQ version |rabbitmq.node.overview.rabbitmq_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of RabbitMQ on the node which processed this request |0 |30d |0 | |29653 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30026 |18 | |10300 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30027 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged |rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30028 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged per second |rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30029 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed |rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages confirmed |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30030 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed per second |rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30031 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered |rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30032 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered per second |rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30033 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published |rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30034 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published per second |rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30035 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in |rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30036 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in per second |rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30037 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out |rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30038 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out per second |rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30039 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable |rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30040 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable per second|rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30041 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered |rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30042 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second |rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30043 |19 | |10303 |RabbitMQ: Get node overview |rabbitmq.get_node_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30044 |18 | |10303 |RabbitMQ: Management plugin version |rabbitmq.node.overview.management_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the management plugin in use |0 |30d |0 | |30043 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30045 |18 | |10303 |RabbitMQ: RabbitMQ version |rabbitmq.node.overview.rabbitmq_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of RabbitMQ on the node which processed this request |0 |30d |0 | |30043 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30057 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2] |10304 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30058 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2] |10304 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30059 |20 |discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2] |10304 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30060 |20 |discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2] |10304 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30061 |20 |discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2] |10304 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30062 |20 |discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2] |10304 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30063 |20 |discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2] |10304 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalLunTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30064 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10304 |Array Controller Discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30065 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10304 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30066 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Ambient: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Temperature readings of testpoint: {#SENSOR_LOCATION}.Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30067 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Front: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:frontTemp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30068 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Rear: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:rearTemp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30069 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.IOH: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30070 |20 |1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}: Temperature |sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;Cisco UCS processor:EnvStats:temperature managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30071 |20 |1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX} |10304 |{#PSU_LOCATION}: Power supply status |sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;Cisco UCS equipment:Psu:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30072 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Overall system health status |system.status[cucsComputeRackUnitOperState.{#SNMPINDEX}] |30s |2w |0d |0 |3 | | | | |NULL |85 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30073 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Hardware model name |system.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:model managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30074 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Hardware serial number |system.hw.serialnumber[cucsComputeRackUnitSerial.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:serial managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30075 |20 |1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX} |10304 |{#FAN_LOCATION}: Fan status |sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;Cisco UCS equipment:Fan:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30076 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk status |system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |86 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:diskState managed object property. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30077 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk model name |system.hw.physicaldisk.model[cucsStorageLocalDiskSerial.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30078 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk media type |system.hw.physicaldisk.media_type[cucsStorageLocalDiskModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:model managed object property. Actually returns 'HDD' or 'SSD' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30079 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Disk size |system.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:size managed object property. In MB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30080 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Status |system.hw.virtualdisk.status[cucsStorageLocalLunPresence.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |88 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:presence managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30081 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Layout type |system.hw.virtualdisk.layout[cucsStorageLocalLunType.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |87 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:type managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30082 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Disk size |system.hw.virtualdisk.size[cucsStorageLocalLunSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |87 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:size managed object property in MB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30083 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX} |10304 |{#DISKARRAY_LOCATION}: Disk array controller status |system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30084 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX} |10304 |{#DISKARRAY_LOCATION}: Disk array controller model |system.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30085 |20 |1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX} |10304 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30086 |20 |1.3.6.1.2.1.1.1.0 |10207 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30087 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.10.0 |10207 |Available memory |vm.memory.available[sgiKbMemoryAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryAvailable indicates the amount of free memory, in kilobytes, in the overall system that is not allocated to memory pools, but is available in case a memory pool needs to grow. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30088 |15 | |10207 |Total memory |vm.memory.total[snmp] |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.available[sgiKbMemoryAvailable.0]")+last("vm.memory.used[sgiKbMemoryUsed.0]") | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30089 |15 | |10207 |Memory utilization |vm.memory.util[vm.memory.util.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[sgiKbMemoryUsed.0]")/(last("vm.memory.available[sgiKbMemoryAvailable.0]")+last("vm.memory.used[sgiKbMemoryUsed.0]"))*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30090 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6] |10207 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30091 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Power supply status |sensor.psu.status[tmnxChassisPowerSupply1Status.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The overall status of an equipped power supply. &eol;For AC multiple powersupplies, this represents the overall status of the first power supplyin the tray (or shelf).&eol;For any other type, this represents the overall status of the power supply.&eol;If tmnxChassisPowerSupply1Status is'deviceStateOk', then all monitored statuses are 'deviceStateOk'.&eol;A value of 'deviceStateFailed' represents a condition where at least one monitored status is in a failed state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30092 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.5.1.7.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Power supply status |sensor.psu.status[tmnxChassisPowerSupply2Status.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The overall status of an equipped power supply.&eol;For AC multiple powersupplies, this represents the overall status of the second power supplyin the tray (or shelf).&eol;For any other type, this field is unused and set to 'deviceNotEquipped'.&eol;If tmnxChassisPowerSupply2Status is 'deviceStateOk', then all monitored statuses are 'deviceStateOk'.&eol;A value of 'deviceStateFailed' represents a condition where at least one monitored status is in a failed state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30093 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.6.0 |10208 |Memory utilization |vm.memory.util[swMemUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30094 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10209 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30097 |20 |1.3.6.1.2.1.1.1.0 |10216 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30101 |15 | |10212 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30105 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.5.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: Memory utilization |vm.memory.util[chStackUnitMemUsageUtil.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Total memory usage in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30106 |20 |1.3.6.1.4.1.171.10.97.2.1.1.2.0 |10222 |Operating system |system.sw.os[mySystemSwVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-SYSTEM-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30107 |20 |1.3.6.1.4.1.171.10.97.2.35.1.1.1.3.{#SNMPINDEX} |10222 |{#SNMPINDEX}: Memory utilization |vm.memory.util[myMemoryPoolCurrentUtilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-MEMORY-MIB&eol;This is the memory pool utilization currently. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30108 |20 |1.3.6.1.4.1.171.12.1.1.9.1.4.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[agentDRAMutilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: DLINK-AGENT-MIB&eol;The percentage of used DRAM memory of the total DRAM memory available.The value will be between 0%(idle) and 100%(very busy) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30109 |20 |1.3.6.1.4.1.1916.1.1.1.13.0 |10224 |Operating system |system.sw.os[extremePrimarySoftwareRev.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The software revision of the primary image stored in this device.&eol;This string will have a zero length if the revision is unknown, invalid or not present.&eol;This will also be reported in RMON2 probeSoftwareRev if this is the software image currently running in the device. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30110 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.3.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Available memory |vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of free memory in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30111 |15 | |10224 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPVALUE}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]") - last("vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}]")) / last("vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]") * 100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30112 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.8.{#SNMPINDEX} |10227 |{#MODULE_NAME}: Memory utilization |vm.memory.util[hh3cEntityExtMemUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The memory usage for the entity. This object indicates what&eol;percent of memory are used. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30113 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.6.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Available memory |vm.memory.available[hpLocalMemFreeBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of available (unallocated) bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30114 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.5.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Total memory |vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently installed bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30115 |15 | |10250 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[snmp.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}]")/last("vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30116 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.{#SNMPINDEX} |10229 |{#ENT_NAME}: Memory utilization |vm.memory.util[hwEntityMemUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The memory usage for the entity. This object indicates what percent of memory are used.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30117 |20 |1.3.6.1.2.1.1.1.0 |10231 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30118 |20 |1.3.6.1.4.1.2636.3.1.13.1.11.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Memory utilization |vm.memory.util[jnxOperatingBuffer.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The buffer pool utilization in percentage of this subject. Zero if unavailable or inapplicable.&eol;Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30119 |20 |1.3.6.1.4.1.14988.1.1.4.4.0 |10233 |Operating system |system.sw.os[mtxrLicVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Software version |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30120 |15 | |10233 |Memory utilization |vm.memory.util[memoryUsedPercentage.Memory] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.Memory]")/last("vm.memory.total[hrStorageSize.Memory]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30121 |20 |1.3.6.1.4.1.4526.10.1.1.1.10.0 |10234 |Operating system |system.sw.os[agentInventoryOperatingSystem.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Operating System running on this unit |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30122 |20 |1.3.6.1.4.1.4526.10.1.1.5.1.0 |10234 |Available memory |vm.memory.available[agentSwitchCpuProcessMemFree.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total memory freed for utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30123 |15 | |10234 |Memory utilization |vm.memory.util[memoryUsedPercentage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[agentSwitchCpuProcessMemAvailable.0]")-last("vm.memory.available[agentSwitchCpuProcessMemFree.0]"))/last("vm.memory.total[agentSwitchCpuProcessMemAvailable.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30124 |20 |1.3.6.1.4.1.27514.100.1.11.9.0 |10235 |Temperature |sensor.temp.value[switchTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Temperature readings of testpoint: __RESOURCE__ |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30125 |20 |1.3.6.1.4.1.27514.100.1.3.0 |10235 |Operating system |system.sw.os[sysSoftwareVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30126 |15 | |10235 |Memory utilization |vm.memory.util[vm.memory.util.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[switchMemoryBusy.0]")/last("vm.memory.total[switchMemorySize.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30127 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.12.1.3] |10235 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30128 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.7.1.5] |10235 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30129 |20 |1.3.6.1.4.1.27514.100.1.12.1.3.{#SNMPINDEX} |10235 |{#SNMPINDEX}: Fan status |sensor.fan.status[sysFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |52 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30130 |20 |1.3.6.1.4.1.27514.100.1.7.1.5.{#SNMPINDEX} |10235 |{#SNMPINDEX}: Power supply status |sensor.psu.status[sysPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |53 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30131 |20 |1.3.6.1.4.1.11863.6.4.1.2.1.1.2.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[tpSysMonitorMemoryUtilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the memory utilization.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30132 |20 |1.3.6.1.4.1.10002.1.1.1.1.3.0 |10237 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30133 |20 |1.3.6.1.4.1.10002.1.1.1.1.4.0 |10237 |Memory (cached) |vm.memory.cached[memCache.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30134 |20 |1.3.6.1.4.1.10002.1.1.1.1.2.0 |10237 |Free memory |vm.memory.free[memFree.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30135 |20 |1.3.6.1.4.1.10002.1.1.1.1.1.0 |10237 |Total memory |vm.memory.total[memTotal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30136 |15 | |10237 |Memory utilization |vm.memory.util[memoryUsedPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[memTotal.0]")-(last("vm.memory.free[memFree.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCache.0]")))/last("vm.memory.total[memTotal.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30137 |0 | |10286 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30139 |7 | |10293 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30141 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10255 |Operating system |system.sw.os[systemOSName] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the name of the operating system that the hostis running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30142 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10305 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30147 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10306 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30148 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10307 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30157 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10306 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30158 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10306 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30159 |15 | |10306 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30160 |15 | |10307 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30161 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10307 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30162 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10307 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30187 |0 | |10308 |HAProxy: Service response time |net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30188 |0 | |10308 |HAProxy: Service status |net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30189 |0 | |10308 |HAProxy: Get stats |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30190 |0 | |10308 |HAProxy: Get stats page |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30191 |18 | |10308 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30190 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30192 |18 | |10308 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30190 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30193 |18 | |10308 |BACKEND discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30194 |18 | |10308 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30195 |18 | |10308 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30196 |15 | |10308 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30197 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30198 |18 | |10308 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30199 |18 | |10308 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30200 |18 | |10308 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30201 |18 | |10308 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30202 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30203 |18 | |10308 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30204 |18 | |10308 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30205 |18 | |10308 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30206 |18 | |10308 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30207 |18 | |10308 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30208 |18 | |10308 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30209 |18 | |10308 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30210 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30211 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30212 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30213 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30214 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30215 |18 | |10308 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30216 |18 | |10308 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30217 |18 | |10308 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30218 |18 | |10308 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30219 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30220 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30221 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30222 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30223 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30224 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30225 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30226 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30227 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30228 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30229 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30230 |19 | |10309 |HAProxy: Get stats |haproxy.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30231 |19 | |10309 |HAProxy: Get stats page |haproxy.get_html |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH} | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30234 |18 | |10309 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30235 |18 | |10309 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30236 |18 | |10309 |BACKEND discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30237 |18 | |10309 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30238 |18 | |10309 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30239 |15 | |10309 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30240 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30241 |18 | |10309 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30242 |18 | |10309 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30243 |18 | |10309 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30244 |18 | |10309 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30245 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30246 |18 | |10309 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30247 |18 | |10309 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30248 |18 | |10309 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30249 |18 | |10309 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30250 |18 | |10309 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30251 |18 | |10309 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30252 |18 | |10309 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30253 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30254 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30255 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30256 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30257 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30258 |18 | |10309 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30259 |18 | |10309 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30260 |18 | |10309 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30261 |18 | |10309 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30262 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30263 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30264 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30265 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30266 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30267 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30268 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30269 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30270 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30271 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30272 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30273 |0 | |10310 |Redis: Ping |redis.ping["{$REDIS.CONN.URI}"] |1m |7h |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30274 |0 | |10310 |Redis: Slowlog entries per second |redis.slowlog.count["{$REDIS.CONN.URI}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30275 |0 | |10310 |Redis: Get config |redis.config["{$REDIS.CONN.URI}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30276 |0 | |10310 |Redis: Get info |redis.info["{$REDIS.CONN.URI}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30277 |18 | |10310 |Redis: Blocked clients |redis.clients.blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections waiting on a blocking call |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30278 |18 | |10310 |Redis: TCP port |redis.server.tcp_port |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |TCP/IP listen port |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30279 |18 | |10310 |Redis: Expired keys |redis.stats.expired_keys |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of key expiration events |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30280 |18 | |10310 |Redis: Evicted keys |redis.stats.evicted_keys |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of evicted keys due to maxmemory limit |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30281 |18 | |10310 |Redis: Uptime |redis.server.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Redis server start |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30282 |18 | |10310 |Redis: Redis mode |redis.server.redis_mode |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The server's mode ("standalone", "sentinel" or "cluster") |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30283 |18 | |10310 |Redis: Redis version |redis.server.redis_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30284 |18 | |10310 |Redis: Instantaneous operations per sec |redis.stats.instantaneous_ops.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of commands processed per second |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30285 |18 | |10310 |Redis: Process id |redis.server.process_id |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PID of the server process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30286 |18 | |10310 |Redis: Replication role |redis.replication.role |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Value is "master" if the instance is replica of no one, or "slave" if the instance is a replica of some master instance. Note that a replica can be master of another replica (chained replication). |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30287 |18 | |10310 |Redis: Replication backlog size |redis.replication.repl_backlog_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size in bytes of the replication backlog buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30288 |18 | |10310 |Redis: Replication backlog history length |redis.replication.repl_backlog_histlen |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of data in the backlog sync buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30289 |18 | |10310 |Redis: Instantaneous input bytes per second |redis.stats.instantaneous_input.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in KB/sec |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30290 |18 | |10310 |Redis: Keyspace hits |redis.stats.keyspace_hits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of successful lookup of keys in the main dictionary |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30291 |18 | |10310 |Redis: Instantaneous output bytes per second |redis.stats.instantaneous_output.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's write rate per second in KB/sec |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30292 |18 | |10310 |Redis: Replication backlog active |redis.replication.repl_backlog_active |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating replication backlog is active |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30293 |18 | |10310 |Redis: Keyspace misses |redis.stats.keyspace_misses |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed lookup of keys in the main dictionary |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30294 |18 | |10310 |Redis: Latest fork usec |redis.stats.latest_fork_usec |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Duration of the latest fork operation in microseconds |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30295 |18 | |10310 |Redis: Migrate cached sockets |redis.stats.migrate_cached_sockets |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sockets open for MIGRATE purposes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30296 |18 | |10310 |Redis: Pubsub channels |redis.stats.pubsub_channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Global number of pub/sub channels with client subscriptions |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30297 |18 | |10310 |Redis: Pubsub patterns |redis.stats.pubsub_patterns |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Global number of pub/sub pattern with client subscriptions |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30298 |18 | |10310 |Redis: Rejected connections |redis.stats.rejected_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections rejected because of maxclients limit |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30299 |18 | |10310 |Redis: Sync full |redis.stats.sync_full |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of full resyncs with replicas |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30300 |18 | |10310 |Redis: Sync partial err |redis.stats.sync_partial_err |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of denied partial resync requests |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30301 |18 | |10310 |Redis: Sync partial ok |redis.stats.sync_partial_ok |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of accepted partial resync requests |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30302 |18 | |10310 |Redis: Total commands processed |redis.stats.total_commands_processed |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of commands processed by the server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30303 |18 | |10310 |Redis: Total connections received |redis.stats.total_connections_received |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections accepted by the server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30304 |18 | |10310 |Redis: Total net input bytes |redis.stats.total_net_input_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes read from the network |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30305 |18 | |10310 |Redis: Replication backlog first byte offset |redis.replication.repl_backlog_first_byte_offset |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The master offset of the replication backlog buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30306 |18 | |10310 |Redis: Connected slaves |redis.replication.connected_slaves |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected slaves |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30307 |18 | |10310 |Redis: Master replication offset |redis.replication.master_repl_offset |0 |7d |365d |0 |3 | |B | | |NULL |91 | | |0 | | | | |0 |NULL |Replication offset reported by the master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30308 |18 | |10310 |Redis: Memory used RSS |redis.memory.used_memory_rss |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes that Redis allocated as seen by the operating system |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30309 |18 | |10310 |Redis: Max input buffer |redis.clients.max_input_buffer |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The biggest input buffer among current client connections |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30310 |18 | |10310 |Redis: Max output buffer |redis.clients.max_output_buffer |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The biggest output buffer among current client connections |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30311 |18 | |10310 |Redis: Cluster enabled |redis.cluster.enabled |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Indicate Redis cluster is enabled |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30312 |18 | |10310 |Redis: Max clients |redis.config.maxclients |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max number of connected clients at the same time.&eol;Once the limit is reached Redis will close all the new connections sending an error "max number of clients reached". |0 |30d |0 | |30275 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30313 |18 | |10310 |Redis: CPU sys |redis.cpu.sys |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30314 |18 | |10310 |Redis: CPU sys children |redis.cpu.sys_children |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the background processes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30315 |18 | |10310 |Redis: CPU user |redis.cpu.user |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30316 |18 | |10310 |Redis: CPU user children |redis.cpu.user_children |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the background processes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30317 |18 | |10310 |Redis: Memory fragmentation ratio |redis.memory.fragmentation_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30318 |18 | |10310 |Redis: Memory used |redis.memory.used_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of bytes allocated by Redis using its allocator |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30319 |18 | |10310 |Redis: Memory used Lua |redis.memory.used_memory_lua |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of memory used by the Lua engine |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30320 |18 | |10310 |Redis: Memory used peak |redis.memory.used_memory_peak |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Peak memory consumed by Redis (in bytes) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30321 |18 | |10310 |Redis: AOF current rewrite time sec |redis.persistence.aof_current_rewrite_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the on-going AOF rewrite operation if any |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30322 |18 | |10310 |Redis: Connected clients |redis.clients.connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connected clients |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30323 |18 | |10310 |Redis: AOF enabled |redis.persistence.aof_enabled |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating AOF logging is activated |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30324 |18 | |10310 |Redis: AOF last bgrewrite status |redis.persistence.aof_last_bgrewrite_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last AOF rewrite operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30325 |18 | |10310 |Redis: AOF last rewrite time sec |redis.persistence.aof_last_rewrite_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the last AOF rewrite |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30326 |18 | |10310 |Redis: AOF last write status |redis.persistence.aof_last_write_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last write operation to the AOF |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30327 |18 | |10310 |Redis: AOF rewrite in progress |redis.persistence.aof_rewrite_in_progress |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Flag indicating a AOF rewrite operation is on-going |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30328 |18 | |10310 |Redis: AOF rewrite scheduled |redis.persistence.aof_rewrite_scheduled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Flag indicating an AOF rewrite operation will be scheduled once the on-going RDB save is complete |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30329 |18 | |10310 |Redis: Dump loading |redis.persistence.loading |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating if the load of a dump file is on-going |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30330 |18 | |10310 |Redis: RDB bgsave in progress |redis.persistence.rdb_bgsave_in_progress |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"1" if bgsave is in progress and "0" otherwise |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30331 |18 | |10310 |Redis: RDB changes since last save |redis.persistence.rdb_changes_since_last_save |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of changes since the last background save |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30332 |18 | |10310 |Redis: RDB current bgsave time sec |redis.persistence.rdb_current_bgsave_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the on-going RDB save operation if any |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30333 |18 | |10310 |Redis: RDB last bgsave status |redis.persistence.rdb_last_bgsave_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last RDB save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30334 |18 | |10310 |Redis: RDB last bgsave time sec |redis.persistence.rdb_last_bgsave_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the last bg_save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30335 |18 | |10310 |Redis: RDB last save time |redis.persistence.rdb_last_save_time |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Epoch-based timestamp of last successful RDB save |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30336 |18 | |10310 |Redis: Total net output bytes |redis.stats.total_net_output_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes written to the network |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30337 |0 | |10310 |Process metrics discovery |proc.num["{$REDIS.LLD.PROCESS_NAME}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect metrics by Zabbix agent if it exists |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30338 |18 | |10310 |Keyspace discovery |redis.keyspace.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual keyspace metrics |0 |30d |1 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30339 |18 | |10310 |Version 4+ metrics discovery |redis.metrics.v4.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for versions 4+ |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30340 |18 | |10310 |Version 5+ metrics discovery |redis.metrics.v5.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for versions 5+ |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30341 |18 | |10310 |AOF metrics discovery |redis.persistence.aof.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If AOF is activated, additional metrics will be added |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30342 |18 | |10310 |Replication metrics discovery |redis.replication.master.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If the instance is the master and the slaves are connected, additional metrics are provided |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30343 |18 | |10310 |Slave metrics discovery |redis.replication.slave.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If the instance is a replica, additional metrics are provided |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30344 |0 | |10310 |Redis: CPU utilization |proc.cpu.util["{$REDIS.PROCESS_NAME}{#SINGLETON}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30345 |0 | |10310 |Redis: Memory usage (rss) |proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30346 |0 | |10310 |Redis: Memory usage (vsize) |proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30347 |0 | |10310 |Redis: Number of processes running |proc.num["{$REDIS.PROCESS_NAME}{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30348 |18 | |10310 |DB {#DB}: Average TTL |redis.db.avg_ttl["{#DB}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average TTL |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30349 |18 | |10310 |DB {#DB}: Expires |redis.db.expires["{#DB}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys with an expiration |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30350 |18 | |10310 |DB {#DB}: Keys |redis.db.keys["{#DB}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of keys |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30351 |18 | |10310 |Redis: Active defrag running{#SINGLETON} |redis.memory.active_defrag_running[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if active defragmentation is active |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30352 |18 | |10310 |Redis: RDB last CoW size{#SINGLETON} |redis.persistence.rdb_last_cow_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of copy-on-write allocations during the last RDB save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30353 |18 | |10310 |Redis: Expired time cap reached count{#SINGLETON} |redis.stats.expired_time_cap_reached_count[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30354 |18 | |10310 |Redis: Expired stale %{#SINGLETON} |redis.stats.expired_stale_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30355 |18 | |10310 |Redis: Active defrag misses{#SINGLETON} |redis.stats.active_defrag_misses[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of aborted value reallocations started by the active defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30356 |18 | |10310 |Redis: Active defrag key misses{#SINGLETON} |redis.stats.active_defrag_key_misses[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys that were skipped by the active defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30357 |18 | |10310 |Redis: Active defrag key hits{#SINGLETON} |redis.stats.active_defrag_key_hits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys that were actively defragmented |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30358 |18 | |10310 |Redis: Active defrag hits{#SINGLETON} |redis.stats.active_defrag_hits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of value reallocations performed by active the defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30359 |18 | |10310 |Redis: Executable path{#SINGLETON} |redis.server.executable[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The path to the server's executable |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30360 |18 | |10310 |Redis: Replication second offset{#SINGLETON} |redis.replication.second_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |91 | | |0 | | | | |2 |NULL |Offset up to which replication IDs are accepted |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30361 |18 | |10310 |Redis: AOF last CoW size{#SINGLETON} |redis.persistence.aof_last_cow_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of copy-on-write allocations during the last AOF rewrite operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30362 |18 | |10310 |Redis: Lazyfree pending objects{#SINGLETON} |redis.memory.lazyfree_pending_objects[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of objects waiting to be freed (as a result of calling UNLINK, or FLUSHDB and FLUSHALL with the ASYNC option) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30363 |18 | |10310 |Redis: Memory used startup{#SINGLETON} |redis.memory.used_memory_startup[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Initial amount of memory consumed by Redis at startup in bytes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30364 |18 | |10310 |Redis: Memory used peak %{#SINGLETON} |redis.memory.used_memory_peak_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of used_memory_peak out of used_memory |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30365 |18 | |10310 |Redis: Memory used overhead{#SINGLETON} |redis.memory.used_memory_overhead[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The sum in bytes of all overheads that the server allocated for managing its internal data structures |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30366 |18 | |10310 |Redis: Memory used dataset{#SINGLETON} |redis.memory.used_memory_dataset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of the dataset |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30367 |18 | |10310 |Redis: Memory used dataset %{#SINGLETON} |redis.memory.used_memory_dataset_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of used_memory_dataset out of the net memory usage (used_memory minus used_memory_startup) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30368 |18 | |10310 |Redis: Total system memory{#SINGLETON} |redis.memory.total_system_memory[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total amount of memory that the Redis host has |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30369 |18 | |10310 |Redis: Max memory{#SINGLETON} |redis.memory.maxmemory[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum amount of memory allocated to the Redisdb system |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30370 |18 | |10310 |Redis: Max memory policy{#SINGLETON} |redis.memory.maxmemory_policy[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The value of the maxmemory-policy configuration directive |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30371 |18 | |10310 |Redis: Slave expires tracked keys{#SINGLETON} |redis.stats.slave_expires_tracked_keys[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of keys tracked for expiry purposes (applicable only to writable replicas) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30372 |18 | |10310 |Redis: Allocator active{#SINGLETON} |redis.memory.allocator_active[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30373 |18 | |10310 |Redis: Memory clients normal{#SINGLETON} |redis.memory.mem_clients_normal[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30374 |18 | |10310 |Redis: Memory RSS overhead ratio{#SINGLETON} |redis.memory.rss_overhead_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30375 |18 | |10310 |Redis: Memory RSS overhead bytes{#SINGLETON} |redis.memory.rss_overhead_bytes[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30376 |18 | |10310 |Redis: Memory replication backlog{#SINGLETON} |redis.memory.replication_backlog[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30377 |18 | |10310 |Redis: Memory number of cached scripts{#SINGLETON} |redis.memory.number_of_cached_scripts[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30378 |18 | |10310 |Redis: Memory not counted for evict{#SINGLETON} |redis.memory.not_counted_for_evict[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30379 |18 | |10310 |Redis: Memory clients slaves{#SINGLETON} |redis.memory.mem_clients_slaves[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30380 |18 | |10310 |Redis: Memory AOF buffer{#SINGLETON} |redis.memory.mem_aof_buffer[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30381 |18 | |10310 |Redis: Allocator allocated{#SINGLETON} |redis.memory.allocator_allocated[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30382 |18 | |10310 |Redis: Memory fragmentation bytes{#SINGLETON} |redis.memory.fragmentation_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30383 |18 | |10310 |Redis: Allocator RSS ratio{#SINGLETON} |redis.memory.allocator_rss_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30384 |18 | |10310 |Redis: Allocator RSS bytes{#SINGLETON} |redis.memory.allocator_rss_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30385 |18 | |10310 |Redis: Allocator resident{#SINGLETON} |redis.memory.allocator_resident[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30386 |18 | |10310 |Redis: Allocator fragmentation ratio{#SINGLETON} |redis.memory.allocator_frag_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30387 |18 | |10310 |Redis: Allocator fragmentation bytes{#SINGLETON} |redis.memory.allocator_frag_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30388 |18 | |10310 |Redis: Memory used scripts{#SINGLETON} |redis.memory.used_memory_scripts[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30389 |18 | |10310 |Redis: AOF base size{#SINGLETON} |redis.persistence.aof_base_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |AOF file size on latest startup or rewrite |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30390 |18 | |10310 |Redis: AOF buffer length{#SINGLETON} |redis.persistence.aof_buffer_length[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30391 |18 | |10310 |Redis: AOF current size{#SINGLETON} |redis.persistence.aof_current_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |AOF current file size |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30392 |18 | |10310 |Redis: AOF delayed fsync{#SINGLETON} |redis.persistence.aof_delayed_fsync[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Delayed fsync counter |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30393 |18 | |10310 |Redis: AOF pending background I/O fsync{#SINGLETON} |redis.persistence.aof_pending_bio_fsync[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of fsync pending jobs in background I/O queue |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30394 |18 | |10310 |Redis: AOF pending rewrite{#SINGLETON} |redis.persistence.aof_pending_rewrite[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |2 |NULL |Flag indicating an AOF rewrite operation will |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30395 |18 | |10310 |Redis: AOF rewrite buffer length{#SINGLETON} |redis.persistence.aof_rewrite_buffer_length[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF rewrite buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30396 |18 | |10310 |Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag in bytes |redis.replication.lag_bytes["{#SLAVE_IP}:{#SLAVE_PORT}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Replication lag in bytes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30397 |18 | |10310 |Redis: Master host{#SINGLETON} |redis.replication.master_host[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Host or IP address of the master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30398 |18 | |10310 |Redis: Master last I/O seconds ago{#SINGLETON} |redis.replication.master_last_io_seconds_ago[{#SINGLETON}] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of seconds since the last interaction with master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30399 |18 | |10310 |Redis: Master link status{#SINGLETON} |redis.replication.master_link_status[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Status of the link (up/down) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30400 |18 | |10310 |Redis: Master port{#SINGLETON} |redis.replication.master_port[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Master listening TCP port |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30401 |18 | |10310 |Redis: Master sync in progress{#SINGLETON} |redis.replication.master_sync_in_progress[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicate the master is syncing to the replica |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30402 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_priority[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The priority of the instance as a candidate for failover |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30403 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_read_only[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if the replica is read-only |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30404 |18 | |10310 |Redis: Slave replication offset{#SINGLETON} |redis.replication.slave_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The replication offset of the replica instance |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30405 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10311 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30407 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10312 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30408 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10313 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30411 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10312 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30412 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10312 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30413 |15 | |10312 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30414 |15 | |10313 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30415 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10313 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30416 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10313 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30423 |0 | |10314 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30425 |0 | |10314 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30427 |7 | |10315 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30429 |7 | |10315 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30431 |0 | |10316 |MySQL: Version |mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30432 |0 | |10316 |MySQL: Status |mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30433 |0 | |10316 |MySQL: Get status variables |mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30434 |15 | |10316 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 )| |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30435 |15 | |10316 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30438 |18 | |10316 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30439 |18 | |10316 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30448 |18 | |10316 |MySQL: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30452 |18 | |10316 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30454 |18 | |10316 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30456 |18 | |10316 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30457 |18 | |10316 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30458 |18 | |10316 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30459 |18 | |10316 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30460 |18 | |10316 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30462 |18 | |10316 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30463 |18 | |10316 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30464 |18 | |10316 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30467 |18 | |10316 |MySQL: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30468 |18 | |10316 |MySQL: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30469 |18 | |10316 |MySQL: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30472 |0 | |10316 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30473 |0 | |10316 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30474 |0 | |10316 |MySQL: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30475 |0 | |10316 |MySQL: Replication Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30476 |18 | |10316 |MySQL: Replication Seconds Behind Master {#MASTERHOST} |mysql.seconds_behind_master["{#MASTERHOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30477 |18 | |10316 |MySQL: Replication Slave IO Running {#MASTERHOST} |mysql.slave_io_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30478 |18 | |10316 |MySQL: Replication Slave SQL Running {#MASTERHOST} |mysql.slave_sql_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30479 |11 | |10317 |MySQL: Get status variables |db.odbc.get[get_status_variables,"{$MYSQL.DSN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL |show global status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30480 |11 | |10317 |MySQL: Version |db.odbc.select[version,"{$MYSQL.DSN}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL |select version() | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30481 |11 | |10317 |MySQL: Status |db.odbc.select[ping,"{$MYSQL.DSN}"] |1m |7d |365d |0 |3 | | | | |NULL |1 |select "1" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30482 |15 | |10317 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30483 |15 | |10317 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 )| |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30489 |18 | |10317 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30490 |18 | |10317 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30493 |18 | |10317 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30498 |18 | |10317 |MySQL: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30500 |18 | |10317 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30501 |18 | |10317 |MySQL: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30502 |18 | |10317 |MySQL: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30503 |18 | |10317 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30508 |18 | |10317 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30509 |18 | |10317 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30510 |18 | |10317 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30511 |18 | |10317 |MySQL: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30512 |18 | |10317 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30514 |18 | |10317 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30515 |18 | |10317 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30516 |18 | |10317 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30520 |11 | |10317 |Databases discovery |db.odbc.discovery[databases,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show databases | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30521 |11 | |10317 |Replication discovery |db.odbc.discovery[replication,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30522 |11 | |10317 |MySQL: Size of database {#DATABASE} |db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL |SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30523 |11 | |10317 |MySQL: Replication Slave status {#MASTER_HOST} |db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30526 |18 | |10317 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30527 |0 | |10318 |Docker: Get data_usage |docker.data_usage |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30528 |0 | |10318 |Docker: Get containers |docker.containers |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30529 |0 | |10318 |Docker: Get info |docker.info |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30530 |0 | |10318 |Docker: Ping |docker.ping |1m |7h |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30531 |0 | |10318 |Docker: Get images |docker.images |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30532 |18 | |10318 |Docker: Architecture |docker.architecture |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30533 |18 | |10318 |Docker: Live restore enabled |docker.live_restore.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30534 |18 | |10318 |Docker: Logging driver |docker.logging_driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30535 |18 | |10318 |Docker: Memory limit enabled |docker.mem_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30536 |18 | |10318 |Docker: Memory total |docker.mem.total |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30537 |18 | |10318 |Docker: Name |docker.name |0 |1h |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30538 |18 | |10318 |Docker: NCPU |docker.ncpu |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30539 |18 | |10318 |Docker: Nfd |docker.nfd |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of used File Descriptors |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30540 |18 | |10318 |Docker: NEvents listener |docker.nevents_listener |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30541 |18 | |10318 |Docker: Kernel version |docker.kernel_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30542 |18 | |10318 |Docker: OomKill disabled |docker.oomkill.disabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30543 |18 | |10318 |Docker: Operating system |docker.operating_system |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30544 |18 | |10318 |Docker: OS type |docker.os_type |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30545 |18 | |10318 |Docker: Pids limit enabled |docker.pids_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30546 |18 | |10318 |Docker: Docker root dir |docker.root_dir |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30547 |18 | |10318 |Docker: Server version |docker.server_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30548 |18 | |10318 |Docker: Swap limit enabled |docker.swap_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30549 |18 | |10318 |Docker: Layers size |docker.layers_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30550 |18 | |10318 |Docker: IPv4 Forwarding enabled |docker.ipv4_forwarding.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30551 |18 | |10318 |Docker: Kernel memory enabled |docker.kernel_mem.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30552 |18 | |10318 |Docker: CPU Set enabled |docker.cpu_set.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30553 |18 | |10318 |Docker: Containers size |docker.containers_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30554 |18 | |10318 |Docker: Containers paused |docker.containers.paused |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers paused on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30555 |18 | |10318 |Docker: Containers running |docker.containers.running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers running on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30556 |18 | |10318 |Docker: Containers stopped |docker.containers.stopped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers stopped on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30557 |18 | |10318 |Docker: Containers total |docker.containers.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30558 |18 | |10318 |Docker: CPU CFS Period enabled |docker.cpu_cfs_period.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30559 |18 | |10318 |Docker: CPU CFS Quota enabled |docker.cpu_cfs_quota.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30560 |18 | |10318 |Docker: CPU Shares enabled |docker.cpu_shares.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30561 |18 | |10318 |Docker: Kernel memory TCP enabled |docker.kernel_mem_tcp.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30562 |18 | |10318 |Docker: Debug enabled |docker.debug.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30563 |18 | |10318 |Docker: Default runtime |docker.default_runtime |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30564 |18 | |10318 |Docker: Storage driver |docker.driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Docker storage driver &eol; https://docs.docker.com/storage/storagedriver/ |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30565 |18 | |10318 |Docker: Goroutines |docker.goroutines |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of goroutines |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30566 |18 | |10318 |Docker: Images size |docker.images_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30567 |18 | |10318 |Docker: Images available |docker.images.top_level |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of top-level images |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30568 |18 | |10318 |Docker: Images total |docker.images.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of images with intermediate image layers |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30569 |18 | |10318 |Docker: Cgroup driver |docker.cgroup_driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30570 |18 | |10318 |Docker: Volumes size |docker.volumes_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30571 |0 | |10318 |Containers discovery |docker.containers.discovery[false] |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for containers metrics&eol;&eol;Parameter:&eol;true - Returns all containers&eol;false - Returns only running containers |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30572 |0 | |10318 |Images discovery |docker.images.discovery |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for images metrics |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30573 |0 | |10318 |Container {#NAME}: Get stats |docker.container_stats["{#NAME}"] |1m |0 |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get container stats based on resource usage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30574 |0 | |10318 |Container {#NAME}: Get info |docker.container_info["{#NAME}"] |1m |0 |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Return low-level information about a container |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30575 |18 | |10318 |Container {#NAME}: Online CPUs |docker.container_stats.online_cpus["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30576 |18 | |10318 |Container {#NAME}: Memory commit bytes |docker.container_stats.memory.commit_bytes["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30577 |18 | |10318 |Container {#NAME}: Memory commit peak bytes |docker.container_stats.memory.commit_peak_bytes["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30578 |18 | |10318 |Container {#NAME}: Memory maximum usage |docker.container_stats.memory.max_usage["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30579 |18 | |10318 |Container {#NAME}: Memory private working set |docker.container_stats.memory.private_working_set["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30580 |18 | |10318 |Container {#NAME}: Memory usage |docker.container_stats.memory.usage["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30581 |18 | |10318 |Container {#NAME}: Created |docker.container_info.created["{#NAME}"] |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30582 |18 | |10318 |Container {#NAME}: CPU total usage per second |docker.container_stats.cpu_usage.total.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30583 |18 | |10318 |Container {#NAME}: Networks bytes received per second |docker.networks.rx_bytes["{#NAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30584 |18 | |10318 |Container {#NAME}: Networks incoming packets dropped per second |docker.networks.rx_dropped["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30585 |18 | |10318 |Container {#NAME}: Networks errors received per second |docker.networks.rx_errors["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30586 |18 | |10318 |Container {#NAME}: Networks packets received per second |docker.networks.rx_packets["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30587 |18 | |10318 |Container {#NAME}: Networks bytes sent per second |docker.networks.tx_bytes["{#NAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30588 |18 | |10318 |Container {#NAME}: Networks outgoing packets dropped per second |docker.networks.tx_dropped["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30589 |18 | |10318 |Container {#NAME}: Networks errors sent per second |docker.networks.tx_errors["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30590 |18 | |10318 |Container {#NAME}: CPU usermode usage per second |docker.container_stats.cpu_usage.user.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30591 |18 | |10318 |Container {#NAME}: Throttling periods |docker.container_stats.cpu_usage.throttling_periods["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of periods with throttling active |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30592 |18 | |10318 |Container {#NAME}: Finished at |docker.container_info.finished["{#NAME}"] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30593 |18 | |10318 |Container {#NAME}: OOMKilled |docker.container_info.state.oomkilled["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30594 |18 | |10318 |Container {#NAME}: Image |docker.container_info.image["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30528 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30595 |18 | |10318 |Container {#NAME}: Restart count |docker.container_info.restart_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30596 |18 | |10318 |Container {#NAME}: Started at |docker.container_info.started["{#NAME}"] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30597 |18 | |10318 |Container {#NAME}: Dead |docker.container_info.state.dead["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30598 |18 | |10318 |Container {#NAME}: Error |docker.container_info.state.error["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30599 |18 | |10318 |Container {#NAME}: Exit code |docker.container_info.state.exitcode["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30600 |18 | |10318 |Container {#NAME}: Paused |docker.container_info.state.paused["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30601 |18 | |10318 |Container {#NAME}: Throttled time |docker.container_stats.cpu_usage.throttled_time["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Aggregate time the container was throttled for in nanoseconds |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30602 |18 | |10318 |Container {#NAME}: Pid |docker.container_info.state.pid["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30603 |18 | |10318 |Container {#NAME}: Restarting |docker.container_info.state.restarting["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30604 |18 | |10318 |Container {#NAME}: Running |docker.container_info.state.running["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30605 |18 | |10318 |Container {#NAME}: Status |docker.container_info.state.status["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30606 |18 | |10318 |Container {#NAME}: CPU kernelmode usage per second |docker.container_stats.cpu_usage.kernel.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30607 |18 | |10318 |Container {#NAME}: Throttled periods |docker.container_stats.cpu_usage.throttled_periods["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of periods when the container hits its throttling limit |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30608 |18 | |10318 |Container {#NAME}: Networks packets sent per second |docker.networks.tx_packets["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30609 |18 | |10318 |Image {#NAME}: Created |docker.image.created["{#ID}"] |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30610 |18 | |10318 |Image {#NAME}: Size |docker.image.size["{#ID}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30611 |0 | |10319 |Memcached: Ping |memcached.ping["{$MEMCACHED.CONN.URI}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30612 |0 | |10319 |Memcached: Get status |memcached.stats["{$MEMCACHED.CONN.URI}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30613 |18 | |10319 |Memcached: Commands: FLUSH per second |memcached.commands.flush.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The flush_all command invalidates all items in the database. This operation incurs a performance penalty and shouldn’t take place in production, so check your debug scripts. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30614 |18 | |10319 |Memcached: Bytes used |memcached.stats.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of bytes used to store items. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30615 |18 | |10319 |Memcached: Uptime |memcached.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Memcached server start |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30616 |18 | |10319 |Memcached: New items per second |memcached.stats.total_items.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new items stored per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30617 |18 | |10319 |Memcached: Threads |memcached.stats.threads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of worker threads requested |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30618 |18 | |10319 |Memcached: Misses per second |memcached.stats.misses.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of missed GET requests (items requested but not found) per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30619 |18 | |10319 |Memcached: Hits per second |memcached.stats.hits.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of successful GET requests (items requested and found) per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30620 |18 | |10319 |Memcached: Evictions per second |memcached.stats.evictions.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"An eviction is when an item that still has time to live is removed from the cache because a brand new item needs to be allocated.&eol;The item is selected with a pseudo-LRU mechanism.&eol;A high number of evictions coupled with a low hit rate means your application is setting a large number of keys that are never used again." |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30621 |18 | |10319 |Memcached: Current number of items stored |memcached.stats.curr_items |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of items stored by this instance. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30622 |18 | |10319 |Memcached: Written bytes per second |memcached.stats.bytes_written.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in B/sec |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30623 |18 | |10319 |Memcached: Read bytes per second |memcached.stats.bytes_read.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in B/sec |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30624 |18 | |10319 |Memcached: Process id |memcached.process_id |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PID of the server process |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30625 |18 | |10319 |Memcached: Commands: GET per second |memcached.commands.get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of GET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30626 |18 | |10319 |Memcached: CPU user |memcached.cpu.user |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30627 |18 | |10319 |Memcached: CPU sys |memcached.cpu.sys |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30628 |18 | |10319 |Memcached: Throttled connections |memcached.connections.throttled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a client connection was throttled. When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30629 |18 | |10319 |Memcached: Connection structures |memcached.connections.structures |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection structures allocated by the server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30630 |18 | |10319 |Memcached: New connections per second |memcached.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections opened per second |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30631 |18 | |10319 |Memcached: Queued connections per second |memcached.connections.queued.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times that memcached has hit its connections limit and disabled its listener |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30632 |18 | |10319 |Memcached: Max connections |memcached.connections.max |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max number of concurrent connections |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30633 |18 | |10319 |Memcached: Open connections |memcached.connections.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of clients presently connected |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30634 |18 | |10319 |Memcached: Maximum number of bytes |memcached.config.limit_maxbytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of bytes allowed in cache. You can adjust this setting via a config file or the command line while starting your Memcached server. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30635 |18 | |10319 |Memcached: Commands: SET per second |memcached.commands.set.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30636 |18 | |10319 |Memcached: Memcached version |memcached.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30637 |0 | |10320 |MySQL: Version |mysql.version["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30638 |0 | |10320 |MySQL: Status |mysql.ping["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30639 |0 | |10320 |MySQL: Get status variables |mysql.get_status_variables["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30640 |15 | |10320 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 )| |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30641 |15 | |10320 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30644 |18 | |10320 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30645 |18 | |10320 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30654 |18 | |10320 |MySQL: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30658 |18 | |10320 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30660 |18 | |10320 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30662 |18 | |10320 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30663 |18 | |10320 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30664 |18 | |10320 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30665 |18 | |10320 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30666 |18 | |10320 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30668 |18 | |10320 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30669 |18 | |10320 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30670 |18 | |10320 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30673 |18 | |10320 |MySQL: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30674 |18 | |10320 |MySQL: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30675 |18 | |10320 |MySQL: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30678 |0 | |10320 |Databases discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30679 |0 | |10320 |Replication discovery |mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30680 |0 | |10320 |MySQL: Size of database {#DATABASE} |mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30681 |0 | |10320 |MySQL: Replication Slave status {#MASTER_HOST} |mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30684 |18 | |10320 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.replication.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30685 |12 | |10321 |Get IPMI sensors |ipmi.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The master item that receives all sensors with values for LLD and dependent elements from BMC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30686 |18 | |10321 |Discrete sensors discovery |ipmi.discrete.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the discrete IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30687 |18 | |10321 |Threshold sensors discovery |ipmi.sensors.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the threshold IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30688 |18 | |10321 |IPMI: {#SENSOR_ID} |ipmi.state_text[{#SENSOR_ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |It is a state of the discrete IPMI sensor. |0 |30d |0 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30689 |18 | |10321 |IPMI: {#SENSOR_ID}, {#SENSOR_UNIT} |ipmi.value[{#SENSOR_ID}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |It is a state of the threshold IPMI sensor. |0 |30d |0 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30690 |3 | |10322 |ES: Service status |net.tcp.service["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Checks if the service is running and accepting TCP connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30691 |19 | |10322 |ES: Get cluster stats |es.cluster.get_stats |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns cluster statistics. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/stats | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30692 |3 | |10322 |ES: Service response time |net.tcp.service.perf["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Checks performance of the TCP service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30693 |19 | |10322 |ES: Get nodes stats |es.nodes.get_stats |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns cluster nodes statistics. |0 |30d |0 | |NULL |30s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/stats | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30694 |19 | |10322 |ES: Get cluster health |es.cluster.get_health |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns the health status of a cluster. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/health?timeout=5s | | | |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30695 |18 | |10322 |ES: Number of non-deleted documents |es.indices.docs.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of non-deleted documents across all primary shards assigned to the selected nodes.&eol;This number is based on the documents in Lucene segments and may include the documents from nested fields. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30696 |18 | |10322 |ES: Cluster uptime |es.nodes.jvm.max_uptime[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime duration in seconds since JVM has last started. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30697 |18 | |10322 |ES: Total size of all file stores |es.nodes.fs.total_in_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size in bytes of all file stores across all selected nodes. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30698 |18 | |10322 |ES: Total available size to JVM in all file stores |es.nodes.fs.available_in_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes available to JVM in the file stores across all selected nodes.&eol;Depending on OS or process-level restrictions, this number may be less than nodes.fs.free_in_byes. &eol;This is the actual amount of free disk space the selected Elasticsearch nodes can use. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30699 |18 | |10322 |ES: Nodes with the master role |es.nodes.count.master |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the master role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30700 |18 | |10322 |ES: Nodes with the ingest role |es.nodes.count.ingest |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the ingest role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30701 |18 | |10322 |ES: Nodes with the data role |es.nodes.count.data |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the data role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30702 |18 | |10322 |ES: Delayed unassigned shards |es.cluster.delayed_unassigned_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards whose allocation has been delayed by the timeout settings. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30703 |18 | |10322 |ES: Indices with shards assigned to nodes |es.indices.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of indices with shards assigned to the selected nodes. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30704 |18 | |10322 |ES: Task max waiting in queue |es.cluster.task_max_waiting_in_queue |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The time expressed in seconds since the earliest initiated task is waiting for being performed. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30705 |18 | |10322 |ES: Cluster health status |es.cluster.status |0 |7d |365d |0 |3 | | | | |NULL |94 | | |0 | | | | |0 |NULL |Health status of the cluster, based on the state of its primary and replica shards. Statuses are:&eol;green&eol;All shards are assigned.&eol;yellow&eol;All primary shards are assigned, but one or more replica shards are unassigned. If a node in the cluster fails, some data could be unavailable until that node is repaired.&eol;red&eol;One or more primary shards are unassigned, so some data is unavailable. This can occur briefly during cluster startup as primary shards are assigned. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30706 |18 | |10322 |ES: Number of relocating shards |es.cluster.relocating_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are under relocation. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30707 |18 | |10322 |ES: Number of pending tasks |es.cluster.number_of_pending_tasks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of cluster-level changes that have not yet been executed. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30708 |18 | |10322 |ES: Number of nodes |es.cluster.number_of_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of nodes within the cluster. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30709 |18 | |10322 |ES: Number of data nodes |es.cluster.number_of_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of nodes that are dedicated to data nodes. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30710 |18 | |10322 |ES: Number of initializing shards |es.cluster.initializing_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are under initialization. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30711 |18 | |10322 |ES: Inactive shards percentage |es.cluster.inactive_shards_percent_as_number |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of inactive shards in the cluster expressed as a percentage. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30712 |18 | |10322 |ES: Number of unassigned shards |es.cluster.unassigned_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are not allocated. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30713 |19 | |10322 |Cluster nodes discovery |es.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |1 |NULL |Discovery ES cluster nodes. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/_all/nodes | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30714 |15 | |10322 |ES {#ES.NODE}: Query latency |es.node.indices.search.query_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( last(es.node.indices.search.query_total[{#ES.NODE}]) + (last(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.flush.total[{#ES.NODE}]) + (last(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.indexing.index_total[{#ES.NODE}]) + (last(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.search.fetch_total[{#ES.NODE}]) + (last(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30718 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool active threads |es.node.thread_pool.refresh.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the refresh thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30719 |18 | |10322 |ES {#ES.NODE}: Total number of query |es.node.indices.search.query_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of query operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30720 |18 | |10322 |ES {#ES.NODE}: Rate of queries |es.node.indices.search.query.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of query operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30721 |18 | |10322 |ES {#ES.NODE}: Amount of JVM heap committed |es.node.jvm.mem.heap_committed_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of memory, in bytes, available for use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30722 |18 | |10322 |ES {#ES.NODE}: Maximum JVM memory available for use |es.node.jvm.mem.heap_max_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The maximum amount of memory, in bytes, available for use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30723 |18 | |10322 |ES {#ES.NODE}: Amount of JVM heap currently in use |es.node.jvm.mem.heap_used_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The memory, in bytes, currently in use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30724 |18 | |10322 |ES {#ES.NODE}: Percent of JVM heap currently in use |es.node.jvm.mem.heap_used_percent[{#ES.NODE}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of memory currently in use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30725 |18 | |10322 |ES {#ES.NODE}: Node uptime |es.node.jvm.uptime[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |JVM uptime in seconds. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30726 |18 | |10322 |ES {#ES.NODE}: Total available size |es.node.fs.total.available_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes available to this Java virtual machine on all file stores. &eol;Depending on OS or process level restrictions, this might appear less than fs.total.free_in_bytes. &eol;This is the actual amount of free disk space the Elasticsearch node can utilize. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30727 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool executor tasks completed |es.node.thread_pool.refresh.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the refresh thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30728 |18 | |10322 |ES {#ES.NODE}: Time spent performing query |es.node.indices.search.query_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing query operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30729 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool executor tasks rejected |es.node.thread_pool.refresh.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the refresh thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30730 |18 | |10322 |ES {#ES.NODE}: Search thread pool active threads |es.node.thread_pool.search.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the search thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30731 |18 | |10322 |ES {#ES.NODE}: Search thread pool executor tasks completed |es.node.thread_pool.search.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the search thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30732 |18 | |10322 |ES {#ES.NODE}: Search thread pool tasks in queue |es.node.thread_pool.search.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the search thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30733 |18 | |10322 |ES {#ES.NODE}: Search thread pool executor tasks rejected |es.node.thread_pool.search.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the search thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30734 |18 | |10322 |ES {#ES.NODE}: Write thread pool active threads |es.node.thread_pool.write.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the write thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30735 |18 | |10322 |ES {#ES.NODE}: Write thread pool executor tasks completed |es.node.thread_pool.write.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the write thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30736 |18 | |10322 |ES {#ES.NODE}: Write thread pool tasks in queue |es.node.thread_pool.write.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the write thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30737 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool tasks in queue |es.node.thread_pool.refresh.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the refresh thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30738 |18 | |10322 |ES {#ES.NODE}: Current query operations |es.node.indices.search.query_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of query operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30739 |18 | |10322 |ES {#ES.NODE}: Total time spent performing query |es.node.indices.search.query_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in milliseconds spent performing query operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30740 |18 | |10322 |ES {#ES.NODE}: Time spent throttling operations |es.node.indices.indexing.throttle_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30741 |18 | |10322 |ES {#ES.NODE}: Number of open HTTP connections |es.node.http.current_open[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of currently open HTTP connections for the node. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30742 |18 | |10322 |ES {#ES.NODE}: Rate of HTTP connections opened |es.node.http.opened.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of HTTP connections opened for the node per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30743 |18 | |10322 |ES {#ES.NODE}: Total time spent on flushing indices to disk |es.node.indices.flush.total_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total time in milliseconds spent performing flush operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30744 |18 | |10322 |ES {#ES.NODE}: Total number of index flushes to disk |es.node.indices.flush.total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of flush operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30745 |18 | |10322 |ES {#ES.NODE}: Current indexing operations |es.node.indices.indexing.index_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of indexing operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30746 |18 | |10322 |ES {#ES.NODE}: Total time spent performing indexing |es.node.indices.indexing.index_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total time in milliseconds spent performing indexing operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30747 |18 | |10322 |ES {#ES.NODE}: Total number of indexing |es.node.indices.indexing.index_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of indexing operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30748 |18 | |10322 |ES {#ES.NODE}: Time spent throttling merge operations |es.node.indices.merges.total_throttled_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling merge operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30749 |18 | |10322 |ES {#ES.NODE}: Total size |es.node.fs.total.total_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size (in bytes) of all file stores. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30750 |18 | |10322 |ES {#ES.NODE}: Time spent throttling recovery operations |es.node.indices.recovery.throttle_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling recovery operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30751 |18 | |10322 |ES {#ES.NODE}: Rate of index refreshes |es.node.indices.refresh.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of refresh operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30752 |18 | |10322 |ES {#ES.NODE}: Time spent performing refresh |es.node.indices.refresh.time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing refresh operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30753 |18 | |10322 |ES {#ES.NODE}: Current fetch operations |es.node.indices.search.fetch_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of fetch operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30754 |18 | |10322 |ES {#ES.NODE}: Total time spent performing fetch |es.node.indices.search.fetch_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in milliseconds spent performing fetch operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30755 |18 | |10322 |ES {#ES.NODE}: Time spent performing fetch |es.node.indices.search.fetch_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing fetch operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30756 |18 | |10322 |ES {#ES.NODE}: Total number of fetch |es.node.indices.search.fetch_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of fetch operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30757 |18 | |10322 |ES {#ES.NODE}: Rate of fetch |es.node.indices.search.fetch.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of fetch operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30758 |18 | |10322 |ES {#ES.NODE}: Write thread pool executor tasks rejected |es.node.thread_pool.write.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the write thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30759 |18 | |10308 |TCP BACKEND discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30760 |18 | |10308 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30761 |18 | |10308 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30762 |15 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30763 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30764 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30765 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30766 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30767 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30768 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30769 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30770 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30771 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30772 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30773 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30774 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30775 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30776 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30777 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30778 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30779 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30780 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30781 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30782 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30783 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30784 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30785 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30786 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30787 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30788 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30789 |3 | |10309 |HAProxy: Service response time |net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30790 |3 | |10309 |HAProxy: Service status |net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30791 |18 | |10309 |TCP BACKEND discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30792 |18 | |10309 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30793 |18 | |10309 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30794 |15 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30795 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30796 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30797 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30798 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30799 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30800 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30801 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30802 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30803 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30804 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30805 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30806 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30807 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30808 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30809 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30810 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30811 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30812 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30813 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30814 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30815 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30816 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30817 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30818 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30819 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30820 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30821 |19 | |10323 |ClickHouse: Ping |clickhouse.ping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ping | | | |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30822 |19 | |10323 |ClickHouse: Version |clickhouse.version |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the server |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT version()"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30823 |19 | |10323 |ClickHouse: Get replicas info |clickhouse.replicas |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT database, table, is_readonly, is_session_expired, future_parts, parts_to_check, queue_size, inserts_in_queue, merges_in_queue, log_max_index, log_pointer, total_replicas, active_replicas, log_max_index - log_pointer as replica_lag FROM system.replicas format JSON"}]| |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30824 |19 | |10323 |ClickHouse: Get system.asynchronous_metrics |clickhouse.system.asynchronous_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get metrics that are calculated periodically in the background |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select metric, value from system.asynchronous_metrics format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30825 |19 | |10323 |ClickHouse: Get system.events |clickhouse.system.events |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information about the number of events that have occurred in the system. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select event, value from system.events format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30826 |19 | |10323 |ClickHouse: Get system.metrics |clickhouse.system.metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get metrics which can be calculated instantly, or have a current value format JSONEachRow |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select metric, value from system.metrics format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30827 |19 | |10323 |ClickHouse: Longest currently running query time |clickhouse.process.elapsed |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Get longest running query. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT max(elapsed) FROM system.processes"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30828 |19 | |10323 |ClickHouse: Get tables info |clickhouse.tables |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select database, table, sum(bytes) as bytes, count() as parts, sum(rows) as rows from system.parts where active = 1 group by database, table format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30829 |19 | |10323 |ClickHouse: Get system.settings |clickhouse.system.settings |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information about settings that are currently in use. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select name, value from system.settings format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30830 |19 | |10323 |ClickHouse: Get dictionaries info |clickhouse.dictionaries |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT * FROM system.dictionaries format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |
-ROW |30831 |18 | |10323 |ClickHouse: Write syscalls in fly |clickhouse.write |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of write (write, pwrite, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30832 |18 | |10323 |ClickHouse: Total replication tasks in queue |clickhouse.replicas.sum.queue.size |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30833 |18 | |10323 |ClickHouse: New queries per second |clickhouse.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30834 |18 | |10323 |ClickHouse: Read syscalls in fly |clickhouse.read |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of read (read, pread, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30835 |18 | |10323 |ClickHouse: Read bytes per second |clickhouse.read_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network)." |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30836 |18 | |10323 |ClickHouse: ZooKeeper wait time |clickhouse.zookeper.wait.time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent in waiting for ZooKeeper operations. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30837 |18 | |10323 |ClickHouse: Replication lag across all tables |clickhouse.replicas.max.absolute.delay |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum replica queue delay relative to current time |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30838 |18 | |10323 |ClickHouse: Total number read-only Replicas |clickhouse.replicas.readonly.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of Replicated tables that are currently in readonly state &eol;due to re-initialization after ZooKeeper session loss &eol;or due to startup without ZooKeeper configured." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30839 |18 | |10323 |ClickHouse: Revision |clickhouse.revision |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Revision of the server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30840 |18 | |10323 |ClickHouse: ZooKeeper exeptions per second |clickhouse.zookeper.exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions that does not belong to user/hardware exceptions. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30841 |18 | |10323 |ClickHouse: New SELECT queries per second |clickhouse.select_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30842 |18 | |10323 |ClickHouse: ZooKeeper user exeptions per second |clickhouse.zookeper.user_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by no znodes, bad version, node exists, node empty and no children for ephemeral. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30843 |18 | |10323 |ClickHouse: ZooKeeper sessions |clickhouse.zookeper.session |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of sessions (connections) to ZooKeeper. Should be no more than one. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30844 |18 | |10323 |ClickHouse: ZooKeeper requests |clickhouse.zookeper.request |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests to ZooKeeper in progress. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30845 |18 | |10323 |ClickHouse: ZooKeeper hardware exeptions per second |clickhouse.zookeper.hw_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by session moved/expired, connection loss, marshalling error, operation timed out and invalid zhandle state. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30846 |18 | |10323 |ClickHouse: Uptime |clickhouse.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since ClickHouse server start |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30847 |18 | |10323 |ClickHouse: Current running queries |clickhouse.query.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing queries |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30848 |18 | |10323 |ClickHouse: Current distribute connections |clickhouse.connections.distribute |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to remote servers sending data that was INSERTed into Distributed tables. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30849 |18 | |10323 |ClickHouse: Current HTTP connections |clickhouse.connections.http |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to HTTP server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30850 |18 | |10323 |ClickHouse: Allocated bytes |clickhouse.jemalloc.allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes allocated by the application." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30851 |18 | |10323 |ClickHouse: Current Interserver connections |clickhouse.connections.interserver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections from other replicas to fetch parts. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30852 |18 | |10323 |ClickHouse: Current MySQL connections |clickhouse.connections.mysql |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to MySQL server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30853 |18 | |10323 |ClickHouse: Current TCP connections |clickhouse.connections.tcp |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to TCP server (clients with native interface). |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30854 |18 | |10323 |ClickHouse: Current distributed files to insert |clickhouse.distributed.files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30855 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.fail.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Connection failures after all retries in replicated DB connection pool" |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30856 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.retry.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Connection retries in replicated DB connection pool |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30857 |18 | |10323 |ClickHouse: New INSERT queries per second |clickhouse.insert_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30858 |18 | |10323 |ClickHouse: Delayed insert queries |clickhouse.insert.delay |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30859 |18 | |10323 |ClickHouse: Inserted bytes per second |clickhouse.inserted_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of uncompressed bytes inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30860 |18 | |10323 |ClickHouse: Inserted rows per second |clickhouse.inserted_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of rows inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30861 |18 | |10323 |ClickHouse: Mapped memory |clickhouse.jemalloc.mapped |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes in active extents mapped by the allocator." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30862 |18 | |10323 |ClickHouse: Network errors per second |clickhouse.network.error.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Network errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30863 |18 | |10323 |ClickHouse: Resident memory |clickhouse.jemalloc.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Maximum number of bytes in physically resident data pages mapped by the allocator, &eol;comprising all pages dedicated to allocator metadata, pages backing active allocations, &eol;and unused dirty pages." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30864 |18 | |10323 |ClickHouse: Max count of parts per partition across all tables |clickhouse.max.part.count.for.partition |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30865 |18 | |10323 |ClickHouse: Memory used for queries |clickhouse.memory.tracking |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in currently executing queries." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30866 |18 | |10323 |ClickHouse: Memory used for background merges |clickhouse.memory.tracking.background |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround merges, mutations and fetches).&eol; Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30867 |18 | |10323 |ClickHouse: Memory used for backround moves |clickhouse.memory.tracking.background.moves |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&eol; This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30868 |18 | |10323 |ClickHouse: Memory used for merges |clickhouse.memory.tracking.merges |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. &eol;This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30869 |18 | |10323 |ClickHouse: Memory used for background schedule pool |clickhouse.memory.tracking.schedule.pool |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables)." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30870 |18 | |10323 |ClickHouse: Uncompressed bytes merged per second |clickhouse.merge_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Uncompressed bytes that were read for background merges |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30871 |18 | |10323 |ClickHouse: Merged rows per second |clickhouse.merge_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rows read for background merges. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30872 |18 | |10323 |ClickHouse: Current running merges |clickhouse.merge.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing background merges |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30873 |18 | |10323 |ClickHouse: ZooKeeper watches |clickhouse.zookeper.watch |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of watches (e.g., event subscriptions) in ZooKeeperr. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30874 |18 | |10323 |Dictionaries |clickhouse.dictionaries.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about dictionaries |0 |30d |1 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30875 |18 | |10323 |Replicas |clickhouse.replicas.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about replicas |0 |30d |1 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30876 |18 | |10323 |Tables |clickhouse.tables.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about tables |0 |30d |1 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30877 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Bytes allocated |clickhouse.dictionary.bytes_allocated["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of RAM the dictionary uses. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30878 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Element count |clickhouse.dictionary.element_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of items stored in the dictionary. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30879 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Load factor |clickhouse.dictionary.load_factor["{#NAME}"] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage filled in the dictionary (for a hashed dictionary, the percentage filled in the hash table). |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30880 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Active replicas |clickhouse.replica.active_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas). (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30881 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica future parts |clickhouse.replica.future_parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts that will appear as the result of INSERTs or merges that haven’t been done yet. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30882 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size |clickhouse.replica.inserts_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of inserts of blocks of data that need to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30883 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica readonly |clickhouse.replica.is_readonly["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |Whether the replica is in read-only mode.&eol;This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30884 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica session expired |clickhouse.replica.is_session_expired["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |True if the ZooKeeper session expired |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30885 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica lag |clickhouse.replica.lag["{#DB}.{#TABLE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Difference between log_max_index and log_pointer |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30886 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log max index |clickhouse.replica.log_max_index["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30887 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log pointer |clickhouse.replica.log_pointer["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30888 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue merges size |clickhouse.replica.merges_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of merges waiting to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30889 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica parts to check |clickhouse.replica.parts_to_check["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30890 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue size |clickhouse.replica.queue_size["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the queue for operations waiting to be performed. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30891 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Total replicas |clickhouse.replica.total_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of known replicas of this table. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30892 |18 | |10323 |ClickHouse: {#DB}: Bytes |clickhouse.db.bytes["{#DB}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size in bytes. |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30893 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Bytes |clickhouse.table.bytes["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Table size in bytes. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30894 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Parts |clickhouse.table.parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of parts of the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30895 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Rows |clickhouse.table.rows["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows in the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10020 |0 | |10001 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10059 |0 | |10001 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10073 |5 | |10084 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |10061 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10074 |5 | |10084 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |10062 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10075 |5 | |10084 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |10063 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10076 |5 | |10084 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |10064 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10077 |5 | |10084 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |10065 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |10078 |5 | |10084 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |10066 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22833 |0 | |10074 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22834 |0 | |10074 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22873 |0 | |10075 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22874 |0 | |10075 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22913 |0 | |10076 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22914 |0 | |10076 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22953 |0 | |10077 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22954 |0 | |10077 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22993 |0 | |10078 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |22994 |0 | |10078 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23033 |0 | |10079 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23034 |0 | |10079 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23160 |0 | |10081 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23161 |0 | |10081 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23252 |5 | |10084 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |22424 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23253 |5 | |10084 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22412 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23255 |5 | |10084 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22430 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23256 |5 | |10084 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |22422 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23257 |5 | |10084 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22406 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23258 |5 | |10084 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |22408 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23259 |5 | |10084 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22402 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23260 |5 | |10084 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |22418 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23261 |5 | |10084 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22416 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23262 |5 | |10084 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22689 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23264 |5 | |10084 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22399 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23265 |5 | |10084 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22420 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23266 |5 | |10084 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |22414 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23267 |5 | |10084 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |23171 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23268 |5 | |10084 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22426 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23269 |5 | |10084 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |22404 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23270 |5 | |10084 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22400 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23271 |5 | |10084 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |22219 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23272 |5 | |10084 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |23251 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23273 |5 | |10084 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |22189 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23274 |5 | |10084 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |22183 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23275 |5 | |10084 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |22396 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23276 |5 | |10084 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |22185 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23277 |5 | |10084 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |22187 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23287 |0 | |10084 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |10020 |10 | | |0 | | | | |0 |1 |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23288 |0 | |10084 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |10059 |NULL | | |0 | | | | |0 |1 | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23319 |0 | |10001 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23320 |0 | |10074 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23321 |0 | |10075 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23322 |0 | |10076 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23323 |0 | |10077 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23324 |0 | |10078 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23325 |0 | |10079 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23326 |0 | |10081 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23327 |0 | |10084 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23319 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23328 |5 | |10084 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |22401 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23620 |5 | |10084 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |22191 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23625 |5 | |10084 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |22196 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23628 |5 | |10084 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |22199 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23635 |5 | |10084 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |23634 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23662 |5 | |10084 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |23661 |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |23664 |5 | |10084 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |23663 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |25367 |5 | |10084 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25366 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |25371 |5 | |10084 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25370 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |25667 |5 | |10084 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25665 |NULL | | |0 | | | | |0 |NULL | |0 |30 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |25668 |5 | |10084 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |25666 |NULL | | |0 | | | | |0 |NULL | |0 |30 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27138 |3 | |10203 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27067 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27139 |3 | |10203 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27066 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27140 |3 | |10203 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27065 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27149 |3 | |10204 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27067 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27150 |3 | |10204 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27066 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27151 |3 | |10204 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27065 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27180 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10207 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27181 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27182 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27183 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27184 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27185 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27186 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27187 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27188 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27189 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27190 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10207 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27191 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27192 |3 | |10207 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27193 |3 | |10207 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27194 |3 | |10207 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10208 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27216 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27217 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27218 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27219 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27220 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27221 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27222 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27223 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27224 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27225 |3 | |10208 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27226 |3 | |10208 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27227 |3 | |10208 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27251 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10210 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27252 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27253 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27254 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27255 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27256 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27257 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27258 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27259 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27260 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27261 |3 | |10210 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27262 |3 | |10210 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27263 |3 | |10210 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27272 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10211 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27273 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27274 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27275 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27276 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27277 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27278 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27279 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27280 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27281 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27282 |3 | |10211 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27283 |3 | |10211 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27284 |3 | |10211 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27299 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10210 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27301 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10211 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27321 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10218 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27322 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27323 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27324 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27325 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27326 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27327 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27328 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27329 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27330 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27331 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10218 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27332 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27333 |3 | |10218 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27334 |3 | |10218 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27335 |3 | |10218 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27365 |3 | |10220 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27366 |3 | |10220 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27367 |3 | |10220 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27380 |20 |1.3.6.1.4.1.9.2.1.58 |10220 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |27376 |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27382 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10220 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27383 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10220 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27385 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10218 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27386 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10218 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27397 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10218 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10218 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |27391 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27399 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10218 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27400 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10218 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27401 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10218 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27402 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10218 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27409 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10220 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27410 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10220 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27411 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10220 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27412 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10220 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27413 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10220 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27425 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27426 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27427 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10218 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |27417 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27428 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10218 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27429 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27430 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27431 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10218 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27432 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10218 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27443 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27444 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27445 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10220 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27446 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27447 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27448 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10220 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27449 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10220 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27450 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10221 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27451 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27452 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27453 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27454 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27455 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27456 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27457 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27458 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27459 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27460 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10221 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27461 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27462 |3 | |10221 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27463 |3 | |10221 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27464 |3 | |10221 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27486 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10222 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27487 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27488 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27489 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27490 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27491 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27492 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27493 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27494 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27495 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27496 |3 | |10222 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27497 |3 | |10222 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27498 |3 | |10222 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27520 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10223 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27521 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27522 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27523 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27524 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27525 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27526 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27527 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27528 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27529 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27530 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10223 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27531 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27532 |3 | |10223 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27533 |3 | |10223 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27534 |3 | |10223 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27556 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10224 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27557 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27558 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27559 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27560 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27561 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27562 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27563 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27564 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27565 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27566 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10224 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27567 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27568 |3 | |10224 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27569 |3 | |10224 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27570 |3 | |10224 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27596 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10225 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27068 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27597 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27069 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27598 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27076 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27599 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27074 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27600 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27072 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27601 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27073 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27602 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27075 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27603 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27071 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27604 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27077 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27605 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27070 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27606 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10225 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27029 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27607 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10225 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27030 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27608 |3 | |10225 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27138 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27609 |3 | |10225 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27139 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27610 |3 | |10225 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27140 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27611 |17 | |10225 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27146 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27615 |20 |1.3.6.1.2.1.1.5.0 |10225 |System name |system.name |1h |2w |0 |0 |1 | | | | |27141 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27618 |5 | |10225 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27143 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27619 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10226 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27620 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27621 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27622 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27623 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27624 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27625 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27626 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27627 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27628 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27629 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10226 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27630 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27631 |3 | |10226 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27632 |3 | |10226 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27633 |3 | |10226 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27642 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10227 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27643 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27644 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27645 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27646 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27647 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27648 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27649 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27650 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27651 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27652 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10227 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27653 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27654 |3 | |10227 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27655 |3 | |10227 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27656 |3 | |10227 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27722 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10229 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27723 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27724 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27725 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27726 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27727 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27728 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27729 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27730 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27731 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27732 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10229 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27733 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27734 |3 | |10229 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27735 |3 | |10229 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27736 |3 | |10229 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27756 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10230 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27757 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27758 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27759 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27760 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27761 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27762 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27763 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27764 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27765 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27766 |3 | |10230 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27767 |3 | |10230 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27768 |3 | |10230 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27788 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10231 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27789 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27790 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27791 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27792 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27793 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27794 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27795 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27796 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27797 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27798 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10231 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27799 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27800 |3 | |10231 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27801 |3 | |10231 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27802 |3 | |10231 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27872 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10233 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27873 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27874 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27875 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27876 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27877 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27878 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27879 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27880 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27881 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27882 |3 | |10233 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27883 |3 | |10233 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27884 |3 | |10233 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27909 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10234 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27910 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27911 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27912 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27913 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27914 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27915 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27916 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27917 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27918 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27919 |3 | |10234 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27920 |3 | |10234 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27921 |3 | |10234 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27944 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10235 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27945 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27946 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27947 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27948 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27949 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27950 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27951 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27952 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27953 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27954 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10235 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27955 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27956 |3 | |10235 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27957 |3 | |10235 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27958 |3 | |10235 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27976 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10236 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27977 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27978 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27979 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27980 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27981 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27982 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27983 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27984 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27985 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27986 |3 | |10236 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27987 |3 | |10236 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27988 |3 | |10236 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28005 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10237 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27068 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28006 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27069 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28007 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27076 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28008 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27074 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28009 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27072 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28010 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27073 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28011 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27075 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28012 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27071 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28013 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27077 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28014 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27070 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28015 |3 | |10237 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27138 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28016 |3 | |10237 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27139 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28017 |3 | |10237 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27140 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27146 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |1h |2w |0 |0 |1 | | | | |27141 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27143 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10250 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28120 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28121 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28124 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28125 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28126 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28127 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28128 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10250 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28129 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28130 |3 | |10250 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28131 |3 | |10250 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28132 |3 | |10250 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28175 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28176 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28177 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28178 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28179 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28180 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28181 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28182 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28183 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28184 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28185 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28186 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28187 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28188 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28192 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28195 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28207 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10253 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28208 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10253 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28209 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10253 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28210 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10253 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28212 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10253 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28213 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10253 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28214 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10253 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28215 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10253 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28216 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10253 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28217 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28218 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28219 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10253 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28220 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28222 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28223 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10253 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28224 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28225 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28226 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28227 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28228 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28229 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28230 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28231 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28232 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28233 |3 | |10253 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28234 |3 | |10253 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28235 |3 | |10253 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28245 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10253 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |28244 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28247 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |28246 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28249 |5 | |10084 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |28248 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28280 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10254 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28281 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28282 |3 | |10254 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28283 |3 | |10254 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28284 |3 | |10254 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28293 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10254 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28294 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28295 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28296 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28297 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28298 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28299 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28300 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28301 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28302 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28330 |3 | |10255 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28331 |3 | |10255 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28332 |3 | |10255 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28377 |3 | |10256 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28378 |3 | |10256 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28379 |3 | |10256 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28426 |3 | |10257 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27138 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28427 |3 | |10257 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27139 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28428 |3 | |10257 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27140 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28429 |17 | |10257 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27146 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28433 |20 |1.3.6.1.2.1.1.5.0 |10257 |System name |system.name |1h |2w |0 |0 |1 | | | | |27141 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28436 |5 | |10257 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27143 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28454 |3 | |10258 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28455 |3 | |10258 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28456 |3 | |10258 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28482 |3 | |10259 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28483 |3 | |10259 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28484 |3 | |10259 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28534 |5 | |10084 |Zabbix LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |28533 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28536 |5 | |10084 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |28535 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28538 |5 | |10084 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |28537 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28955 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10248 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28956 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28957 |3 | |10248 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28958 |3 | |10248 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28959 |3 | |10248 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28968 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10248 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28969 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28970 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28971 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28972 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28973 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28974 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28975 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28976 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28977 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28993 |15 | |10248 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |28978 |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28994 |20 |1.3.6.1.4.1.2021.4.6.0 |10248 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |28979 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28995 |20 |1.3.6.1.4.1.2021.4.14.0 |10248 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |28980 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28996 |20 |1.3.6.1.4.1.2021.4.15.0 |10248 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |28981 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28997 |20 |1.3.6.1.4.1.2021.4.5.0 |10248 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |28982 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28998 |15 | |10248 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |28983 |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |28999 |20 |1.3.6.1.4.1.2021.4.3.0 |10248 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |28984 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29000 |20 |1.3.6.1.4.1.2021.4.4.0 |10248 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |28985 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29001 |15 | |10248 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |28986 |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29002 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10248 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |28987 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29003 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10248 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |28988 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29004 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10248 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |28989 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29005 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10248 |Number of CPUs |system.cpu.num[snmp] |1m |7d |365d |0 |3 | | | | |28990 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;Count the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29006 |20 |1.3.6.1.4.1.2021.11.59.0 |10248 |Interrupts per second |system.cpu.intr[ssRawInterrupts.0] |1m |7d |365d |0 |0 | | | | |28991 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29007 |20 |1.3.6.1.4.1.2021.11.60.0 |10248 |Context switches per second |system.cpu.switches[ssRawContexts.0] |1m |7d |365d |0 |0 | | | | |28992 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29011 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10248 |Block devices discovery |vfs.dev.discovery[snmp] |1h |90d |0 |0 |4 | | | | |29008 |NULL | | |0 | | | | |1 |NULL |Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29012 |18 | |10248 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |29009 |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |29005 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29013 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10248 |Mounted filesystem discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |29010 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29031 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!r/s | | |29014 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of read accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29032 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!w/s | | |29015 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of write accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29033 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk utilization |vfs.dev.util[diskIOLA1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29016 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The 1 minute average load of disk (%) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29034 |20 |1.3.6.1.4.1.2021.11.53.0 |10248 |CPU idle time |system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29017 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29035 |20 |1.3.6.1.4.1.2021.11.52.0 |10248 |CPU system time |system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29018 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29036 |20 |1.3.6.1.4.1.2021.11.50.0 |10248 |CPU user time |system.cpu.user[ssCpuRawUser.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29019 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29037 |20 |1.3.6.1.4.1.2021.11.64.0 |10248 |CPU steal time |system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29020 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29038 |20 |1.3.6.1.4.1.2021.11.61.0 |10248 |CPU softirq time |system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29021 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29039 |20 |1.3.6.1.4.1.2021.11.51.0 |10248 |CPU nice time |system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29022 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29040 |20 |1.3.6.1.4.1.2021.11.54.0 |10248 |CPU iowait time |system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29023 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29041 |20 |1.3.6.1.4.1.2021.11.56.0 |10248 |CPU interrupt time |system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29024 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29042 |20 |1.3.6.1.4.1.2021.11.65.0 |10248 |CPU guest time |system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29025 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29043 |20 |1.3.6.1.4.1.2021.11.66.0 |10248 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29026 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29044 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10248 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29027 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29045 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10248 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29028 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29047 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10248 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29030 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29049 |18 | |10248 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |29048 |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29034 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29050 |3 | |10249 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29051 |3 | |10249 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29052 |3 | |10249 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29077 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10249 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27118 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29078 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27119 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29079 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27126 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29080 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27124 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29081 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27122 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29082 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27123 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29083 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27125 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29084 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27121 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29085 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27127 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29086 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27120 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29124 |0 | |10001 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29087 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29125 |0 | |10001 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29088 |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29126 |0 | |10001 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29089 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29127 |0 | |10001 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29090 |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29128 |0 | |10001 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29091 |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29129 |0 | |10001 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29092 |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29130 |0 | |10001 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29093 |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29131 |0 | |10001 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29094 |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29132 |0 | |10001 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29095 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29133 |0 | |10001 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29096 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29134 |0 | |10001 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29097 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29135 |0 | |10001 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29098 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29136 |0 | |10001 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29099 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29137 |0 | |10001 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29100 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29138 |0 | |10001 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29101 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29139 |0 | |10001 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29102 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29140 |0 | |10001 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29103 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29141 |0 | |10001 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29104 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29142 |0 | |10001 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29105 |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29143 |0 | |10001 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29106 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29144 |0 | |10001 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29107 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29145 |0 | |10001 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29108 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29146 |0 | |10001 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |29109 |NULL | | |0 | | | | |0 |NULL |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29147 |0 | |10001 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29110 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29148 |0 | |10001 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29111 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29149 |0 | |10001 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29112 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29150 |0 | |10001 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29113 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29151 |0 | |10001 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29152 |0 | |10001 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29115 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29153 |0 | |10001 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29116 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29154 |0 | |10001 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29117 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29155 |0 | |10001 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29118 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29156 |0 | |10001 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29119 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29157 |0 | |10001 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29120 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29158 |0 | |10001 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29121 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29159 |0 | |10001 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29122 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29160 |0 | |10001 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29123 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29161 |0 | |10084 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29124 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29162 |0 | |10084 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29125 |NULL | | |0 | | | | |0 |1 |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29163 |0 | |10084 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29126 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29164 |0 | |10084 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29127 |NULL | | |0 | | | | |0 |1 |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29165 |0 | |10084 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29128 |NULL | | |0 | | | | |0 |1 |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29166 |0 | |10084 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29129 |NULL | | |0 | | | | |0 |1 |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29167 |0 | |10084 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29130 |NULL | | |0 | | | | |0 |1 |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29168 |0 | |10084 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29131 |NULL | | |0 | | | | |0 |1 |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29169 |0 | |10084 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29132 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29170 |0 | |10084 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29133 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29171 |0 | |10084 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29134 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29172 |0 | |10084 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29135 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29173 |0 | |10084 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29136 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29174 |0 | |10084 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29137 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29175 |0 | |10084 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29138 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29176 |0 | |10084 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29139 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29177 |0 | |10084 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29140 |NULL | | |0 | | | | |0 |1 |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29178 |0 | |10084 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29141 |NULL | | |0 | | | | |0 |1 |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29179 |0 | |10084 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29142 |NULL | | |0 | | | | |0 |1 |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29180 |0 | |10084 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29143 |NULL | | |0 | | | | |0 |1 |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29181 |0 | |10084 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29144 |NULL | | |0 | | | | |0 |1 |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29182 |0 | |10084 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29145 |NULL | | |0 | | | | |0 |1 |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29183 |0 | |10084 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |29146 |NULL | | |0 | | | | |0 |1 |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29184 |0 | |10084 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29147 |NULL | | |0 | | | | |0 |1 |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29185 |0 | |10084 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29148 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29186 |0 | |10084 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29149 |NULL | | |0 | | | | |0 |1 |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29187 |0 | |10084 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29150 |NULL | | |0 | | | | |0 |1 |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29188 |0 | |10084 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29189 |0 | |10084 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29152 |NULL | | |0 | | | | |0 |1 |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29190 |0 | |10084 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29153 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29191 |0 | |10084 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29154 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29192 |0 | |10084 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29155 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29193 |0 | |10084 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29156 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29194 |0 | |10084 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29157 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29195 |0 | |10084 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29158 |NULL | | |0 | | | | |0 |1 | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29196 |0 | |10084 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29159 |NULL | | |0 | | | | |0 |1 |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29197 |0 | |10084 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29160 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29199 |18 | |10001 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29198 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29136 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29200 |18 | |10084 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29199 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29204 |0 | |10001 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29201 |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29205 |18 | |10001 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29202 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29206 |0 | |10001 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29203 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29207 |0 | |10084 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29204 |NULL | | |0 | | | | |1 |1 |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29208 |18 | |10084 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29205 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29209 |0 | |10084 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29206 |NULL | | |0 | | | | |1 |1 |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29224 |0 | |10001 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29210 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29225 |0 | |10001 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29211 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29226 |0 | |10001 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29212 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29227 |0 | |10001 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29213 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29228 |15 | |10001 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29214 |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29229 |15 | |10001 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29215 |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29230 |0 | |10001 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29216 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29231 |0 | |10001 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29217 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29232 |0 | |10001 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29218 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29233 |0 | |10001 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29219 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29234 |0 | |10001 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29220 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29235 |0 | |10001 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29221 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29236 |0 | |10001 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29222 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29237 |0 | |10001 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29223 |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29238 |0 | |10084 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29224 |NULL | | |0 | | | | |2 |1 |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29239 |0 | |10084 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29225 |NULL | | |0 | | | | |2 |1 |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29240 |0 | |10084 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29226 |NULL | | |0 | | | | |2 |1 |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29241 |0 | |10084 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29227 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29242 |15 | |10084 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29228 |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29243 |15 | |10084 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29229 |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29244 |0 | |10084 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29230 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29245 |0 | |10084 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29231 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29246 |0 | |10084 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29232 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29247 |0 | |10084 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29233 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29248 |0 | |10084 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29234 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29249 |0 | |10084 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29235 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29250 |0 | |10084 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29236 |20 | | |0 | | | | |2 |1 |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29251 |0 | |10084 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29237 |78 | | |0 | | | | |2 |1 |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29258 |18 | |10001 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |29252 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29259 |18 | |10001 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |29253 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29260 |18 | |10001 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29254 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29261 |18 | |10001 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29255 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29262 |18 | |10001 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29256 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29263 |18 | |10001 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29257 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29264 |18 | |10084 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |29258 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29265 |18 | |10084 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |29259 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29266 |18 | |10084 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29260 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29267 |18 | |10084 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29261 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29268 |18 | |10084 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29262 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29269 |18 | |10084 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29263 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29310 |7 | |10284 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29273 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29311 |7 | |10284 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29274 |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29312 |7 | |10284 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29275 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29313 |7 | |10284 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29276 |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29314 |7 | |10284 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29277 |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29315 |7 | |10284 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29278 |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29316 |7 | |10284 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29279 |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29317 |7 | |10284 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29280 |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29318 |7 | |10284 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29281 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29319 |7 | |10284 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29282 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29320 |7 | |10284 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29283 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29321 |7 | |10284 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29284 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29322 |7 | |10284 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29285 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29323 |7 | |10284 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29286 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29324 |7 | |10284 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29287 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29325 |7 | |10284 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29288 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29326 |7 | |10284 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29289 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29327 |7 | |10284 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29290 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29328 |7 | |10284 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29291 |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29329 |7 | |10284 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29292 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29330 |7 | |10284 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29293 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29331 |7 | |10284 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29294 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29332 |7 | |10284 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |29295 |NULL | | |0 | | | | |0 |NULL |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29333 |7 | |10284 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29296 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29334 |7 | |10284 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29297 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29335 |0 | |10284 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29298 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29336 |7 | |10284 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29299 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29337 |7 | |10284 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29300 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29338 |7 | |10284 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29301 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29339 |7 | |10284 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29302 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29340 |7 | |10284 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29303 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29341 |7 | |10284 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29304 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29342 |7 | |10284 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29305 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29343 |7 | |10284 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29306 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29344 |7 | |10284 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29307 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29345 |7 | |10284 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29308 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29346 |7 | |10284 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29309 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29348 |18 | |10284 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29347 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29352 |7 | |10284 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29349 |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29353 |18 | |10284 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29350 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29354 |7 | |10284 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29351 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29369 |7 | |10284 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29355 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29370 |7 | |10284 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29356 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29371 |7 | |10284 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29357 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29372 |7 | |10284 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29358 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29373 |15 | |10284 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29359 |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29374 |15 | |10284 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29360 |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29375 |7 | |10284 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29361 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29376 |7 | |10284 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29362 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29377 |7 | |10284 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29363 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29378 |7 | |10284 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29364 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29379 |7 | |10284 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29365 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29380 |7 | |10284 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29366 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29381 |7 | |10284 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29367 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29382 |7 | |10284 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29368 |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29389 |18 | |10284 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |29383 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29390 |18 | |10284 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |29384 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29391 |18 | |10284 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29385 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29392 |18 | |10284 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29386 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29393 |18 | |10284 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29387 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29394 |18 | |10284 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29388 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29480 |0 | |10081 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29454 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29481 |0 | |10081 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29455 |NULL | | |0 | | | | |0 |NULL |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%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29482 |0 | |10081 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |29456 |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29483 |0 | |10081 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |29457 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29484 |0 | |10081 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |29458 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29485 |0 | |10081 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29459 |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29486 |0 | |10081 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29460 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29487 |0 | |10081 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29461 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29488 |15 | |10081 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29462 |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29489 |0 | |10081 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29463 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29490 |0 | |10081 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29464 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29491 |0 | |10081 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29465 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29492 |0 | |10081 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29466 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29493 |0 | |10081 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29467 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29494 |0 | |10081 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |29468 |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29495 |0 | |10081 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |29469 |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29496 |0 | |10081 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |29470 |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29497 |0 | |10081 |Physical disks WMI get |wmi.getall[root\cimv2,"select * from win32_perfformatteddata_perfdisk_physicaldisk"] |1m |1h |0 |0 |4 | | | | |29471 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_perfformatteddata_perfdisk_physicaldisk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29498 |0 | |10081 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29472 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29499 |0 | |10081 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29473 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29500 |0 | |10081 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29474 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29501 |0 | |10081 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29502 |0 | |10081 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29476 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29503 |0 | |10081 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29477 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29504 |0 | |10081 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29478 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29505 |0 | |10081 |Network interfaces WMI get |wmi.getall[root\cimv2,"select * from win32_networkadapter where PhysicalAdapter=True"] |1m |1h |0 |0 |4 | | | | |29479 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29509 |0 | |10081 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29506 |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29510 |18 | |10081 |Physical disks discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29507 |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29511 |18 | |10081 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |29508 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |29505 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29521 |0 | |10081 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29512 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29522 |0 | |10081 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29513 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29523 |0 | |10081 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29514 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29524 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29515 |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29525 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29516 |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29526 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29517 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29527 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29518 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29528 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29519 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29529 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29520 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29537 |18 | |10081 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[DiskReadsPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!r/s | | |29530 |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29538 |18 | |10081 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[DiskWritesPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!w/s | | |29531 |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29539 |18 | |10081 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[CurrentDiskQueueLength.{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29532 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29540 |18 | |10081 |{#DEVNAME}: Disk utilization |vfs.dev.util[PercentDiskTime.{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29533 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29541 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |29534 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |29505 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29542 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |29535 |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |29505 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29543 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |29536 |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |29505 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29548 |5 | |10001 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29549 |5 | |10074 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29550 |5 | |10075 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29551 |5 | |10076 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29552 |5 | |10077 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29553 |5 | |10078 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29554 |5 | |10079 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29555 |5 | |10081 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29557 |5 | |10084 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29548 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29558 |7 | |10299 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29559 |7 | |10299 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29560 |7 | |10299 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29587 |7 | |10299 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29561 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29588 |7 | |10299 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29562 |NULL | | |0 | | | | |0 |NULL |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%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29589 |7 | |10299 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |29563 |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29590 |7 | |10299 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |29564 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29591 |7 | |10299 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |29565 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29592 |7 | |10299 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29566 |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29593 |7 | |10299 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29567 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29594 |7 | |10299 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29568 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29595 |15 | |10299 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29569 |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29596 |7 | |10299 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29570 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29597 |7 | |10299 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29571 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29598 |7 | |10299 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29572 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29599 |7 | |10299 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29573 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29600 |7 | |10299 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29574 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29601 |7 | |10299 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |29575 |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29602 |7 | |10299 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |29576 |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29603 |7 | |10299 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |29577 |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29604 |7 | |10299 |Physical disks WMI get |wmi.getall[root\cimv2,"select * from win32_perfformatteddata_perfdisk_physicaldisk"] |1m |1h |0 |0 |4 | | | | |29578 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_perfformatteddata_perfdisk_physicaldisk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29605 |7 | |10299 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29579 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29606 |0 | |10299 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29580 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29607 |7 | |10299 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29581 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29608 |7 | |10299 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29582 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29609 |7 | |10299 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29583 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29610 |7 | |10299 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29584 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29611 |7 | |10299 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29585 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29612 |7 | |10299 |Network interfaces WMI get |wmi.getall[root\cimv2,"select * from win32_networkadapter where PhysicalAdapter=True"] |1m |1h |0 |0 |4 | | | | |29586 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29616 |7 | |10299 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29613 |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29617 |18 | |10299 |Physical disks discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29614 |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29618 |18 | |10299 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |29615 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |29612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29628 |7 | |10299 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29619 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29629 |7 | |10299 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29620 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29630 |7 | |10299 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29621 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29631 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29622 |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29632 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29623 |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29633 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29624 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29634 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29625 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29635 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29626 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29636 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29627 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29644 |18 | |10299 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[DiskReadsPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!r/s | | |29637 |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29645 |18 | |10299 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[DiskWritesPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!w/s | | |29638 |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29646 |18 | |10299 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[CurrentDiskQueueLength.{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29639 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29647 |18 | |10299 |{#DEVNAME}: Disk utilization |vfs.dev.util[PercentDiskTime.{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29640 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29648 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |29641 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |29612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29649 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |29642 |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |29612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29650 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |29643 |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |29612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29823 |5 | |10084 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |29822 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29829 |20 |1.3.6.1.2.1.1.3.0 |10225 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29824 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29830 |20 |1.3.6.1.2.1.1.6.0 |10225 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29825 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29831 |20 |1.3.6.1.2.1.1.4.0 |10225 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29826 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29832 |20 |1.3.6.1.2.1.1.2.0 |10225 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29827 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29833 |20 |1.3.6.1.2.1.1.1.0 |10225 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29828 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29834 |20 |1.3.6.1.2.1.1.3.0 |10237 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29824 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29825 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29826 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29837 |20 |1.3.6.1.2.1.1.2.0 |10237 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29827 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29828 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29839 |20 |1.3.6.1.2.1.1.3.0 |10257 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29824 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29840 |20 |1.3.6.1.2.1.1.6.0 |10257 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29825 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29841 |20 |1.3.6.1.2.1.1.4.0 |10257 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29826 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29842 |20 |1.3.6.1.2.1.1.2.0 |10257 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29827 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29843 |20 |1.3.6.1.2.1.1.1.0 |10257 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29828 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29849 |20 |1.3.6.1.2.1.1.3.0 |10207 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29852 |20 |1.3.6.1.2.1.1.2.0 |10207 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29854 |20 |1.3.6.1.2.1.1.3.0 |10208 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29857 |20 |1.3.6.1.2.1.1.2.0 |10208 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29859 |20 |1.3.6.1.2.1.1.3.0 |10210 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29862 |20 |1.3.6.1.2.1.1.2.0 |10210 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29864 |20 |1.3.6.1.2.1.1.3.0 |10211 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29867 |20 |1.3.6.1.2.1.1.2.0 |10211 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29869 |20 |1.3.6.1.2.1.1.3.0 |10218 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29872 |20 |1.3.6.1.2.1.1.2.0 |10218 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29874 |20 |1.3.6.1.2.1.1.3.0 |10220 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29877 |20 |1.3.6.1.2.1.1.2.0 |10220 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29879 |20 |1.3.6.1.2.1.1.3.0 |10221 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29882 |20 |1.3.6.1.2.1.1.2.0 |10221 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29884 |20 |1.3.6.1.2.1.1.3.0 |10222 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29887 |20 |1.3.6.1.2.1.1.2.0 |10222 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29889 |20 |1.3.6.1.2.1.1.3.0 |10223 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29892 |20 |1.3.6.1.2.1.1.2.0 |10223 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29894 |20 |1.3.6.1.2.1.1.3.0 |10224 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29897 |20 |1.3.6.1.2.1.1.2.0 |10224 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29899 |20 |1.3.6.1.2.1.1.3.0 |10226 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29902 |20 |1.3.6.1.2.1.1.2.0 |10226 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29904 |20 |1.3.6.1.2.1.1.3.0 |10227 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29907 |20 |1.3.6.1.2.1.1.2.0 |10227 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29909 |20 |1.3.6.1.2.1.1.3.0 |10229 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29912 |20 |1.3.6.1.2.1.1.2.0 |10229 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29914 |20 |1.3.6.1.2.1.1.3.0 |10230 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29917 |20 |1.3.6.1.2.1.1.2.0 |10230 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29919 |20 |1.3.6.1.2.1.1.3.0 |10231 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29922 |20 |1.3.6.1.2.1.1.2.0 |10231 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29924 |20 |1.3.6.1.2.1.1.3.0 |10233 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29927 |20 |1.3.6.1.2.1.1.2.0 |10233 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29929 |20 |1.3.6.1.2.1.1.3.0 |10234 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29932 |20 |1.3.6.1.2.1.1.2.0 |10234 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29934 |20 |1.3.6.1.2.1.1.3.0 |10235 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29937 |20 |1.3.6.1.2.1.1.2.0 |10235 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29939 |20 |1.3.6.1.2.1.1.3.0 |10236 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29942 |20 |1.3.6.1.2.1.1.2.0 |10236 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29944 |20 |1.3.6.1.2.1.1.3.0 |10250 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29947 |20 |1.3.6.1.2.1.1.2.0 |10250 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29949 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29950 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29951 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29952 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29953 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29954 |20 |1.3.6.1.2.1.1.3.0 |10253 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29957 |20 |1.3.6.1.2.1.1.2.0 |10253 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29959 |20 |1.3.6.1.2.1.1.3.0 |10254 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29962 |20 |1.3.6.1.2.1.1.2.0 |10254 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29964 |20 |1.3.6.1.2.1.1.3.0 |10255 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29967 |20 |1.3.6.1.2.1.1.2.0 |10255 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29969 |20 |1.3.6.1.2.1.1.3.0 |10256 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29972 |20 |1.3.6.1.2.1.1.2.0 |10256 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29974 |20 |1.3.6.1.2.1.1.3.0 |10258 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29977 |20 |1.3.6.1.2.1.1.2.0 |10258 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29979 |20 |1.3.6.1.2.1.1.3.0 |10259 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29982 |20 |1.3.6.1.2.1.1.2.0 |10259 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29984 |20 |1.3.6.1.2.1.1.3.0 |10248 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29987 |20 |1.3.6.1.2.1.1.2.0 |10248 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29989 |20 |1.3.6.1.2.1.1.3.0 |10249 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29992 |20 |1.3.6.1.2.1.1.2.0 |10249 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29995 |7 | |10284 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29996 |7 | |10284 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |29997 |7 | |10284 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30046 |3 | |10304 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30047 |3 | |10304 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30048 |3 | |10304 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30054 |20 |1.3.6.1.2.1.1.2.0 |10304 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30055 |20 |1.3.6.1.2.1.1.3.0 |10304 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30095 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10210 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30096 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10211 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30098 |20 |1.3.6.1.2.1.1.1.0 |10218 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30099 |20 |1.3.6.1.2.1.1.1.0 |10220 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30100 |20 |1.3.6.1.2.1.1.1.0 |10253 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30102 |15 | |10218 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30103 |15 | |10220 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30104 |15 | |10253 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30138 |0 | |10081 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30137 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30140 |7 | |10299 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30139 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30143 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10185 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30142 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30144 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30145 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10249 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30146 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10254 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30149 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30147 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30150 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30148 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30151 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30152 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30153 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30154 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30155 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30156 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30163 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30157 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30164 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30158 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30165 |15 | |10185 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30159 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30166 |15 | |10185 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30160 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30167 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30161 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30168 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30162 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30169 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30170 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30171 |15 | |10251 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30172 |15 | |10251 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30173 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30174 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30175 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30176 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30177 |15 | |10249 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30178 |15 | |10249 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30179 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30180 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30181 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30182 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30183 |15 | |10254 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30184 |15 | |10254 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30185 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30186 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30406 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10184 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30405 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30409 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10184 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30407 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30410 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10184 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30408 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30417 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10184 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30411 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30418 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10184 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30412 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30419 |15 | |10184 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30413 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30420 |15 | |10184 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30414 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30421 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10184 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30415 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30422 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10184 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30416 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30424 |0 | |10081 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30423 |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30426 |0 | |10081 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30425 |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30428 |7 | |10299 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30427 |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
-ROW |30430 |7 | |10299 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30429 |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |
+FIELDS|itemid|type|snmp_oid |hostid|name |key_ |delay |history|trends|status|value_type|trapper_hosts|units |formula|logtimefmt |templateid|valuemapid|params |ipmi_sensor |authtype|username |password |publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint |master_itemid|timeout|url |query_fields |posts|status_codes|follow_redirects|post_type|headers |retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
+ROW |10061 |5 | |10047 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10062 |5 | |10047 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10063 |5 | |10047 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10064 |5 | |10047 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10065 |5 | |10047 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10066 |5 | |10047 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10067 |5 | |10048 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10068 |5 | |10048 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10069 |5 | |10048 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10070 |5 | |10048 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10071 |5 | |10048 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10072 |5 | |10048 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |22183 |5 | |10047 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22185 |5 | |10047 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22187 |5 | |10047 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22189 |5 | |10047 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22191 |5 | |10047 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22196 |5 | |10047 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22199 |5 | |10047 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22219 |5 | |10047 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22231 |0 | |10050 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22232 |0 | |10050 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22396 |5 | |10047 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22399 |5 | |10047 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22400 |5 | |10047 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22401 |5 | |10047 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22402 |5 | |10047 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22404 |5 | |10047 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22406 |5 | |10047 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22408 |5 | |10047 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22412 |5 | |10047 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22414 |5 | |10047 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22416 |5 | |10047 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22418 |5 | |10047 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22420 |5 | |10047 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22422 |5 | |10047 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22424 |5 | |10047 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22426 |5 | |10047 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22430 |5 | |10047 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22689 |5 | |10047 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22835 |0 | |10074 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22836 |0 | |10074 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22837 |0 | |10074 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22838 |0 | |10074 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22839 |0 | |10074 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22840 |0 | |10074 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22841 |0 | |10074 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22842 |0 | |10074 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22843 |0 | |10074 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22844 |0 | |10074 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22845 |0 | |10074 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22846 |0 | |10074 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22848 |0 | |10074 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22851 |0 | |10074 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22852 |0 | |10074 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22853 |0 | |10074 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22854 |0 | |10074 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22855 |0 | |10074 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22856 |0 | |10074 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22857 |0 | |10074 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22858 |0 | |10074 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22859 |0 | |10074 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22860 |0 | |10074 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22861 |0 | |10074 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22862 |0 | |10074 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22863 |0 | |10074 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22867 |0 | |10074 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22868 |0 | |10074 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22869 |0 | |10074 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22870 |0 | |10074 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22871 |0 | |10074 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22872 |0 | |10074 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22875 |0 | |10075 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22876 |0 | |10075 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22877 |0 | |10075 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22878 |0 | |10075 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22879 |0 | |10075 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22880 |0 | |10075 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22881 |0 | |10075 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22882 |0 | |10075 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22883 |0 | |10075 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22884 |0 | |10075 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22885 |0 | |10075 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22886 |0 | |10075 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22888 |0 | |10075 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22891 |0 | |10075 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22892 |0 | |10075 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22893 |0 | |10075 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22894 |0 | |10075 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22895 |0 | |10075 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22896 |0 | |10075 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22897 |0 | |10075 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22898 |0 | |10075 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22899 |0 | |10075 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22900 |0 | |10075 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22901 |0 | |10075 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22902 |0 | |10075 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22903 |0 | |10075 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22907 |0 | |10075 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22908 |0 | |10075 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22909 |0 | |10075 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22910 |0 | |10075 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22911 |0 | |10075 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22912 |0 | |10075 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22917 |0 | |10076 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22918 |0 | |10076 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22920 |0 | |10076 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22921 |0 | |10076 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22922 |0 | |10076 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22923 |0 | |10076 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22924 |0 | |10076 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22933 |0 | |10076 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22934 |0 | |10076 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22938 |0 | |10076 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22939 |0 | |10076 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22940 |0 | |10076 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22941 |0 | |10076 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22942 |0 | |10076 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22943 |0 | |10076 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22944 |0 | |10076 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22945 |0 | |10076 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22946 |0 | |10076 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22947 |0 | |10076 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22948 |0 | |10076 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22949 |0 | |10076 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22950 |0 | |10076 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22951 |0 | |10076 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22952 |0 | |10076 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22961 |0 | |10077 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22962 |0 | |10077 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22963 |0 | |10077 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22965 |0 | |10077 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22968 |0 | |10077 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22971 |0 | |10077 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22972 |0 | |10077 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22973 |0 | |10077 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22974 |0 | |10077 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22978 |0 | |10077 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22980 |0 | |10077 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22981 |0 | |10077 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22982 |0 | |10077 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22983 |0 | |10077 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22984 |0 | |10077 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22985 |0 | |10077 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22986 |0 | |10077 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22987 |0 | |10077 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22988 |0 | |10077 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22989 |0 | |10077 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22990 |0 | |10077 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22991 |0 | |10077 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22992 |0 | |10077 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22996 |0 | |10078 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22997 |0 | |10078 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22998 |0 | |10078 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22999 |0 | |10078 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23000 |0 | |10078 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23001 |0 | |10078 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23002 |0 | |10078 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23003 |0 | |10078 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23004 |0 | |10078 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23005 |0 | |10078 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23007 |0 | |10078 |CPU iowait time |system.cpu.util[,iowait] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23011 |0 | |10078 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23012 |0 | |10078 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23013 |0 | |10078 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23014 |0 | |10078 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23015 |0 | |10078 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23016 |0 | |10078 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23017 |0 | |10078 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23018 |0 | |10078 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23019 |0 | |10078 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23020 |0 | |10078 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23021 |0 | |10078 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23022 |0 | |10078 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23023 |0 | |10078 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23024 |0 | |10078 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23025 |0 | |10078 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23026 |0 | |10078 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23027 |0 | |10078 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23028 |0 | |10078 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23029 |0 | |10078 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23030 |0 | |10078 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23031 |0 | |10078 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23032 |0 | |10078 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23035 |0 | |10079 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23036 |0 | |10079 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23039 |0 | |10079 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23041 |0 | |10079 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23042 |0 | |10079 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23043 |0 | |10079 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23053 |0 | |10079 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23054 |0 | |10079 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23058 |0 | |10079 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23059 |0 | |10079 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23060 |0 | |10079 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23061 |0 | |10079 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23062 |0 | |10079 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23063 |0 | |10079 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23067 |0 | |10079 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23068 |0 | |10079 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23069 |0 | |10079 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23070 |0 | |10079 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23071 |0 | |10079 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23072 |0 | |10079 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23073 |0 | |10075 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23074 |0 | |10075 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23075 |0 | |10074 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23076 |0 | |10074 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23077 |0 | |10079 |Incoming network traffic on en0 |net.if.in[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23078 |0 | |10079 |Outgoing network traffic on en0 |net.if.out[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23108 |0 | |10076 |CPU available physical processors in the shared pool |system.stat[cpu,app] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23109 |0 | |10076 |CPU entitled capacity consumed |system.stat[cpu,ec] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23110 |0 | |10076 |CPU idle time |system.stat[cpu,id] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23111 |0 | |10076 |CPU logical processor utilization |system.stat[cpu,lbusy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23112 |0 | |10076 |CPU number of physical processors consumed |system.stat[cpu,pc] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23113 |0 | |10076 |CPU system time |system.stat[cpu,sy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23114 |0 | |10076 |CPU user time |system.stat[cpu,us] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23115 |0 | |10076 |CPU iowait time |system.stat[cpu,wa] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23116 |0 | |10076 |Amount of data transferred |system.stat[disk,bps] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23117 |0 | |10076 |Number of transfers |system.stat[disk,tps] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23118 |0 | |10076 |Processor units is entitled to receive |system.stat[ent] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23119 |0 | |10076 |Kernel thread context switches |system.stat[faults,cs] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23120 |0 | |10076 |Device interrupts |system.stat[faults,in] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23121 |0 | |10076 |System calls |system.stat[faults,sy] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23122 |0 | |10076 |Length of the swap queue |system.stat[kthr,b] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23123 |0 | |10076 |Length of the run queue |system.stat[kthr,r] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23124 |0 | |10076 |Active virtual pages |system.stat[memory,avm] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23125 |0 | |10076 |Free real memory |system.stat[memory,fre] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23126 |0 | |10076 |File page-ins per second |system.stat[page,fi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23127 |0 | |10076 |File page-outs per second |system.stat[page,fo] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23128 |0 | |10076 |Pages freed (page replacement) |system.stat[page,fr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23129 |0 | |10076 |Pages paged in from paging space |system.stat[page,pi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23130 |0 | |10076 |Pages paged out to paging space |system.stat[page,po] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23131 |0 | |10076 |Pages scanned by page-replacement algorithm |system.stat[page,sr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23171 |5 | |10047 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23251 |5 | |10047 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23318 |0 | |10050 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23329 |0 | |10074 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23340 |5 | |10048 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23341 |5 | |10048 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23342 |5 | |10048 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23343 |5 | |10048 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23344 |5 | |10048 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23345 |5 | |10048 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23346 |5 | |10048 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23347 |5 | |10048 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23348 |5 | |10048 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23349 |5 | |10048 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23350 |5 | |10048 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23351 |5 | |10048 |Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23352 |5 | |10048 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23353 |5 | |10048 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23354 |5 | |10048 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23355 |5 | |10048 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23356 |5 | |10048 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23357 |5 | |10048 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23358 |5 | |10048 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23359 |5 | |10048 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23360 |5 | |10048 |Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23540 |0 | |10075 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23634 |5 | |10047 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23644 |3 | |10093 |FTP service is running |net.tcp.service[ftp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23645 |3 | |10094 |HTTP service is running |net.tcp.service[http] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23646 |3 | |10095 |HTTPS service is running |net.tcp.service[https] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23647 |3 | |10096 |IMAP service is running |net.tcp.service[imap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23648 |3 | |10097 |LDAP service is running |net.tcp.service[ldap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23649 |3 | |10098 |NNTP service is running |net.tcp.service[nntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23650 |3 | |10099 |NTP service is running |net.udp.service[ntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23651 |3 | |10100 |POP service is running |net.tcp.service[pop] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23652 |3 | |10101 |SMTP service is running |net.tcp.service[smtp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23653 |3 | |10102 |SSH service is running |net.tcp.service[ssh] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23654 |3 | |10103 |Telnet service is running |net.tcp.service[telnet] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23661 |5 | |10047 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23663 |5 | |10047 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25366 |5 | |10047 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25368 |5 | |10048 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |25369 |5 | |10048 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |25370 |5 | |10047 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25665 |5 | |10047 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25666 |5 | |10047 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26856 |16 | |10169 |mp PS Old Gen max |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26857 |16 | |10169 |mp PS Old Gen committed |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26858 |16 | |10169 |mp PS Old Gen used |jmx["java.lang:type=MemoryPool,name=PS Old Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26859 |16 | |10169 |mp PS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26860 |16 | |10169 |mp PS Perm Gen max |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26861 |16 | |10169 |mp Perm Gen used |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26862 |16 | |10169 |mp Perm Gen max |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26863 |16 | |10169 |mp Code Cache committed |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26864 |16 | |10169 |mp CMS Perm Gen used |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26865 |16 | |10169 |mp Code Cache max |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26866 |16 | |10169 |mp Code Cache used |jmx["java.lang:type=MemoryPool,name=Code Cache",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26867 |16 | |10169 |mp Perm Gen committed |jmx["java.lang:type=MemoryPool,name=Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26868 |16 | |10169 |mp PS Perm Gen used |jmx["java.lang:type=MemoryPool,name=PS Perm Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26869 |16 | |10169 |mp Tenured Gen committed |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26870 |16 | |10169 |th Daemon Thread Count |jmx["java.lang:type=Threading",DaemonThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26871 |16 | |10169 |jvm Version |jmx["java.lang:type=Runtime",VmVersion] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26872 |16 | |10169 |th Peak Thread Count |jmx["java.lang:type=Threading",PeakThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26873 |16 | |10169 |th Thread Count |jmx["java.lang:type=Threading",ThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26874 |16 | |10169 |th Total Started Thread Count |jmx["java.lang:type=Threading",TotalStartedThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26875 |16 | |10169 |jvm Name |jmx["java.lang:type=Runtime",VmName] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26876 |16 | |10169 |jvm Uptime |jmx["java.lang:type=Runtime",Uptime] |1m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26877 |16 | |10169 |mp Tenured Gen used |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26878 |16 | |10169 |mp Tenured Gen max |jmx["java.lang:type=MemoryPool,name=Tenured Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26879 |16 | |10169 |os Max File Descriptor Count |jmx["java.lang:type=OperatingSystem",MaxFileDescriptorCount] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26880 |16 | |10169 |os Open File Descriptor Count |jmx["java.lang:type=OperatingSystem",OpenFileDescriptorCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26881 |16 | |10169 |os Process CPU Load |jmx["java.lang:type=OperatingSystem",ProcessCpuLoad] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26882 |16 | |10169 |mp CMS Perm Gen max |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26883 |16 | |10169 |mp CMS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26884 |16 | |10169 |gc MarkSweepCompact number of collections per second |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26885 |16 | |10169 |gc Copy accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=Copy",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26886 |16 | |10169 |gc MarkSweepCompact accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26887 |16 | |10169 |gc ParNew number of collections per second |jmx["java.lang:type=GarbageCollector,name=ParNew",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26888 |16 | |10169 |gc ParNew accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ParNew",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26889 |16 | |10169 |gc Copy number of collections per second |jmx["java.lang:type=GarbageCollector,name=Copy",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26890 |16 | |10169 |gc ConcurrentMarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26891 |16 | |10169 |cl Unloaded Class Count |jmx["java.lang:type=ClassLoading",UnloadedClassCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26892 |16 | |10169 |cl Total Loaded Class Count |jmx["java.lang:type=ClassLoading",TotalLoadedClassCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26893 |16 | |10169 |comp Name of the current JIT compiler |jmx["java.lang:type=Compilation",Name] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26894 |16 | |10169 |comp Accumulated time spent in compilation |jmx["java.lang:type=Compilation",TotalCompilationTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26895 |16 | |10169 |gc ConcurrentMarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26896 |16 | |10169 |gc PS MarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26897 |16 | |10169 |gc PS MarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26898 |16 | |10169 |mem Object Pending Finalization Count |jmx["java.lang:type=Memory",ObjectPendingFinalizationCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26899 |16 | |10169 |mem Non-Heap Memory used |jmx["java.lang:type=Memory",NonHeapMemoryUsage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26900 |16 | |10169 |mp CMS Old Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26901 |16 | |10169 |mp CMS Old Gen max |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26902 |16 | |10169 |mp CMS Old Gen used |jmx["java.lang:type=MemoryPool,name=CMS Old Gen",Usage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26903 |16 | |10169 |mem Non-Heap Memory max |jmx["java.lang:type=Memory",NonHeapMemoryUsage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26904 |16 | |10169 |mem Non-Heap Memory committed |jmx["java.lang:type=Memory",NonHeapMemoryUsage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26905 |16 | |10169 |gc PS Scavenge accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS Scavenge",CollectionTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26906 |16 | |10169 |gc PS Scavenge number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS Scavenge",CollectionCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26907 |16 | |10169 |mem Heap Memory committed |jmx["java.lang:type=Memory",HeapMemoryUsage.committed] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26908 |16 | |10169 |mem Heap Memory max |jmx["java.lang:type=Memory",HeapMemoryUsage.max] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26909 |16 | |10169 |mem Heap Memory used |jmx["java.lang:type=Memory",HeapMemoryUsage.used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26910 |16 | |10169 |cl Loaded Class Count |jmx["java.lang:type=ClassLoading",LoadedClassCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26925 |12 | |10171 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26926 |12 | |10171 |Processor Vcc |processor_vcc |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |Processor Vcc |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26927 |12 | |10171 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26928 |12 | |10171 |BB Ambient Temp |bb_ambient_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |BB Ambient Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26929 |12 | |10171 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26930 |12 | |10171 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26931 |12 | |10171 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26932 |12 | |10171 |BB +1.8V SM |bb_1.8v_sm |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.8V SM |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26933 |12 | |10172 |Front Panel Temp |front_panel_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Front Panel Temp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26934 |12 | |10172 |Power |power |1m |1w |365d |0 |3 | | | | |NULL |NULL | |power |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26935 |12 | |10172 |System Fan 2 |system_fan_2 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 2 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26936 |12 | |10172 |System Fan 3 |system_fan_3 |1m |1w |365d |0 |0 | |RPM | | |NULL |NULL | |System Fan 3 |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26937 |12 | |10172 |BB +5.0V |bb_5.0v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +5.0V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26938 |12 | |10172 |BB +3.3V STBY |bb_3.3v_stby |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V STBY |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26939 |12 | |10172 |BB +1.05V PCH |bb_1.05v_pch |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.05V PCH |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26940 |12 | |10172 |BB +1.1V P1 Vccp |bb_1.1v_p1_vccp |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.1V P1 Vccp|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26941 |12 | |10172 |BB +1.5V P1 DDR3 |bb_1.5v_p1_ddr3 |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +1.5V P1 DDR3|0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26942 |12 | |10172 |BB +3.3V |bb_3.3v |1m |1w |365d |0 |0 | |V | | |NULL |NULL | |BB +3.3V |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26943 |12 | |10172 |Baseboard Temp |baseboard_temp |1m |1w |365d |0 |0 | |C | | |NULL |NULL | |Baseboard Temp |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26944 |3 | |10173 |Version |vmware.version[{$URL}] |1h |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26945 |3 | |10173 |Full name |vmware.fullname[{$URL}] |1h |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26946 |3 | |10173 |Event log |vmware.eventlog[{$URL},skip] |1m |90d |0 |0 |2 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26947 |3 | |10174 |Memory size |vmware.vm.memory.size[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Total size of configured memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26948 |3 | |10174 |Host memory usage |vmware.vm.memory.size.usage.host[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of host physical memory allocated to the VM, accounting for saving from memory sharing with other VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26949 |3 | |10174 |Guest memory usage |vmware.vm.memory.size.usage.guest[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory that is being used by the VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26950 |3 | |10174 |Power state |vmware.vm.powerstate[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |12 | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The current power state of the virtual machine. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26951 |3 | |10174 |Committed storage space |vmware.vm.storage.committed[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Total storage space, in bytes, committed to this virtual machine across all datastores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26952 |3 | |10174 |Uptime |vmware.vm.uptime[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26953 |3 | |10174 |Unshared storage space |vmware.vm.storage.unshared[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Total storage space, in bytes, occupied by the virtual machine across all datastores, that is not shared with any other virtual machine. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26954 |3 | |10174 |Uncommitted storage space |vmware.vm.storage.uncommitted[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Additional storage space, in bytes, potentially used by this virtual machine on all datastores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26955 |3 | |10174 |Swapped memory |vmware.vm.memory.size.swapped[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory swapped out to the VM's swap device by ESX. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26956 |3 | |10174 |Shared memory |vmware.vm.memory.size.shared[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory shared through transparent page sharing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26957 |3 | |10174 |CPU usage |vmware.vm.cpu.usage[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Current upper-bound on CPU usage. The upper-bound is based on the host the virtual machine is current running on, as well as limits configured on the virtual machine itself or any parent resource pool. Valid while the virtual machine is running. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26958 |3 | |10174 |CPU ready |vmware.vm.cpu.ready[{$URL},{HOST.HOST}] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Time that the virtual machine was ready, but could not get scheduled to run on the physical CPU during last measurement interval (VMware vCenter/ESXi Server performance counter sampling interval - 20 seconds) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26959 |3 | |10174 |Number of virtual CPUs |vmware.vm.cpu.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of virtual CPUs assigned to the guest. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26960 |3 | |10174 |Datacenter name |vmware.vm.datacenter.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Datacenter name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26961 |3 | |10174 |Hypervisor name |vmware.vm.hv.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Hypervisor name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26962 |3 | |10174 |Private memory |vmware.vm.memory.size.private[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Amount of memory backed by host memory and not being shared. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26963 |3 | |10174 |Compressed memory |vmware.vm.memory.size.compressed[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of memory currently in the compression cache for this VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26964 |3 | |10174 |Ballooned memory |vmware.vm.memory.size.ballooned[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26965 |3 | |10174 |Cluster name |vmware.vm.cluster.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Cluster name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26966 |3 | |10175 |Number of bytes transmitted |vmware.hv.network.out[{$URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26967 |3 | |10175 |Number of bytes received |vmware.hv.network.in[{$URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26968 |3 | |10175 |Used memory |vmware.hv.memory.used[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Physical memory usage on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26969 |3 | |10175 |Ballooned memory |vmware.hv.memory.size.ballooned[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26970 |3 | |10175 |Health state rollup |vmware.hv.sensor.health.state[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The host health state rollup sensor value: gray - unknown, ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26971 |3 | |10175 |Overall status |vmware.hv.status[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The overall alarm status of the host: gray - unknown, ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26972 |3 | |10175 |Number of guest VMs |vmware.hv.vm.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26973 |3 | |10175 |Version |vmware.hv.version[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Dot-separated version string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26974 |3 | |10175 |Uptime |vmware.hv.uptime[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26975 |3 | |10175 |Vendor |vmware.hv.hw.vendor[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The hardware vendor identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26976 |3 | |10175 |Bios UUID |vmware.hv.hw.uuid[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The hardware BIOS identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26977 |3 | |10175 |CPU frequency |vmware.hv.hw.cpu.freq[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The speed of the CPU cores. This is an average value if there are multiple speeds. The product of CPU frequency and number of cores is approximately equal to the sum of the MHz for all the individual cores on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26978 |3 | |10175 |Full name |vmware.hv.fullname[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The complete product name, including the version information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26979 |3 | |10175 |Datacenter name |vmware.hv.datacenter.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Datacenter name of the hypervisor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26980 |3 | |10175 |CPU usage |vmware.hv.cpu.usage[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Aggregated CPU usage across all cores on the host in Hz. This is only available if the host is connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26981 |3 | |10175 |CPU model |vmware.hv.hw.cpu.model[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The CPU model. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26982 |3 | |10175 |CPU cores |vmware.hv.hw.cpu.num[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of physical CPU cores on the host. Physical CPU cores are the processors contained by a CPU package. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26983 |3 | |10175 |Model |vmware.hv.hw.model[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The system model identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26984 |3 | |10175 |Total memory |vmware.hv.hw.memory[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |The physical memory size. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26985 |3 | |10175 |CPU threads |vmware.hv.hw.cpu.threads[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Number of physical CPU threads on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26986 |3 | |10175 |Cluster name |vmware.hv.cluster.name[{$URL},{HOST.HOST}] |{$VMWARE_INTERVAL:conf} |90d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |0 |NULL |Cluster name of the guest VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26987 |3 | |10173 |Discover VMware clusters |vmware.cluster.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of clusters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26988 |3 | |10173 |Discover VMware hypervisors |vmware.hv.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of hypervisors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26989 |3 | |10173 |Discover VMware VMs |vmware.vm.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26990 |3 | |10174 |Network device discovery |vmware.vm.net.if.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of all network devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26991 |3 | |10174 |Disk device discovery |vmware.vm.vfs.dev.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of all disk devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26992 |3 | |10174 |Mounted filesystem discovery |vmware.vm.vfs.fs.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL |Discovery of all guest file systems. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26993 |3 | |10175 |Datastore discovery |vmware.hv.datastore.discovery[{$URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26994 |3 | |10173 |Status of "{#CLUSTER.NAME}" cluster |vmware.cluster.status[{$URL},{#CLUSTER.NAME}] |1m |90d |365d |0 |3 | | | | |NULL |13 | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26995 |3 | |10174 |Number of packets transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$URL},{HOST.HOST},{#IFNAME},pps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26996 |3 | |10174 |Number of bytes transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$URL},{HOST.HOST},{#IFNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26997 |3 | |10174 |Number of packets received on interface {#IFDESC} |vmware.vm.net.if.in[{$URL},{HOST.HOST},{#IFNAME},pps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26998 |3 | |10174 |Number of bytes received on interface {#IFDESC} |vmware.vm.net.if.in[{$URL},{HOST.HOST},{#IFNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |26999 |3 | |10174 |Average number of writes to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$URL},{HOST.HOST},{#DISKNAME},ops] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27000 |3 | |10174 |Average number of bytes written to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$URL},{HOST.HOST},{#DISKNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27001 |3 | |10174 |Average number of reads from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$URL},{HOST.HOST},{#DISKNAME},ops] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27002 |3 | |10174 |Average number of bytes read from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$URL},{HOST.HOST},{#DISKNAME},bps] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27003 |3 | |10174 |Used disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},used] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27004 |3 | |10174 |Total disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},total] |{$VMWARE_INTERVAL:conf} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27005 |3 | |10174 |Free disk space on {#FSNAME} (percentage) |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},pfree] |{$VMWARE_INTERVAL} |90d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27006 |3 | |10174 |Free disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},{#FSNAME},free] |{$VMWARE_INTERVAL} |90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27007 |3 | |10175 |Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27008 |3 | |10175 |Total size of datastore {#DATASTORE} |vmware.hv.datastore.size[{$URL},{HOST.HOST},{#DATASTORE}] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27009 |3 | |10175 |Free space on datastore {#DATASTORE} (percentage) |vmware.hv.datastore.size[{$URL},{HOST.HOST},{#DATASTORE},pfree] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27010 |3 | |10175 |Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27029 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10182 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27030 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10182 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27031 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10183 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27032 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10183 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27065 |3 | |10186 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27066 |3 | |10186 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27067 |3 | |10186 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27068 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10187 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27069 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27070 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27071 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27072 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27073 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27074 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27075 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27076 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27077 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10187 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27078 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10188 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27079 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27080 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27081 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27082 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27083 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27084 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27085 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27086 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27087 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10188 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27088 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10189 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27089 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27090 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27091 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27092 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27093 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27094 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27095 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27096 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27097 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10189 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27098 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10190 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27099 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27100 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27101 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27102 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27103 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27104 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27105 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27106 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27107 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10190 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10192 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27120 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |NULL |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27121 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27141 |20 |1.3.6.1.2.1.1.5.0 |10203 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27143 |5 | |10203 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27146 |17 | |10203 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27209 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17] |10207 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27210 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2] |10207 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27211 |20 |discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5] |10207 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27212 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX} |10207 |{#SNMPVALUE}: Temperature |sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The current temperature reading in degrees celsius from this hardware component's temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27213 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Fan status |sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;Current status of the Fan tray. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27214 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX} |10207 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27236 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.6.0 |10208 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27237 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.10.0 |10208 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27238 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.7.0 |10208 |Overall system health status |system.status[swOperStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |25 | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;The current operational status of the switch.The states are as follow:&eol;online(1) means the switch is accessible by an external Fibre Channel port&eol;offline(2) means the switch is not accessible&eol;testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port&eol;faulty(4) means the switch is not operational. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27240 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.1.0 |10208 |CPU utilization |system.cpu.util[swCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;System's CPU usage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27242 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27243 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27246 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature status of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27247 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature |sensor.temp.value[swSensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature readings of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27248 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27249 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[swSensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;The current value (reading) of the sensor.&eol;The value, -2147483648, represents an unknown quantity.&eol;The fan value will be in RPM(revolution per minute) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27250 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan status |sensor.fan.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27294 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10209 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27295 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10210 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27296 |20 |1.3.6.1.4.1.1991.1.1.1.1.2.0 |10210 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27297 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10211 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form 'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27302 |20 |discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1] |10210 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27303 |20 |discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1] |10210 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFanTable: A table of each fan information. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27304 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3] |10210 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27306 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18] |10210 |Temperature Discovery Chassis |temp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27307 |20 |discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2] |10211 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27308 |20 |discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2] |10211 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27309 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4] |10211 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27310 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5] |10211 |Stack Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering snStackingConfigUnitTable for Model names |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1] |10211 |Chassis Discovery |chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasUnitIndex: The index to chassis table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27312 |20 |1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX} |10210 |PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27313 |20 |1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX} |10210 |Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27314 |20 |1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX} |10210 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTempValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celcius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27317 |20 |1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX} |10211 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27318 |20 |1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX} |10211 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27319 |20 |1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX} |10211 |Unit {#SNMPINDEX}: Hardware model name |system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-STACKING-MIB&eol;A description of the configured/active system type for each unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27320 |20 |1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX} |10211 |Unit {#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27376 |20 |1.3.6.1.4.1.9.2.1.58 |10215 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27378 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10216 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27379 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10216 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27390 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10212 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27391 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10213 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27393 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10216 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10217 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27395 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10217 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27396 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10217 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27415 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27416 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27417 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10213 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27419 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10216 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27420 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27421 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27422 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27423 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1] |10221 |CPU and Memory and Flash Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27474 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1] |10221 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A list of power supply residents in the S-series chassis. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27475 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1] |10221 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27476 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2] |10221 |Stack Unit Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27478 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;CPU utilization in percentage for last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27479 |20 |1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX} |10221 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |31 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27480 |20 |1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX} |10221 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |30 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the fan tray {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27481 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Operating system |system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Current code version of this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27482 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware version(revision) |system.hw.version[chStackUnitProductRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit manufacturer's product revision |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27483 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit's serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27484 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware model name |system.hw.model[chStackUnitModelID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The plugged-in model ID for this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27485 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX} |10221 |Device {#SNMPVALUE}: Temperature |sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The temperature of the unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27508 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10222 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27509 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10222 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27510 |20 |1.3.6.1.2.1.1.1.0 |10222 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27511 |20 |1.3.6.1.4.1.171.10.97.2.36.1.1.3.0 |10222 |CPU utilization |system.cpu.util[myCPUUtilization5Min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-PROCESS-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2] |10222 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27513 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2] |10222 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27514 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3] |10222 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27515 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3] |10222 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27517 |20 |1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Temperature |sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB&eol;Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27518 |20 |1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Power supply status |sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27519 |20 |1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Fan status |sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27543 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10223 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27544 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10223 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27545 |20 |1.3.6.1.4.1.171.12.1.1.12.0 |10223 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;A text string containing the serial number of this device. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27546 |20 |1.3.6.1.2.1.1.1.0 |10223 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27547 |20 |1.3.6.1.4.1.171.12.1.1.6.2.0 |10223 |CPU utilization |system.cpu.util[agentCPUutilizationIn1min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27548 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1] |10223 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27549 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1] |10223 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27550 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3] |10223 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swPowerID of EQUIPMENT-MIB::swPowerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27551 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3] |10223 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swFanID of EQUIPMENT-MIB::swFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27553 |20 |1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Temperature |sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;The shelf current temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27554 |20 |1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[swPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |34 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current power status.&eol;lowVoltage : The voltage of the power unit is too low.&eol;overCurrent: The current of the power unit is too high.&eol;working : The power unit is working normally.&eol;fail : The power unit has failed.&eol;connect : The power unit is connected but not powered on.&eol;disconnect : The power unit is not connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27555 |20 |1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Fan status |sensor.fan.status[swFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |33 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current fan status.&eol;speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.&eol;speed-low : Fan spin using the lowest speed.&eol;speed-middle: Fan spin using the middle speed.&eol;speed-high : Fan spin using the highest speed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27579 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27580 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27582 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10224 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27583 |20 |1.3.6.1.2.1.47.1.1.1.1.2.1 |10224 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27584 |20 |1.3.6.1.4.1.1916.1.1.1.8.0 |10224 |Device: Temperature |sensor.temp.value[extremeCurrentTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature readings of testpoint: Device&eol;Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27585 |20 |1.3.6.1.4.1.1916.1.1.1.7.0 |10224 |Device: Temperature status |sensor.temp.status[extremeOverTemperatureAlarm.0] |3m |2w |0d |0 |3 | | | | |NULL |37 | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature status of testpoint: Device |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27586 |20 |1.3.6.1.4.1.1916.1.32.1.2.0 |10224 |CPU utilization |system.cpu.util[extremeCpuMonitorTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total CPU utlization (percentage) as of last sampling. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27587 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1] |10224 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27588 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1] |10224 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Table of status of all power supplies in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27589 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1] |10224 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27591 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Total memory |vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of DRAM in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27593 |20 |1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX} |10224 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |38 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27594 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan speed |sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27595 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[extremeFanOperational.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |36 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Operational status of a cooling fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27665 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Module Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filter limits results to 'Module level1' or Fabric Modules |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27666 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27667 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 7: fan(7) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27668 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 6: powerSupply(6) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27669 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27671 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX} |10227 |{#MODULE_NAME}: CPU utilization |system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage&eol;will calculate the overall CPU usage on the entity, and it&eol;is not sensible with the number of CPU on the entity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27672 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX} |10227 |{#SNMPVALUE}: Temperature |sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27673 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Fan status |sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;fanError(41) means that the fan stops working. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27674 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Power supply status |sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;psuError(51) means that the Power Supply Unit is in the state of fault.&eol;rpsError(61) means the Redundant Power Supply is in the state of fault. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27675 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10227 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27676 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27677 |20 |1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX} |10227 |{#ENT_NAME}: Firmware version |system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27678 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27679 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27745 |20 |discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |MPU Discovery |mpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27746 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27747 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1] |10229 |FAN Discovery |discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27748 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27749 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10229 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27750 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27751 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Temperature |sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27753 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX} |10229 |{#ENT_NAME}: CPU utilization |system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27754 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27755 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX} |10229 |#{#SNMPVALUE}: Fan status |sensor.fan.status[hwEntityFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |41 | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27777 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27778 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27779 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7] |10230 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering sensor's table with temperature filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27780 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2] |10230 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27781 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2] |10230 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A textual description of the power supply, that can be assigned by the administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27782 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2] |10230 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |icsChassisFanDescription of icsChassisFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27783 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |43 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27784 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature |sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The current value read from the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27785 |20 |1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX} |10230 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The serial number of the FRU. If not available, this value is a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27786 |20 |1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Power supply status |sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |44 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;Actual status of the power supply:&eol;(1) unknown: status not known.&eol;(2) disabled: power supply is disabled.&eol;(3) failed - power supply is unable to supply power due to failure.&eol;(4) warning - power supply is supplying power, but an output or sensor is bad or warning.&eol;(5) standby - power supply believed usable,but not supplying power.&eol;(6) engaged - power supply is supplying power.&eol;(7) redundant - power supply is supplying power, but not needed.&eol;(8) notPresent - power supply is supplying power is not present. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27787 |20 |1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Fan status |sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |42 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the fan unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27812 |20 |1.3.6.1.4.1.2636.3.1.2.0 |10231 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The name, model, or detailed description of the box,indicating which product the box is about, for example 'M40'. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27813 |20 |1.3.6.1.4.1.2636.3.1.3.0 |10231 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The serial number of this subject, blank if unknown or unavailable. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27814 |20 |1.3.6.1.4.1.2636.3.4.2.3.1.0 |10231 |Overall system health status |system.status[jnxRedAlarmState.0] |30s |2w |0d |0 |3 | | | | |NULL |46 | | |0 | | | | |0 |NULL |MIB: JUNIPER-ALARM-MIB&eol;The red alarm indication on the craft interface panel.&eol;The red alarm is on when there is some system&eol;failure or power supply failure or the system&eol;is experiencing a hardware malfunction or some&eol;threshold is being exceeded.&eol;&eol;This red alarm state could be turned off by the&eol;ACO/LT (Alarm Cut Off / Lamp Test) button on the&eol;front panel module. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27815 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |CPU and Memory Discovery |jnxOperatingTable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27816 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |Temperature discovery |jnxOperatingTable.discovery.temp |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Temperature&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27817 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4] |10231 |FAN Discovery |jnxOperatingTable.discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Fans |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27818 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2] |10231 |PSU Discovery |jnxOperatingTable.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27821 |20 |1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} |10231 |{#SENSOR_INFO}: Temperature |sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The temperature in Celsius (degrees C) of {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27822 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Fan status |sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27823 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Power supply status |sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.&eol;This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27893 |20 |1.3.6.1.2.1.1.1.0 |10233 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27894 |20 |1.3.6.1.4.1.14988.1.1.7.3.0 |10233 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;RouterBOARD serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27895 |20 |1.3.6.1.4.1.14988.1.1.7.4.0 |10233 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Current firmware version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27897 |20 |1.3.6.1.4.1.14988.1.1.3.10.0 |10233 |Device: Temperature |sensor.temp.value[mtxrHlTemperature] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;(mtxrHlTemperature) Device temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..)&eol;Reference: http://wiki.mikrotik.com/wiki/Manual:SNMP |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27898 |20 |1.3.6.1.2.1.25.2.3.1.5.65536 |10233 |Total memory |vm.memory.total[hrStorageSize.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27900 |20 |1.3.6.1.2.1.25.2.3.1.6.65536 |10233 |Used memory |vm.memory.used[hrStorageUsed.Memory] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27901 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10233 |CPU discovery |hrProcessorLoad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrProcessorTable discovery |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27902 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11] |10233 |Temperature CPU discovery |mtxrHlProcessorTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlProcessorTemperature&eol;Since temperature of CPU is not available on all Mikrotik hardware, this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27903 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.2.3.1.3,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4,{#STORAGE_TYPE},1.3.6.1.2.1.25.2.3.1.2] |10233 |Storage discovery |storage.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27904 |20 |1.3.6.1.2.1.25.3.3.1.2.{#SNMPINDEX} |10233 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[hrProcessorLoad.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that this processor was not idle. Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27905 |20 |1.3.6.1.4.1.14988.1.1.3.11.{#SNMPINDEX} |10233 |CPU: Temperature |sensor.temp.value[mtxrHlProcessorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;(mtxrHlProcessorTemperature) Processor temperature in Celsius (degrees C). Might be missing in entry models (RB750, RB450G..) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27906 |15 | |10233 |Disk-{#SNMPINDEX}: Space utilization |vfs.fs.pused[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageSize.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for Disk-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27907 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in&eol;units of hrStorageAllocationUnits. This object is&eol;writable to allow remote configuration of the size of&eol;the storage area in those cases where such an&eol;operation makes sense and is possible on the&eol;underlying system. For example, the amount of main&eol;memory allocated to a buffer pool might be modified or&eol;the amount of disk space allocated to virtual memory&eol;might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27908 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10233 |Disk-{#SNMPINDEX}: Used space |vfs.fs.used[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27930 |20 |1.3.6.1.4.1.4526.10.1.1.1.3.0 |10234 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27931 |20 |1.3.6.1.4.1.4526.10.1.1.1.4.0 |10234 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Serial number of the switch |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27935 |20 |1.3.6.1.4.1.4526.10.1.1.5.2.0 |10234 |Total memory |vm.memory.total[agentSwitchCpuProcessMemAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total Memory allocated for the tasks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27936 |20 |1.3.6.1.4.1.4526.10.1.1.4.9.0 |10234 |CPU utilization |system.cpu.util[agentSwitchCpuProcessTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27937 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.8.1.1] |10234 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesTempSensorsTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27938 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.6.1.1] |10234 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::1.3.6.1.4.1.4526.10.43.1.6.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27939 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.4526.10.43.1.7.1.1] |10234 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |FASTPATH-BOXSERVICES-PRIVATE-MIB::boxServicesPowSupplyIndex |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27940 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature status |sensor.temp.status[boxServicesTempSensorState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |51 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The state of temperature sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27941 |20 |1.3.6.1.4.1.4526.10.43.1.8.1.5.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Temperature |sensor.temp.value[boxServicesTempSensorTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The temperature value reported by sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27942 |20 |1.3.6.1.4.1.4526.10.43.1.6.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Fan status |sensor.fan.status[boxServicesFanItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |50 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of fan |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27943 |20 |1.3.6.1.4.1.4526.10.43.1.7.1.3.{#SNMPINDEX} |10234 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[boxServicesPowSupplyItemState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |49 | | |0 | | | | |2 |NULL |MIB: FASTPATH-BOXSERVICES-PRIVATE-MIB&eol;The status of power supply |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27967 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10235 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27968 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10235 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27970 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10235 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27971 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10235 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27972 |20 |1.3.6.1.4.1.27514.100.1.11.7.0 |10235 |Used memory |vm.memory.used[switchMemoryBusy.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27973 |20 |1.3.6.1.4.1.27514.100.1.11.6.0 |10235 |Total memory |vm.memory.total[switchMemorySize.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27975 |20 |1.3.6.1.4.1.27514.100.1.11.10.0 |10235 |CPU utilization |system.cpu.util[switchCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27997 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27998 |20 |1.3.6.1.4.1.11863.6.1.1.6.0 |10236 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The software version of the product. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27999 |20 |1.3.6.1.4.1.11863.6.1.1.8.0 |10236 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The Serial number of the product. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28000 |20 |1.3.6.1.4.1.11863.6.1.1.5.0 |10236 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TPLINK-SYSINFO-MIB&eol;The hardware version of the product. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28001 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.1.1.1.1] |10236 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorCpuTable, displays the CPU utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28002 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11863.6.4.1.2.1.1.1] |10236 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering TPLINK-SYSMONITOR-MIB::tpSysMonitorMemoryTable, displays the memory utilization of all UNITs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28003 |20 |1.3.6.1.4.1.11863.6.4.1.1.1.1.3.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: CPU utilization |system.cpu.util[tpSysMonitorCpu1Minute.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the CPU utilization in 1 minute.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28026 |20 |1.2.840.10036.3.1.2.1.3.5 |10237 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;A printable string used to identify the manufacturer's product name of the resource. Maximum string length is 128 octets. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28027 |20 |1.2.840.10036.3.1.2.1.4.5 |10237 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IEEE802dot11-MIB&eol;Printable string used to identify the manufacturer's product version of the resource. Maximum string length is 128 octets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28031 |20 |1.3.6.1.4.1.10002.1.1.1.4.2.1.3.2 |10237 |CPU utilization |system.cpu.util[loadValue.2] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;5 minute load average of processor load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28141 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.3.0 |10250 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: NETSWITCH-MIB&eol;Contains the operating code version number (also known as software or firmware).&eol;For example, a software version such as A.08.01 is described as follows:&eol;A the function set available in your router&eol;08 the common release number&eol;01 updates to the current common release |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28142 |20 |1.3.6.1.4.1.11.2.36.1.1.2.9.0 |10250 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SEMI-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28143 |20 |1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0 |10250 |CPU utilization |system.cpu.util[hpSwitchCpuStat.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: STATISTICS-MIB&eol;The CPU utilization in percent(%).&eol;Reference: http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c02597344&sp4ts.oid=51079 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28144 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10250 |Temperature Discovery |temp.precision0.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28145 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.1] |10250 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of NETSWITCH-MIB::hpLocalMemTable, A table that contains information on all the local memory for each slot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28146 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.2 - fans and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28147 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.1 - power supplies and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28148 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.2,{#ENT_DESCR},1.3.6.1.4.1.11.2.14.11.1.2.6.1.7,{#ENT_STATUS},1.3.6.1.4.1.11.2.14.11.1.2.6.1.4] |10250 |Temp Status Discovery |temp.status.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of hpicfSensorObjectId that ends with: 11.2.3.7.8.3.3 - over temp status and are present |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28149 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10250 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28150 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10250 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28153 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.7.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Used memory |vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently allocated bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28154 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Fan status |sensor.fan.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28155 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Power supply status |sensor.psu.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28156 |20 |1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.{#SNMPINDEX} |10250 |{#ENT_DESCR}: Temperature status |sensor.temp.status[hpicfSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |40 | | |0 | | | | |2 |NULL |MIB: HP-ICF-CHASSIS&eol;Actual status indicated by the sensor: {#ENT_DESCR} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28157 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28158 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10250 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28196 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10251 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28197 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2] |10251 |Fan Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28198 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28199 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10251 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28200 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28201 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28202 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28203 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28205 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28206 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10251 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10252 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28246 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10252 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28248 |5 | |10047 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28250 |5 | |10048 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |28251 |5 | |10048 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |28306 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3] |10254 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28307 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2] |10254 |Fan discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28308 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |Entity discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28309 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10254 |PSU discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28323 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28324 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28325 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28326 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28327 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28328 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10254 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28329 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10254 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28341 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10255 |Overall system health status |system.status[globalSystemStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28342 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10255 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the model name of the system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28344 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10255 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the service tag of the system. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28345 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10255 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the firmware version of a remote access card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28346 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28347 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8] |10255 |Temperature Ambient Discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28348 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8] |10255 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::powerSupplyTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28349 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7] |10255 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::coolingDeviceTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28350 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2] |10255 |Physical Disk Discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::physicalDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28351 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2] |10255 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::virtualDiskTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28352 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79] |10255 |Array Controller Discovery |physicaldisk.arr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28353 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1] |10255 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28354 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28355 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28356 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature |sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28357 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10255 |{#SENSOR_LOCALE}: Temperature status |sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0020.0001.0005 This attribute defines the probe status of the temperature probe. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28358 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10255 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0600.0012.0001.0005 This attribute defines the status of the power supply. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28359 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan status |sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0005 This attribute defines the probe status of the cooling device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28360 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10255 |{#FAN_DESCR}: Fan speed |sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;0700.0012.0001.0006 This attribute defines the reading for a cooling device&eol;of subtype other than coolingDeviceSubTypeIsDiscrete. When the value&eol;for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the&eol;value returned for this attribute is the speed in RPM or the OFF/ON value&eol;of the cooling device. When the value for coolingDeviceSubType is&eol;coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28361 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk status |system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |61 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the physical disk itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28362 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk serial number |system.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The physical disk's unique identification number from the manufacturer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28363 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |62 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Indicates whether the physical disk has received a predictive failure alert. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28364 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk model name |system.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The model number of the physical disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28365 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk part number |system.hw.physicaldisk.part_number[physicalDiskPartNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The part number of the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28366 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10255 |{#DISK_NAME}: Physical disk media type |system.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | | | | |NULL |63 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The media type of the physical disk. Possible Values:&eol;1: The media type could not be determined.&eol;2: Hard Disk Drive (HDD).&eol;3: Solid State Drive (SSD). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28367 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10255 |{#DISK_NAME}: Disk size |system.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the physical disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28368 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |65 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The virtual disk's RAID type.&eol;Possible values:&eol;1: Not one of the following&eol;2: RAID-0&eol;3: RAID-1&eol;4: RAID-5&eol;5: RAID-6&eol;6: RAID-10&eol;7: RAID-50&eol;8: RAID-60&eol;9: Concatenated RAID 1&eol;10: Concatenated RAID 5 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28369 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Current state |system.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |66 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The state of the virtual disk when there are progressive operations ongoing.&eol;Possible values:&eol;1: There is no active operation running.&eol;2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.&eol;3: A Consistency Check (CC) is being performed on the virtual disk.&eol;4: The virtual disk is being initialized.&eol;5: BackGround Initialization (BGI) is being performed on the virtual disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28370 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Read policy |system.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The read policy used by the controller for read operations on this virtual disk.&eol;Possible values:&eol;1: No Read Ahead.&eol;2: Read Ahead.&eol;3: Adaptive Read Ahead. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28371 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Write policy |system.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |67 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The write policy used by the controller for write operations on this virtual disk.&eol;Possible values:&eol;1: Write Through.&eol;2: Write Back.&eol;3: Force Write Back. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28372 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The size of the virtual disk in megabytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28373 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10255 |Disk {#SNMPVALUE}({#DISK_NAME}): Status |system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The current state of this virtual disk (which includes any member physical disks.)&eol;Possible states:&eol;1: The current state could not be determined.&eol;2: The virtual disk is operating normally or optimally.&eol;3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.&eol;4: The virtual disk encounterd a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the controller itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28375 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller model |system.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The controller's name as represented in Storage Management. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28376 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10255 |Battery {#BATTERY_NUM}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |64 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Current state of battery.&eol;Possible values:&eol;1: The current state could not be determined.&eol;2: The battery is operating normally.&eol;3: The battery has failed and needs to be replaced.&eol;4: The battery temperature is high or charge level is depleting.&eol;5: The battery is missing or not detected.&eol;6: The battery is undergoing the re-charge phase.&eol;7: The battery voltage or charge level is below the threshold. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28388 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10256 |System: Temperature status |sensor.temp.status[cpqHeThermalCondition.0] |3m |2w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;This value specifies the overall condition of the system's thermal environment.&eol;This value will be one of the following:&eol;other(1) Temperature could not be determined.&eol;ok(2) The temperature sensor is within normal operating range.&eol;degraded(3) The temperature sensor is outside of normal operating range.&eol;failed(4) The temperature sensor detects a condition that could permanently damage the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28390 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10256 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: CPQSINFO-MIB&eol;The machine product name.The name of the machine used in this system. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28391 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10256 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: CPQSINFO-MIB&eol;The serial number of the physical system unit. The string will be empty if the system does not report the serial number function. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28392 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28393 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ambient(11) and 0.1 index filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28395 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery Memory |tempDescr.discovery.memory |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28396 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery PSU |tempDescr.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28397 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery System |tempDescr.discovery.io |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.9.3.1.5,{#CHASSIS_NUM},1.3.6.1.4.1.232.6.2.9.3.1.1,{#BAY_NUM},1.3.6.1.4.1.232.6.2.9.3.1.2] |10256 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQHLTH-MIB::cpqHeFltTolPowerSupplyStatus |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28399 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10256 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQHLTH-MIB::cpqHeFltTolFanCondition |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28400 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.2.1.1.1,{#CNTLR_SLOT},1.3.6.1.4.1.232.3.2.2.1.1.5,{#CNTLR_LOCATION},1.3.6.1.4.1.232.3.2.2.1.1.20] |10256 |Array Controller Discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CPQIDA-MIB::cpqDaCntlrTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28401 |20 |discovery[{#CACHE_STATUS},1.3.6.1.4.1.232.3.2.2.2.1.2,{#CACHE_CNTRL_INDEX},1.3.6.1.4.1.232.3.2.2.2.1.1] |10256 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CPQIDA-MIB::cpqDaAccelTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28402 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.5.1.1.5,{#DISK_LOCATION},1.3.6.1.4.1.232.3.2.5.1.1.64] |10256 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CPQIDA-MIB::cpqDaPhyDrvTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28403 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.3.2.3.1.1.2,{#DISK_NAME},1.3.6.1.4.1.232.3.2.3.1.1.14] |10256 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqDaLogDrvTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28404 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |6m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: {#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28405 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature sensor location |sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1h |1w |0d |0 |3 | | | | |NULL |55 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;This specifies the location of the temperature sensor present in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28406 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |Ambient: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28407 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |CPU-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: CPU-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28408 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |Memory-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |6m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: Memory-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28409 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |PSU-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |6m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: PSU-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28410 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |System-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |6m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: System-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28411 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10256 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The condition of the power supply. This value will be one of the following:&eol;other(1) The status could not be determined or not present.&eol;ok(2) The power supply is operating normally.&eol;degraded(3) A temperature sensor, fan or other power supply component is outside of normal operating range.&eol;failed(4) A power supply component detects a condition that could permanently damage the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28412 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10256 |Fan {#SNMPINDEX}: Fan status |sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The condition of the fan.&eol;This value will be one of the following:&eol;other(1) Fan status detection is not supported by this system or driver.&eol;ok(2) The fan is operating properly.&eol;degraded(2) A redundant fan is not operating properly.&eol;failed(4) A non-redundant fan is not operating properly. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28413 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10256 |{#CNTLR_LOCATION}: Disk array controller status |system.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;This value represents the overall condition of this controller,&eol;and any associated logical drives,physical drives, and array accelerators. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28414 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10256 |{#CNTLR_LOCATION}: Disk array controller model |system.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1d |90d |0d |0 |3 | | | | |NULL |56 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Array Controller Model. The type of controller card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28415 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10256 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |system.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |71 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Cache Module/Operations Status. This describes the status of the cache module and/or cache operations.&eol;Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28416 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10256 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |72 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Cache Module Board Backup Power Status. This monitors the status of each backup power source on the board.&eol;The backup power source can only recharge when the system has power applied. The type of backup power source used is indicated by cpqDaAccelBackupPowerSource.&eol;The following values are valid:&eol;Other (1) Indicates that the instrument agent does not recognize backup power status. You may need to update your software.&eol;&eol;Ok (2) The backup power source is fully charged.&eol;&eol;Recharging (3) The array controller has one or more cache module backup power sources that are recharging.&eol;Cache module operations such as Battery/Flash Backed Write Cache, Expansion, Extension and Migration are temporarily suspended until the backup power source is fully charged.&eol;Cache module operations will automatically resume when charging is complete.&eol;&eol;Failed (4) The battery pack is below the sufficient voltage level and has not recharged in 36 hours.&eol;Your Cache Module board needs to be serviced.&eol;&eol;Degraded (5) The battery is still operating, however, one of the batteries in the pack has failed to recharge properly.&eol;Your Cache Module board should be serviced as soon as possible.&eol;&eol;NotPresent (6) A backup power source is not present on the cache module board. Some controllers do not have backup power sources.&eol;&eol;Capacitor Failed (7) The flash backed cache module capacitor is below the sufficient voltage level and has not recharged in 10 minutes. Your Cache Module board needs to be serviced.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28417 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk status |system.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |57 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Status. This shows the status of the physical drive. The following values are valid for the physical drive status:&eol;other (1) Indicates that the instrument agent does not recognize the drive.&eol;You may need to upgrade your instrument agent and/or driver software.&eol;ok (2) Indicates the drive is functioning properly.&eol;failed (3) Indicates that the drive is no longer operating and should be replaced.&eol;predictiveFailure(4) Indicates that the drive has a predictive failure error and should be replaced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28418 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |system.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |70 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive S.M.A.R.T Status.The following values are defined:&eol;other(1) The agent is unable to determine if the status of S.M.A.R.T predictive failure monitoring for this drive.&eol;ok(2) Indicates the drive is functioning properly.&eol;replaceDrive(3) Indicates that the drive has a S.M.A.R.T predictive failure error and should be replaced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28419 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk serial number |system.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Serial Number.&eol;This is the serial number assigned to the physical drive.&eol;This value is based upon the serial number as returned by the SCSI inquiry command&eol;but may have been modified due to space limitations. This can be used for identification purposes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28420 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk model name |system.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Model.This is a text description of the physical drive.&eol;The text that appears depends upon who manufactured the drive and the drive type.&eol;If a drive fails, note the model to identify the type of drive necessary for replacement.&eol;If a model number is not present, you may not have properly initialized the drive array to which the physical drive is attached for monitoring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28421 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Physical disk media type |system.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | | | | |NULL |73 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Drive Array Physical Drive Media Type.The following values are defined:&eol;other(1) The instrument agent is unable to determine the physical drive’s media type.&eol;rotatingPlatters(2) The physical drive media is composed of rotating platters.&eol;solidState(3) The physical drive media is composed of solid state electronics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28422 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10256 |{#DISK_LOCATION}: Disk size |system.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Physical Drive Size in MB.&eol;This is the size of the physical drive in megabytes.&eol;This value is calculated using the value 1,048,576 (2^20) as a megabyte.&eol;Drive manufacturers sometimes use the number 1,000,000 as a megabyte when giving drive capacities so this value may differ&eol;from the advertised size of a drive. This field is only applicable for controllers which support SCSI drives,&eol;and therefore is not supported by the IDA or IDA-2 controllers. The field will contain 0xFFFFFFFF if the drive capacity cannot be calculated&eol;or if the controller does not support SCSI drives. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28423 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |system.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |75 | | |0 | | | | |2 |NULL |Logical Drive Status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28424 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |system.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |74 | | |0 | | | | |2 |NULL |Logical Drive Fault Tolerance.&eol;This shows the fault tolerance mode of the logical drive. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28425 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10256 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |system.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Logical Drive Size.&eol;This is the size of the logical drive in megabytes. This value&eol;is calculated using the value 1,048,576 (2^20) as a megabyte.&eol;Drive manufacturers sometimes use the number 1,000,000 as a&eol;megabyte when giving drive capacities so this value may&eol;differ from the advertised size of a drive. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28437 |20 |1.3.6.1.4.1.2.3.51.3.1.4.1.0 |10257 |Overall system health status |system.status[systemHealthStat.0] |30s |2w |0d |0 |3 | | | | |NULL |58 | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Indicates status of system health for the system in which the IMM resides. Value of 'nonRecoverable' indicates a severe error has occurred and the system may not be functioning. A value of 'critical' indicates that a error has occurred but the system is currently functioning properly. A value of 'nonCritical' indicates that a condition has occurred that may change the state of the system in the future but currently the system is working properly. A value of 'normal' indicates that the system is operating normally. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28438 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0 |10257 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28439 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0 |10257 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Machine serial number VPD information |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28440 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10257 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28441 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10257 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with Ambient filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28442 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10257 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with CPU filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28443 |20 |discovery[{#PSU_DESCR},1.3.6.1.4.1.2.3.51.3.1.11.2.1.2] |10257 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::powerFruName |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28444 |20 |discovery[{#FAN_DESCR},1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] |10257 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::fanDescr |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28445 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.12.2.1.1] |10257 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28446 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10257 |{#SNMPVALUE}: Temperature |sensor.temp.value[tempReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28447 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10257 |Ambient: Temperature |sensor.temp.value[tempReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28448 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10257 |CPU: Temperature |sensor.temp.value[tempReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28449 |20 |1.3.6.1.4.1.2.3.51.3.1.11.2.1.6.{#SNMPINDEX} |10257 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the power module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28450 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.10.{#SNMPINDEX} |10257 |{#FAN_DESCR}: Fan status |sensor.fan.status[fanHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the fan component status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28451 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.3.{#SNMPINDEX} |10257 |{#FAN_DESCR}: Fan speed, % |sensor.fan.speed.percentage[fanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Fan speed expressed in percent(%) of maximum RPM.&eol;An octet string expressed as 'ddd% of maximum' where:d is a decimal digit or blank space for a leading zero.&eol;If the fan is determined not to be running or the fan speed cannot be determined, the string will indicate 'Offline'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28452 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.3.{#SNMPINDEX} |10257 |{#SNMPINDEX}: Physical disk status |system.hw.physicaldisk.status[diskHealthStatus.{#SNMPINDEX}] |3m |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28453 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.2.{#SNMPINDEX} |10257 |{#SNMPINDEX}: Physical disk part number |system.hw.physicaldisk.part_number[diskFruName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;disk module FRU name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28465 |20 |1.3.6.1.4.1.2.3.51.3.1.4.1.0 |10258 |Overall system health status |system.status[systemHealthStat.0] |30s |2w |0d |0 |3 | | | | |NULL |58 | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Indicates status of system health for the system in which the IMM resides. Value of 'nonRecoverable' indicates a severe error has occurred and the system may not be functioning. A value of 'critical' indicates that a error has occurred but the system is currently functioning properly. A value of 'nonCritical' indicates that a condition has occurred that may change the state of the system in the future but currently the system is working properly. A value of 'normal' indicates that the system is operating normally. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28466 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.5.0 |10258 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28467 |20 |1.3.6.1.4.1.2.3.51.3.1.5.2.1.3.0 |10258 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IMM-MIB&eol;Machine serial number VPD information |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28468 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28469 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery Ambient |tempDescr.discovery.ambient |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with Ambient filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28470 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.1.2.1.2] |10258 |Temperature Discovery CPU |tempDescr.discovery.cpu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning IMM-MIB::tempTable with CPU filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28471 |20 |discovery[{#PSU_DESCR},1.3.6.1.4.1.2.3.51.3.1.11.2.1.2] |10258 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::powerFruName |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28472 |20 |discovery[{#FAN_DESCR},1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] |10258 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |IMM-MIB::fanDescr |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2.3.51.3.1.12.2.1.1] |10258 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28474 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |{#SNMPVALUE}: Temperature |sensor.temp.value[tempReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28475 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |Ambient: Temperature |sensor.temp.value[tempReading.Ambient.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28476 |20 |1.3.6.1.4.1.2.3.51.3.1.1.2.1.3.{#SNMPINDEX} |10258 |CPU: Temperature |sensor.temp.value[tempReading.CPU.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Temperature readings of testpoint: CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28477 |20 |1.3.6.1.4.1.2.3.51.3.1.11.2.1.6.{#SNMPINDEX} |10258 |{#PSU_DESCR}: Power supply status |sensor.psu.status[powerHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the power module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28478 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.10.{#SNMPINDEX} |10258 |{#FAN_DESCR}: Fan status |sensor.fan.status[fanHealthStatus.{#SNMPINDEX}] |3m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;A description of the fan component status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28479 |20 |1.3.6.1.4.1.2.3.51.3.1.3.2.1.3.{#SNMPINDEX} |10258 |{#FAN_DESCR}: Fan speed, % |sensor.fan.speed.percentage[fanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;Fan speed expressed in percent(%) of maximum RPM.&eol;An octet string expressed as 'ddd% of maximum' where:d is a decimal digit or blank space for a leading zero.&eol;If the fan is determined not to be running or the fan speed cannot be determined, the string will indicate 'Offline'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28480 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.3.{#SNMPINDEX} |10258 |{#SNMPINDEX}: Physical disk status |system.hw.physicaldisk.status[diskHealthStatus.{#SNMPINDEX}] |3m |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28481 |20 |1.3.6.1.4.1.2.3.51.3.1.12.2.1.2.{#SNMPINDEX} |10258 |{#SNMPINDEX}: Physical disk part number |system.hw.physicaldisk.part_number[diskFruName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IMM-MIB&eol;disk module FRU name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28493 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13] |10259 |Temperature Discovery |tempDescr.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected temp sensors (Value = 0) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28494 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.21317.1.3.1.2,{#SENSOR_DESCR},1.3.6.1.4.1.21317.1.3.1.13] |10259 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning ATEN-IPMI-MIB::sensorTable with filter: not connected FAN sensors (Value = 0) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28495 |20 |1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX} |10259 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[sensorReading.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ATEN-IPMI-MIB&eol;A textual string containing information about the interface.&eol;This string should include the name of the manufacturer, the product name and the version of the interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28496 |20 |1.3.6.1.4.1.21317.1.3.1.2.{#SNMPINDEX} |10259 |{#SENSOR_DESCR}: Fan speed, % |sensor.fan.speed.percentage[sensorReading.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ATEN-IPMI-MIB&eol;A textual string containing information about the interface.&eol;This string should include the name of the manufacturer, the product name and the version of the interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28501 |16 | |10260 |jk-8009 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"", bytesReceived] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28502 |16 | |10260 |Maximum number of active sessions so far |jmx["Catalina:type=Manager,context=/,host=localhost",maxActive] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28503 |16 | |10260 |http-8080 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",currentThreadsBusy] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28504 |16 | |10260 |http-8080 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",currentThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28505 |16 | |10260 |http-8443 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",maxThreads] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28506 |16 | |10260 |http-8443 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",currentThreadsBusy] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28507 |16 | |10260 |http-8443 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",currentThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28508 |16 | |10260 |jk-8009 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",maxThreads] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28509 |16 | |10260 |jk-8009 threads busy |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",currentThreadsBusy] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28510 |16 | |10260 |jk-8009 threads allocated |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_AJP}\"",currentThreadCount] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28511 |16 | |10260 |Tomcat version |jmx["Catalina:type=Server",serverInfo] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28512 |16 | |10260 |http-8443 gzip compression |jmx["Catalina:type=ProtocolHandler,port=8443",compression] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28513 |16 | |10260 |http-8080 gzip compression |jmx["Catalina:type=ProtocolHandler,port=8080",compression] |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28514 |16 | |10260 |Number of sessions created by this manager per second |jmx["Catalina:type=Manager,context=/,host=localhost",sessionCounter] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28515 |16 | |10260 |Number of sessions we rejected due to maxActive being reached |jmx["Catalina:type=Manager,context=/,host=localhost",rejectedSessions] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28516 |16 | |10260 |The maximum number of active Sessions allowed, or -1 for no limit |jmx["Catalina:type=Manager,context=/,host=localhost",maxActiveSessions] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28517 |16 | |10260 |jk-8009 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",bytesSent] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28518 |16 | |10260 |Number of active sessions at this moment |jmx["Catalina:type=Manager,context=/,host=localhost",activeSessions] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28519 |16 | |10260 |http-8080 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",requestCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28520 |16 | |10260 |http-8080 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28521 |16 | |10260 |http-8080 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",errorCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28522 |16 | |10260 |http-8080 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",bytesSent] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28523 |16 | |10260 |http-8080 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTP}\"",bytesReceived] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28524 |16 | |10260 |http-8443 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",requestCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28525 |16 | |10260 |http-8443 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28526 |16 | |10260 |http-8443 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",errorCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28527 |16 | |10260 |http-8443 bytes sent per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"", bytesSent] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28528 |16 | |10260 |http-8443 bytes received per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_HTTPS}\"",bytesReceived] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28529 |16 | |10260 |jk-8009 requests per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",requestCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28530 |16 | |10260 |jk-8009 request processing time |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",processingTime] |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28531 |16 | |10260 |jk-8009 errors per second |jmx["Catalina:type=GlobalRequestProcessor,name=\"{$PROTOCOL_HANDLER_AJP}\"",errorCount] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28532 |16 | |10260 |http-8080 threads max |jmx["Catalina:type=ThreadPool,name=\"{$PROTOCOL_HANDLER_HTTP}\"",maxThreads] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28533 |5 | |10047 |Zabbix LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28535 |5 | |10047 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28537 |5 | |10047 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28539 |5 | |10261 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix server statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28540 |5 | |10261 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28541 |5 | |10261 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28542 |18 | |10261 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28543 |18 | |10261 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28544 |18 | |10261 |Value cache, % used |vcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28545 |18 | |10261 |Value cache hits |vcache.cache.hits |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28546 |18 | |10261 |Value cache misses |vcache.cache.misses |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28547 |18 | |10261 |Value cache operating mode |vcache.cache.mode |0 |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28548 |18 | |10261 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28549 |18 | |10261 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28550 |18 | |10261 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28551 |18 | |10261 |Trend write cache, % used |wcache.trend.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28552 |18 | |10261 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28553 |18 | |10261 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28554 |18 | |10261 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28555 |18 | |10261 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28556 |18 | |10261 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28557 |18 | |10261 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28558 |18 | |10261 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28559 |18 | |10261 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28560 |18 | |10261 |Preprocessing queue |preprocessing_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28561 |18 | |10261 |Utilization of alerter internal processes, in % |process.alerter.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28562 |18 | |10261 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28563 |18 | |10261 |Utilization of alert manager internal processes, in % |process.alert_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28564 |18 | |10261 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28565 |18 | |10261 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28566 |18 | |10261 |Utilization of escalator internal processes, in % |process.escalator.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28567 |18 | |10261 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28568 |18 | |10261 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28569 |18 | |10261 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28570 |18 | |10261 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28571 |18 | |10261 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28572 |18 | |10261 |Utilization of timer internal processes, in % |process.timer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28573 |18 | |10261 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28574 |18 | |10261 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28575 |18 | |10261 |Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28576 |18 | |10261 |Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28577 |18 | |10261 |Utilization of proxy poller data collector processes, in % |process.proxy_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28578 |18 | |10261 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28579 |18 | |10261 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28580 |18 | |10261 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28581 |18 | |10261 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28582 |18 | |10261 |Utilization of LLD manager internal processes, in % |process.lld_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28583 |18 | |10261 |Utilization of LLD worker internal processes, in % |process.lld_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28584 |18 | |10261 |LLD queue |lld_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28585 |5 | |10262 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix proxy statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28586 |5 | |10262 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28587 |5 | |10262 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28588 |18 | |10262 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28589 |18 | |10262 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28590 |18 | |10262 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28591 |18 | |10262 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28592 |18 | |10262 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28593 |18 | |10262 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28594 |18 | |10262 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28595 |18 | |10262 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28596 |18 | |10262 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28597 |18 | |10262 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28598 |18 | |10262 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28599 |18 | |10262 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28600 |18 | |10262 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28601 |18 | |10262 |Utilization of data sender internal processes, in % |process.data_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28602 |18 | |10262 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28603 |18 | |10262 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28604 |18 | |10262 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28605 |18 | |10262 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28606 |18 | |10262 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28607 |18 | |10262 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28608 |18 | |10262 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28609 |18 | |10262 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28610 |18 | |10262 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28611 |18 | |10262 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28612 |18 | |10262 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28613 |18 | |10262 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28614 |18 | |10262 |Utilization of heartbeat sender internal processes, in % |process.heartbeat_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28615 |18 | |10262 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28616 |18 | |10262 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28617 |5 | |10048 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28618 |5 | |10048 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28619 |5 | |10048 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28620 |3 | |10173 |Discover VMware datastores |vmware.datastore.discovery[{$URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28621 |3 | |10173 |Average read latency of the datastore {#DATASTORE} |vmware.datastore.read[{$URL},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28622 |3 | |10173 |Free space on datastore {#DATASTORE} (percentage) |vmware.datastore.size[{$URL},{#DATASTORE},pfree] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28623 |3 | |10173 |Total size of datastore {#DATASTORE} |vmware.datastore.size[{$URL},{#DATASTORE}] |{$VMWARE_PERF_INTERVAL:datastore}|90d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28624 |3 | |10173 |Average write latency of the datastore {#DATASTORE} |vmware.datastore.write[{$URL},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |90d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$USERNAME} |{$PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28671 |0 | |10263 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28672 |0 | |10263 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28673 |0 | |10263 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28674 |0 | |10263 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28675 |0 | |10263 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics by query execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28676 |0 | |10263 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28677 |0 | |10263 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28678 |0 | |10263 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28679 |0 | |10263 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28680 |0 | |10263 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL configuration hash |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28681 |0 | |10263 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache hit ratio |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28682 |0 | |10263 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics about the background writer process's activity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28683 |0 | |10263 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics by transaction execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28684 |0 | |10263 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28685 |0 | |10263 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28686 |0 | |10263 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |5m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Master item to collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28687 |0 | |10263 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28688 |18 | |10263 |Transactions: Max idle transaction time |pgsql.transactions.idle |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max idle transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28689 |18 | |10263 |Transactions: Max active transaction time |pgsql.transactions.active |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max active transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28690 |18 | |10263 |Transactions: Max prepared transaction time |pgsql.transactions.prepared |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max prepared transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28691 |18 | |10263 |Transactions: Max waiting transaction time |pgsql.transactions.waiting |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Current max waiting transaction time |0 |30d |0 | |28683 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28692 |18 | |10263 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |28686 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28693 |18 | |10263 |Bgwriter: Buffers allocated per second |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28694 |18 | |10263 |Bgwriter: Buffers written directly by a backend per second |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28695 |18 | |10263 |Bgwriter: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28696 |18 | |10263 |Bgwriter: Buffers backend fsync per second |pgsql.bgwriter.buffers_backend_fsync.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write) |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28697 |18 | |10263 |Bgwriter: Buffers written during checkpoints per second |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28698 |18 | |10263 |Bgwriter: Buffers written by the background writer per second |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28699 |18 | |10263 |Bgwriter: Requested checkpoints per second |pgsql.bgwriter.checkpoints_req.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requested checkpoints that have been performed |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28700 |18 | |10263 |Bgwriter: Scheduled checkpoints per second |pgsql.bgwriter.checkpoints_timed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of scheduled checkpoints that have been performed |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28701 |18 | |10263 |Bgwriter: Checkpoint sync time |pgsql.bgwriter.checkpoint_sync_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28702 |18 | |10263 |Bgwriter: Max written per second |pgsql.bgwriter.maxwritten_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times the background writer stopped a cleaning scan because it had written too many buffers |0 |30d |0 | |28682 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28703 |18 | |10263 |Connections sum: Waiting |pgsql.connections.sum.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of waiting connections&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#WAIT-EVENT-TABLE |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28704 |18 | |10263 |Connections sum: Active |pgsql.connections.sum.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28705 |18 | |10263 |Connections sum: Idle |pgsql.connections.sum.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28706 |18 | |10263 |Connections sum: Idle in transaction |pgsql.connections.sum.idle_in_transaction |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28707 |18 | |10263 |Connections sum: Prepared |pgsql.connections.sum.prepared |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of prepared transactions&eol;https://www.postgresql.org/docs/current/sql-prepare-transaction.html |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28708 |18 | |10263 |Connections sum: Total |pgsql.connections.sum.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28709 |18 | |10263 |Connections sum: Total % |pgsql.connections.sum.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |28671 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28710 |18 | |10263 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |28686 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28711 |0 | |10263 |Database discovery |pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28712 |0 | |10263 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{#DBNAME}"] |15m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28713 |0 | |10263 |DB {#DBNAME}: Get frozen XID |pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{#DBNAME}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28714 |0 | |10263 |DB {#DBNAME}: Get scans |pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{#DBNAME}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of scans done for table/index in the database |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28715 |18 | |10263 |DB {#DBNAME}: Detected conflicts per second |pgsql.dbstat.conflicts.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of queries canceled due to conflicts with recovery in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28716 |18 | |10263 |DB {#DBNAME}: Locks total |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of locks in the database |0 |30d |0 | |28672 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28717 |18 | |10263 |DB {#DBNAME}: Sequential scans per second |pgsql.scans.seq.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sequential scans in the database |0 |30d |0 | |28714 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28718 |18 | |10263 |DB {#DBNAME}: Index scans per second |pgsql.scans.idx.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of index scans in the database |0 |30d |0 | |28714 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28719 |18 | |10263 |DB {#DBNAME}: Queries sum transaction time |pgsql.queries.tx.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum transaction query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28720 |18 | |10263 |DB {#DBNAME}: Queries max transaction time |pgsql.queries.tx.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max transaction query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28721 |18 | |10263 |DB {#DBNAME}: Queries slow transaction count |pgsql.queries.tx.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow transaction query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28722 |18 | |10263 |DB {#DBNAME}: Queries sum query time |pgsql.queries.query.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28723 |18 | |10263 |DB {#DBNAME}: Queries max query time |pgsql.queries.query.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28724 |18 | |10263 |DB {#DBNAME}: Queries slow query count |pgsql.queries.query.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28725 |18 | |10263 |DB {#DBNAME}: Queries sum maintenance time |pgsql.queries.mro.time_sum["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum maintenance query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28726 |18 | |10263 |DB {#DBNAME}: Queries max maintenance time |pgsql.queries.mro.time_max["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Max maintenance query time |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28727 |18 | |10263 |DB {#DBNAME}: Queries slow maintenance count |pgsql.queries.mro.slow_count["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Slow maintenance query count |0 |30d |0 | |28675 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28728 |18 | |10263 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blks_read.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of disk blocks read in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28729 |18 | |10263 |DB {#DBNAME}: Detected deadlocks per second |pgsql.dbstat.deadlocks.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of detected deadlocks in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28730 |18 | |10263 |DB {#DBNAME}: Blocks hit per second |pgsql.dbstat.blks_hit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times disk blocks were found already in the buffer cache, so that a read was not necessary |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28731 |18 | |10263 |DB {#DBNAME}: Frozen XID before avtovacuum % |pgsql.frozenxid.prc_before_av["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |reventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |0 |30d |0 | |28713 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28732 |18 | |10263 |DB {#DBNAME}: Rollbacks per second |pgsql.dbstat.xact_rollback.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions in this database that have been rolled back |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28733 |18 | |10263 |DB {#DBNAME}: Commits per second |pgsql.dbstat.xact_commit.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions in this database that have been committed |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28734 |18 | |10263 |DB {#DBNAME}: Tuples updated per second |pgsql.dbstat.tup_updated.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28735 |18 | |10263 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows updated by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28736 |18 | |10263 |DB {#DBNAME}: Tuples inserted per second |pgsql.dbstat.tup_inserted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows inserted by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28737 |18 | |10263 |DB {#DBNAME}: Tuples fetched per second |pgsql.dbstat.tup_fetched.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows fetched by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28738 |18 | |10263 |DB {#DBNAME}: Tuples deleted per second |pgsql.dbstat.tup_deleted.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of rows deleted by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28739 |18 | |10263 |DB {#DBNAME}: Temp_files created per second |pgsql.dbstat.temp_files.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of temporary files created by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28740 |18 | |10263 |DB {#DBNAME}: Temp_bytes written per second |pgsql.dbstat.temp_bytes.rate["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of data written to temporary files by queries in this database |0 |30d |0 | |28687 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28741 |18 | |10263 |DB {#DBNAME}: Frozen XID before stop % |pgsql.frozenxid.prc_before_stop["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |0 |30d |0 | |28713 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28742 |0 | |10264 |Apache: Get status |web.page.get["{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PATH}","{$APACHE.STATUS.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28743 |0 | |10264 |Apache: Service ping |net.tcp.service[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28744 |0 | |10264 |Apache: Memory usage (vsize) |proc.mem["{$APACHE.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28745 |0 | |10264 |Apache: Memory usage (rss) |proc.mem["{$APACHE.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28746 |0 | |10264 |Apache: Number of processes running |proc.num["{$APACHE.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28747 |0 | |10264 |Apache: CPU utilization |proc.cpu.util["{$APACHE.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28748 |0 | |10264 |Apache: Service response time |net.tcp.service.perf[http,"{$APACHE.STATUS.HOST}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28749 |18 | |10264 |Apache: Total requests |apache.requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |A total number of accesses |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28750 |18 | |10264 |Apache: Workers reading request |apache.workers.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in reading state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28751 |18 | |10264 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28752 |18 | |10264 |Apache: Bytes per second |apache.bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total bytes' stat.&eol;BytesPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28753 |18 | |10264 |Apache: Workers waiting for connection |apache.workers.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in waiting state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28754 |18 | |10264 |Apache: Workers starting up |apache.workers.starting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in starting state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28755 |18 | |10264 |Apache: Workers slot with no current process |apache.workers.slot |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of slots with no current process |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28756 |18 | |10264 |Apache: Workers sending reply |apache.workers.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in sending state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28757 |18 | |10264 |Apache: Workers logging |apache.workers.logging |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in logging state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28758 |18 | |10264 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28759 |18 | |10264 |Apache: Workers keepalive (read) |apache.workers.keepalive |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in keepalive state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28760 |18 | |10264 |Apache: Workers idle cleanup |apache.workers.cleanup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in cleanup state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28761 |18 | |10264 |Apache: Requests per second |apache.requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total requests' stat.&eol;ReqPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28762 |18 | |10264 |Apache: Workers DNS lookup |apache.workers.dnslookup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in dnslookup state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28763 |18 | |10264 |Apache: Workers closing connection |apache.workers.closing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in closing state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28764 |18 | |10264 |Apache: Total workers idle |apache.workers_total.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of idle worker threads/processes |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28765 |18 | |10264 |Apache: Total workers busy |apache.workers_total.busy |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of busy worker threads/processes |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28766 |18 | |10264 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28767 |18 | |10264 |Apache: Workers finishing |apache.workers.finishing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in finishing state |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28768 |18 | |10264 |Event MPM discovery |apache.mpm.event.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if event MPM is used&eol;https://httpd.apache.org/docs/current/mod/event.html |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28769 |18 | |10264 |Apache: Connections async closing |apache.connections[async_closing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in closing state (only applicable to event MPM) |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28770 |18 | |10264 |Apache: Connections async keep alive |apache.connections[async_keep_alive{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in keep-alive state (only applicable to event MPM) |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28771 |18 | |10264 |Apache: Connections async writing |apache.connections[async_writing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in writing state (only applicable to event MPM) |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28772 |18 | |10264 |Apache: Connections total |apache.connections[total{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total connections |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28773 |18 | |10264 |Apache: Bytes per request |apache.bytes[per_request{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Average number of client requests per second |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28774 |18 | |10264 |Apache: Number of async processes |apache.process[num{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async processes |0 |30d |0 | |28742 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28775 |19 | |10265 |Apache: Get status |apache.get_status |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&eol;https://httpd.apache.org/docs/current/mod/mod_status.html |0 |30d |0 | |NULL |3s |{$APACHE.STATUS.SCHEME}://{HOST.CONN}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
+ROW |28776 |3 | |10265 |Apache: Service ping |net.tcp.service[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28777 |3 | |10265 |Apache: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$APACHE.STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28778 |18 | |10265 |Apache: Workers starting up |apache.workers.starting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in starting state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28779 |18 | |10265 |Apache: Workers slot with no current process |apache.workers.slot |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of slots with no current process |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28780 |18 | |10265 |Apache: Workers sending reply |apache.workers.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in sending state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28781 |18 | |10265 |Apache: Workers reading request |apache.workers.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in reading state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28782 |18 | |10265 |Apache: Workers logging |apache.workers.logging |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in logging state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28783 |18 | |10265 |Apache: Workers keepalive (read) |apache.workers.keepalive |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in keepalive state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28784 |18 | |10265 |Apache: Workers idle cleanup |apache.workers.cleanup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in cleanup state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28785 |18 | |10265 |Apache: Workers finishing |apache.workers.finishing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in finishing state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28786 |18 | |10265 |Apache: Workers closing connection |apache.workers.closing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in closing state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28787 |18 | |10265 |Apache: Workers DNS lookup |apache.workers.dnslookup |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in dnslookup state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28788 |18 | |10265 |Apache: Total workers idle |apache.workers_total.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of idle worker threads/processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28789 |18 | |10265 |Apache: Total workers busy |apache.workers_total.busy |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of busy worker threads/processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28790 |18 | |10265 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28791 |18 | |10265 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28792 |18 | |10265 |Apache: Total requests |apache.requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |A total number of accesses |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28793 |18 | |10265 |Apache: Requests per second |apache.requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total requests' stat.&eol;ReqPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28794 |18 | |10265 |Apache: Bytes per second |apache.bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated as change rate for 'Total bytes' stat.&eol;BytesPerSec is not used, as it counts average since last Apache server start. |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28795 |18 | |10265 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28796 |18 | |10265 |Apache: Workers waiting for connection |apache.workers.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of workers in waiting state |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28797 |18 | |10265 |Event MPM discovery |apache.mpm.event.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if event MPM is used&eol;https://httpd.apache.org/docs/current/mod/event.html |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28798 |18 | |10265 |Apache: Connections async closing |apache.connections[async_closing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in closing state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28799 |18 | |10265 |Apache: Connections async keep alive |apache.connections[async_keep_alive{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in keep-alive state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28800 |18 | |10265 |Apache: Connections async writing |apache.connections[async_writing{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async connections in writing state (only applicable to event MPM) |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28801 |18 | |10265 |Apache: Connections total |apache.connections[total{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total connections |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28802 |18 | |10265 |Apache: Bytes per request |apache.bytes[per_request{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Average number of client requests per second |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28803 |18 | |10265 |Apache: Number of async processes |apache.process[num{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of async processes |0 |30d |0 | |28775 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28804 |0 | |10266 |Nginx: Get stub status page |web.page.get["{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PATH}","{$NGINX.STUB_STATUS.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The following status information is provided:&eol;Active connections - the current number of active client connections including Waiting connections.&eol;Accepts - the total number of accepted client connections.&eol;Handled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).&eol;Requests - the total number of client requests.&eol;Reading - the current number of connections where nginx is reading the request header.&eol;Writing - the current number of connections where nginx is writing the response back to the client.&eol;Waiting - the current number of idle client connections waiting for a request.&eol;https://nginx.org/en/docs/http/ngx_http_stub_status_module.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28805 |0 | |10266 |Nginx: Service response time |net.tcp.service.perf[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28806 |0 | |10266 |Nginx: CPU utilization |proc.cpu.util[nginx] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28807 |0 | |10266 |Nginx: Memory usage (rss) |proc.mem[nginx,,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28808 |0 | |10266 |Nginx: Memory usage (vsize) |proc.mem[nginx,,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28809 |0 | |10266 |Nginx: Number of processes running |proc.num[nginx] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of the Nginx processes running. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28810 |0 | |10266 |Nginx: Service status |net.tcp.service[http,"{$NGINX.STUB_STATUS.HOST}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28811 |18 | |10266 |Nginx: Connections waiting |nginx.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections waiting for a request. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28812 |18 | |10266 |Nginx: Connections writing |nginx.connections.writing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is writing the response back to the client. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28813 |18 | |10266 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections including Waiting connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28814 |18 | |10266 |Nginx: Connections reading |nginx.connections.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is reading the request header. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28815 |18 | |10266 |Nginx: Connections handled per second |nginx.connections.handled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28816 |18 | |10266 |Nginx: Connections dropped per second |nginx.connections.dropped.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28817 |18 | |10266 |Nginx: Connections accepted per second |nginx.connections.accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28818 |18 | |10266 |Nginx: Requests per second |nginx.requests.total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28819 |18 | |10266 |Nginx: Requests total |nginx.requests.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28820 |18 | |10266 |Nginx: Version |nginx.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28821 |19 | |10267 |Nginx: Get stub status page |nginx.get_stub_status |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The following status information is provided:&eol;Active connections - the current number of active client connections including Waiting connections.&eol;Accepts - the total number of accepted client connections.&eol;Handled - the total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).&eol;Requests - the total number of client requests.&eol;Reading - the current number of connections where nginx is reading the request header.&eol;Writing - the current number of connections where nginx is writing the response back to the client.&eol;Waiting - the current number of idle client connections waiting for a request.&eol;https://nginx.org/en/docs/http/ngx_http_stub_status_module.html |0 |30d |0 | |NULL |3s |{$NGINX.STUB_STATUS.SCHEME}://{HOST.CONN}:{$NGINX.STUB_STATUS.PORT}/{$NGINX.STUB_STATUS.PATH} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
+ROW |28822 |3 | |10267 |Nginx: Service status |net.tcp.service[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28823 |3 | |10267 |Nginx: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28824 |18 | |10267 |Nginx: Requests total |nginx.requests.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28825 |18 | |10267 |Nginx: Requests per second |nginx.requests.total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28826 |18 | |10267 |Nginx: Connections accepted per second |nginx.connections.accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28827 |18 | |10267 |Nginx: Connections dropped per second |nginx.connections.dropped.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28828 |18 | |10267 |Nginx: Connections handled per second |nginx.connections.handled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28829 |18 | |10267 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections including Waiting connections. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28830 |18 | |10267 |Nginx: Connections reading |nginx.connections.reading |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is reading the request header. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28831 |18 | |10267 |Nginx: Connections waiting |nginx.connections.waiting |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections waiting for a request. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28832 |18 | |10267 |Nginx: Connections writing |nginx.connections.writing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections where nginx is writing the response back to the client. |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28833 |18 | |10267 |Nginx: Version |nginx.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28894 |20 |1.3.6.1.4.1.2636.3.1.13.1.8.{#SNMPINDEX} |10231 |{#SNMPVALUE}: CPU utilization |system.cpu.util[jnxOperatingCPU.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The CPU utilization in percentage of this subject. Zero if unavailable or inapplicable.&eol;Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28909 |0 | |10170 |Info: MySQL version |mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28910 |0 | |10170 |Availability: MySQL status |mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28911 |15 | |10170 |Performance: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &eol;( last(mysql.innodb_buffer_pool_read_requests) + &eol;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &eol;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28912 |15 | |10170 |Performance: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &eol;last(mysql.innodb_buffer_pool_pages_free) ) / &eol;( last(mysql.innodb_buffer_pool_pages_total) + &eol;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 *&eol;( last(mysql.innodb_buffer_pool_pages_total) > 0 ) | |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28913 |0 | |10170 |Availability: Get status variables |mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28914 |18 | |10170 |Performance: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28915 |18 | |10170 |Performance: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28916 |18 | |10170 |Performance: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28917 |18 | |10170 |Performance: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28918 |18 | |10170 |Performance: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28919 |18 | |10170 |Connections: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28920 |18 | |10170 |Throughput: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28921 |18 | |10170 |Throughput: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28922 |18 | |10170 |Performance: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28923 |18 | |10170 |Connections: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28924 |18 | |10170 |Connections: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28925 |18 | |10170 |Connections: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28926 |18 | |10170 |Connections: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28927 |18 | |10170 |Info: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28928 |18 | |10170 |Performance: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28929 |18 | |10170 |Connections: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28930 |18 | |10170 |Performance: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28931 |18 | |10170 |Connections: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28932 |18 | |10170 |Throughput: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28933 |18 | |10170 |Throughput: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28934 |18 | |10170 |Throughput: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28935 |18 | |10170 |Throughput: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28936 |18 | |10170 |Throughput: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28937 |18 | |10170 |Throughput: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28938 |18 | |10170 |Connections: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28939 |18 | |10170 |Connections: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28940 |18 | |10170 |Connections: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28941 |18 | |10170 |Connections: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28942 |18 | |10170 |Connections: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28943 |18 | |10170 |Connections: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28944 |18 | |10170 |Connections: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28945 |18 | |10170 |Performance: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28946 |18 | |10170 |Performance: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28947 |18 | |10170 |Performance: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |28913 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28948 |0 | |10170 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28949 |0 | |10170 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If 'show slave status' returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28950 |0 | |10170 |Info: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28951 |0 | |10170 |Replication: Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28952 |18 | |10170 |Replication: Seconds Behind Master {#MASTERHOST} |mysql.seconds_behind_master["{#MASTERHOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log. A high number (or an increasing one) can indicate that the slave is unable to handle events from the master in a timely fashion. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28953 |18 | |10170 |Replication: Slave IO Running {#MASTERHOST} |mysql.slave_io_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. Normally, you want this to be Yes unless you have not yet started replication or have explicitly stopped it with STOP SLAVE. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28954 |18 | |10170 |Replication: Slave SQL Running {#MASTERHOST} |mysql.slave_sql_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. As with the I/O thread, this should normally be Yes. |0 |30d |0 | |28951 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28978 |15 | |10268 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28979 |20 |1.3.6.1.4.1.2021.4.6.0 |10268 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28980 |20 |1.3.6.1.4.1.2021.4.14.0 |10268 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28981 |20 |1.3.6.1.4.1.2021.4.15.0 |10268 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28982 |20 |1.3.6.1.4.1.2021.4.5.0 |10268 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28983 |15 | |10268 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28984 |20 |1.3.6.1.4.1.2021.4.3.0 |10268 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28985 |20 |1.3.6.1.4.1.2021.4.4.0 |10268 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28986 |15 | |10268 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28987 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10270 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28988 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10270 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28989 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10270 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28990 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10270 |Number of CPUs |system.cpu.num[snmp] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;Count the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28991 |20 |1.3.6.1.4.1.2021.11.59.0 |10270 |Interrupts per second |system.cpu.intr[ssRawInterrupts.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28992 |20 |1.3.6.1.4.1.2021.11.60.0 |10270 |Context switches per second |system.cpu.switches[ssRawContexts.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29008 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10269 |Block devices discovery |vfs.dev.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29009 |18 | |10270 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |28990 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29010 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10271 |Mounted filesystem discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29014 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of read accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29015 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of write accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29016 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10269 |{#DEVNAME}: Disk utilization |vfs.dev.util[diskIOLA1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The 1 minute average load of disk (%) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29017 |20 |1.3.6.1.4.1.2021.11.53.0 |10270 |CPU idle time |system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29018 |20 |1.3.6.1.4.1.2021.11.52.0 |10270 |CPU system time |system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29019 |20 |1.3.6.1.4.1.2021.11.50.0 |10270 |CPU user time |system.cpu.user[ssCpuRawUser.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29020 |20 |1.3.6.1.4.1.2021.11.64.0 |10270 |CPU steal time |system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29021 |20 |1.3.6.1.4.1.2021.11.61.0 |10270 |CPU softirq time |system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29022 |20 |1.3.6.1.4.1.2021.11.51.0 |10270 |CPU nice time |system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29023 |20 |1.3.6.1.4.1.2021.11.54.0 |10270 |CPU iowait time |system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29024 |20 |1.3.6.1.4.1.2021.11.56.0 |10270 |CPU interrupt time |system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29025 |20 |1.3.6.1.4.1.2021.11.65.0 |10270 |CPU guest time |system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29026 |20 |1.3.6.1.4.1.2021.11.66.0 |10270 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29027 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10271 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29028 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10271 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29029 |15 | |10271 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29030 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10271 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29048 |18 | |10270 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29087 |0 | |10272 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29088 |0 | |10272 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29089 |0 | |10272 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29090 |0 | |10272 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29091 |0 | |10272 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29092 |0 | |10272 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29093 |0 | |10272 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29094 |0 | |10272 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29095 |0 | |10272 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29096 |0 | |10272 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29097 |0 | |10272 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29098 |0 | |10272 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29099 |0 | |10272 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29100 |0 | |10272 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29101 |0 | |10272 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29102 |0 | |10272 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29103 |0 | |10274 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29104 |0 | |10274 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29105 |0 | |10274 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29106 |0 | |10274 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29107 |0 | |10274 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29108 |0 | |10274 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29109 |0 | |10275 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29110 |0 | |10277 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29118 |0 | |10277 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29119 |0 | |10277 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29120 |0 | |10277 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29121 |0 | |10277 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29122 |0 | |10277 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29123 |0 | |10277 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29198 |18 | |10272 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29099 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29201 |0 | |10273 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29202 |18 | |10275 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29203 |0 | |10276 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29210 |0 | |10273 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29211 |0 | |10273 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29212 |0 | |10273 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29213 |0 | |10273 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29214 |15 | |10275 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29215 |15 | |10275 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29216 |0 | |10276 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29217 |0 | |10276 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29218 |0 | |10276 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29219 |0 | |10276 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29220 |0 | |10276 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29221 |0 | |10276 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29222 |0 | |10276 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29223 |0 | |10276 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29252 |18 | |10275 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29253 |18 | |10275 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29254 |18 | |10275 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29255 |18 | |10275 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29256 |18 | |10275 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29257 |18 | |10275 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29109 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29273 |7 | |10278 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29274 |7 | |10278 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29275 |7 | |10278 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29276 |7 | |10278 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29277 |7 | |10278 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29278 |7 | |10278 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29279 |7 | |10278 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29280 |7 | |10278 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29281 |7 | |10278 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29282 |7 | |10278 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29283 |7 | |10278 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29284 |7 | |10278 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29285 |7 | |10278 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29286 |7 | |10278 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29287 |7 | |10278 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29288 |7 | |10278 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29289 |7 | |10280 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29290 |7 | |10280 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29291 |7 | |10280 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29292 |7 | |10280 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29293 |7 | |10280 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29294 |7 | |10280 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29295 |7 | |10281 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29296 |7 | |10283 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29297 |7 | |10283 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29298 |0 | |10283 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29299 |7 | |10283 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29300 |7 | |10283 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29301 |7 | |10283 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29302 |7 | |10283 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29303 |7 | |10283 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29304 |7 | |10283 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29305 |7 | |10283 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29306 |7 | |10283 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29307 |7 | |10283 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29308 |7 | |10283 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29309 |7 | |10283 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29347 |18 | |10278 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29285 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29349 |7 | |10279 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29350 |18 | |10281 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29351 |7 | |10282 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29355 |7 | |10279 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29356 |7 | |10279 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29357 |7 | |10279 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29358 |7 | |10279 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29359 |15 | |10281 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29360 |15 | |10281 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29361 |7 | |10282 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29362 |7 | |10282 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29363 |7 | |10282 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29364 |7 | |10282 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29365 |7 | |10282 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29366 |7 | |10282 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29367 |7 | |10282 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29368 |7 | |10282 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29383 |18 | |10281 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29384 |18 | |10281 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29385 |18 | |10281 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29386 |18 | |10281 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29387 |18 | |10281 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29388 |18 | |10281 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29295 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29395 |19 | |10285 |Get node_exporter metrics |node_exporter.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |http://{HOST.CONN}:{$NODE_EXPORTER_PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29396 |15 | |10285 |Memory utilization |vm.memory.util[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[node_exporter]")-last("vm.memory.available[node_exporter]"))/last("vm.memory.total[node_exporter]")*100 | |0 | | | | |0 |NULL |Memory used percentage is calculated as (total-available)/total*100 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29397 |15 | |10285 |Free swap space in % |system.swap.pfree[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free[node_exporter]")/last("system.swap.total[node_exporter]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29398 |18 | |10285 |System local time |system.localtime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29399 |18 | |10285 |CPU steal time |system.cpu.steal[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29400 |18 | |10285 |Free swap space |system.swap.free[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29401 |18 | |10285 |Total swap space |system.swap.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29406 |18 | |10285 |Interrupts per second |system.cpu.intr[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29407 |18 | |10285 |CPU guest nice time |system.cpu.guest_nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29408 |18 | |10285 |CPU guest time |system.cpu.guest[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29409 |18 | |10285 |CPU interrupt time |system.cpu.interrupt[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29410 |18 | |10285 |CPU iowait time |system.cpu.iowait[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29411 |18 | |10285 |CPU nice time |system.cpu.nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29412 |18 | |10285 |CPU softirq time |system.cpu.softirq[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29413 |18 | |10285 |CPU user time |system.cpu.user[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29414 |18 | |10285 |System name |system.name[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29415 |18 | |10285 |Version of node_exporter running |agent.version[node_exporter] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29416 |18 | |10285 |CPU idle time |system.cpu.idle[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29417 |18 | |10285 |Number of CPUs |system.cpu.num[node_exporter] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29418 |18 | |10285 |Load average (15m avg) |system.cpu.load.avg15[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29419 |18 | |10285 |Load average (5m avg) |system.cpu.load.avg5[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29420 |18 | |10285 |Load average (1m avg) |system.cpu.load.avg1[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29421 |18 | |10285 |System uptime |system.uptime[node_exporter] |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29422 |18 | |10285 |Operating system architecture |system.sw.arch[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29423 |18 | |10285 |Number of open file descriptors |fd.open[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29424 |18 | |10285 |Maximum number of open file descriptors |kernel.maxfiles[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29425 |18 | |10285 |System description |system.descr[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Labeled system information as provided by the uname system call. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29426 |18 | |10285 |CPU system time |system.cpu.system[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29427 |18 | |10285 |CPU utilization |system.cpu.util[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29416 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29428 |18 | |10285 |Operating system |system.sw.os[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |29425 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29429 |18 | |10285 |Network interface discovery |net.if.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. Requires node_exporter v0.18 and up. |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29430 |18 | |10285 |Mounted filesystem discovery |vfs.fs.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29431 |18 | |10285 |Block devices discovery |vfs.dev.discovery[node_exporter] |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29432 |15 | |10285 |{#FSNAME}: Used space |vfs.fs.used[node_exporter,"{#FSNAME}"] |1m |7d |365d |0 |0 | |B | | |NULL |NULL |(last("vfs.fs.total[node_exporter,\"{#FSNAME}\"]")-last("vfs.fs.free[node_exporter,\"{#FSNAME}\"]")) | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29433 |15 | |10285 |{#FSNAME}: Space utilization |vfs.fs.pused[node_exporter,"{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[node_exporter,\"{#FSNAME}\"]")/last("vfs.fs.total[node_exporter,\"{#FSNAME}\"]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29434 |15 | |10285 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[node_exporter,"{#DEVNAME}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.read.time.rate[node_exporter,\"{#DEVNAME}\"]")/(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]")+(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]")=0)))*1000*(last("vfs.dev.read.rate[node_exporter,\"{#DEVNAME}\"]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29435 |15 | |10285 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[node_exporter,"{#DEVNAME}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last("vfs.dev.write.time.rate[node_exporter,\"{#DEVNAME}\"]")/(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]")+(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]")=0)))*1000*(last("vfs.dev.write.rate[node_exporter,\"{#DEVNAME}\"]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29436 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29437 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29438 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[node_exporter"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29439 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29440 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29441 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29442 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Sets value to 0 if metric is missing in node_exporter output. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29443 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |node_network_protocol_type protocol_type value of /sys/class/net/<iface>. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29444 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[node_exporter,"{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29445 |18 | |10285 |{#FSNAME}: Free space |vfs.fs.free[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29446 |18 | |10285 |{#FSNAME}: Total space |vfs.fs.total[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29447 |18 | |10285 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29448 |18 | |10285 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29449 |18 | |10285 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29450 |18 | |10285 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29451 |18 | |10285 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29452 |18 | |10285 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29453 |18 | |10285 |{#DEVNAME}: Disk utilization |vfs.dev.util[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29454 |0 | |10286 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29455 |0 | |10286 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |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%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29456 |0 | |10286 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29457 |0 | |10286 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29458 |0 | |10286 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29459 |0 | |10286 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29460 |0 | |10287 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29461 |0 | |10287 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29462 |15 | |10287 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29463 |0 | |10287 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29464 |0 | |10287 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29465 |0 | |10287 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29466 |0 | |10287 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29467 |0 | |10287 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29468 |0 | |10287 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29469 |0 | |10287 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29470 |0 | |10287 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29471 |0 | |10289 |Physical disks WMI get |wmi.getall[root\cimv2,"select * from win32_perfformatteddata_perfdisk_physicaldisk"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_perfformatteddata_perfdisk_physicaldisk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29472 |0 | |10290 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29473 |0 | |10290 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29474 |0 | |10290 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29475 |0 | |10290 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29479 |0 | |10291 |Network interfaces WMI get |wmi.getall[root\cimv2,"select * from win32_networkadapter where PhysicalAdapter=True"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29506 |0 | |10288 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29507 |18 | |10289 |Physical disks discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29508 |18 | |10291 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |29479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29512 |0 | |10288 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29513 |0 | |10288 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29514 |0 | |10288 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29515 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29516 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29517 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29518 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29519 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29520 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29530 |18 | |10289 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[DiskReadsPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29531 |18 | |10289 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[DiskWritesPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29532 |18 | |10289 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[CurrentDiskQueueLength.{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29533 |18 | |10289 |{#DEVNAME}: Disk utilization |vfs.dev.util[PercentDiskTime.{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29471 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29534 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |29479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29535 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |29479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29536 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |29479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29544 |5 | |10050 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29545 |7 | |10292 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29546 |7 | |10292 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29547 |7 | |10292 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29561 |7 | |10293 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29562 |7 | |10293 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |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%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29563 |7 | |10293 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29564 |7 | |10293 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29565 |7 | |10293 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29566 |7 | |10293 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29567 |7 | |10294 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29568 |7 | |10294 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29569 |15 | |10294 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29570 |7 | |10294 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29571 |7 | |10294 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29572 |7 | |10294 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29573 |7 | |10294 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29574 |7 | |10294 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29575 |7 | |10294 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29576 |7 | |10294 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29577 |7 | |10294 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29578 |7 | |10296 |Physical disks WMI get |wmi.getall[root\cimv2,"select * from win32_perfformatteddata_perfdisk_physicaldisk"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_perfformatteddata_perfdisk_physicaldisk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29579 |7 | |10297 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29580 |0 | |10297 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29581 |7 | |10297 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29582 |7 | |10297 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29583 |7 | |10297 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29584 |7 | |10297 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29585 |7 | |10297 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29586 |7 | |10298 |Network interfaces WMI get |wmi.getall[root\cimv2,"select * from win32_networkadapter where PhysicalAdapter=True"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29613 |7 | |10295 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29614 |18 | |10296 |Physical disks discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29615 |18 | |10298 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |29586 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29619 |7 | |10295 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29620 |7 | |10295 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29621 |7 | |10295 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29622 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29623 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29624 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29625 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29626 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29627 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29637 |18 | |10296 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[DiskReadsPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29638 |18 | |10296 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[DiskWritesPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29639 |18 | |10296 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[CurrentDiskQueueLength.{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29640 |18 | |10296 |{#DEVNAME}: Disk utilization |vfs.dev.util[PercentDiskTime.{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29578 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29641 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |29586 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29642 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |29586 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29643 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |29586 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29653 |0 | |10301 |RabbitMQ: Get node overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29654 |0 | |10301 |RabbitMQ: Get nodes |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"]|1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29655 |0 | |10301 |RabbitMQ: Service ping |net.tcp.service[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29656 |0 | |10301 |RabbitMQ: CPU utilization |proc.cpu.util["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29657 |0 | |10301 |RabbitMQ: Memory usage (vsize) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29658 |0 | |10301 |RabbitMQ: Memory usage (rss) |proc.mem["{$RABBITMQ.PROCESS_NAME}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29659 |0 | |10301 |RabbitMQ: Number of processes running |proc.num["{$RABBITMQ.PROCESS_NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29660 |0 | |10301 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{$RABBITMQ.API.HOST}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29661 |0 | |10301 |RabbitMQ: Get queues |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29662 |0 | |10301 |RabbitMQ: Healthcheck |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node"] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |0 | | | | |0 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29687 |18 | |10301 |RabbitMQ: Memory used |rabbitmq.node.mem_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29688 |18 | |10301 |RabbitMQ: Disk free alarm |rabbitmq.node.disk_free_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the node have disk alarm |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29691 |18 | |10301 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29692 |18 | |10301 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29693 |18 | |10301 |RabbitMQ: Memory alarm |rabbitmq.node.mem_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the host has memory alarm |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29694 |18 | |10301 |RabbitMQ: Memory limit |rabbitmq.node.mem_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory usage high watermark in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29695 |18 | |10301 |RabbitMQ: Is running |rabbitmq.node.running |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Is the node running or not |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29696 |18 | |10301 |RabbitMQ: Number of network partitions |rabbitmq.node.partitions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of network partitions this node is seeing |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29697 |18 | |10301 |RabbitMQ: Sockets available |rabbitmq.node.sockets_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |File descriptors available for use as sockets |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29698 |18 | |10301 |RabbitMQ: Free disk space |rabbitmq.node.disk_free |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current free disk space |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29699 |18 | |10301 |RabbitMQ: Runtime run queue |rabbitmq.node.run_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average number of Erlang processes waiting to run |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29700 |18 | |10301 |RabbitMQ: Disk free limit |rabbitmq.node.disk_free_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Disk free space limit in bytes |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29701 |18 | |10301 |RabbitMQ: Sockets used |rabbitmq.node.sockets_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors used as sockets |0 |30d |0 | |29654 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29703 |18 | |10301 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29720 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages |rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the total messages in the queue |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29721 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29722 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered |rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29723 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published per second |rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of messages published |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29724 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published |rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29725 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29726 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29727 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29728 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged per second |rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients and acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29729 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count per second of the total messages in the queue |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29730 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged |rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29731 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged per second |rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29732 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged |rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29733 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready per second |rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages ready to be delivered to clients |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29734 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready |rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages ready to be delivered to clients |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29735 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Memory |rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29736 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Consumers |rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of consumers |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29737 |18 | |10301 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered per second |rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29661 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29738 |19 | |10302 |RabbitMQ: Get overview |rabbitmq.get_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29739 |19 | |10302 |RabbitMQ: Get exchanges |rabbitmq.get_exchanges |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/exchanges | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29741 |19 | |10303 |RabbitMQ: Get nodes |rabbitmq.get_nodes |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true| | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29742 |3 | |10303 |RabbitMQ: Service ping |net.tcp.service[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29743 |3 | |10303 |RabbitMQ: Service response time |net.tcp.service.perf[http,"{HOST.CONN}","{$RABBITMQ.API.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29744 |19 | |10303 |RabbitMQ: Healthcheck |rabbitmq.healthcheck |1m |7h |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |Runs basic healthchecks in the current node. Checks that the rabbit application is running, channels and queues can be listed successfully, and that no alarms are in effect. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/healthchecks/node | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29745 |19 | |10303 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29746 |18 | |10302 |RabbitMQ: Messages returned redeliver |rabbitmq.overview.messages.redeliver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29747 |18 | |10302 |RabbitMQ: Messages returned unroutable per second |rabbitmq.overview.messages.return_unroutable.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29748 |18 | |10302 |RabbitMQ: Messages returned unroutable |rabbitmq.overview.messages.return_unroutable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29749 |18 | |10302 |RabbitMQ: Messages publish_out per second |rabbitmq.overview.messages.publish_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29750 |18 | |10302 |RabbitMQ: Messages publish_out |rabbitmq.overview.messages.publish_out |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29751 |18 | |10302 |RabbitMQ: Messages publish_in per second |rabbitmq.overview.messages.publish_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29752 |18 | |10302 |RabbitMQ: Messages publish_in |rabbitmq.overview.messages.publish_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29753 |18 | |10302 |RabbitMQ: Messages published per second |rabbitmq.overview.messages.publish.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29754 |18 | |10302 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29755 |18 | |10302 |RabbitMQ: Messages delivered per second |rabbitmq.overview.messages.deliver_get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29756 |18 | |10302 |RabbitMQ: Messages delivered |rabbitmq.overview.messages.deliver_get |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29757 |18 | |10302 |RabbitMQ: Messages confirmed per second |rabbitmq.overview.messages.confirm.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29758 |18 | |10302 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29759 |18 | |10302 |RabbitMQ: Messages acknowledged per second |rabbitmq.overview.messages.ack.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29760 |18 | |10302 |RabbitMQ: Messages acknowledged |rabbitmq.overview.messages.ack |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29761 |18 | |10302 |RabbitMQ: Messages unacknowledged |rabbitmq.overview.queue_totals.messages.unacknowledged |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unacknowledged messages |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29762 |18 | |10302 |RabbitMQ: Messages ready for delivery |rabbitmq.overview.queue_totals.messages.ready |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages ready for deliver |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29763 |18 | |10302 |RabbitMQ: Messages total |rabbitmq.overview.queue_totals.messages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of messages (ready plus unacknowledged) |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29764 |18 | |10302 |RabbitMQ: Exchanges total |rabbitmq.overview.object_totals.exchanges |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of exchanges |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29765 |18 | |10302 |RabbitMQ: Consumers total |rabbitmq.overview.object_totals.consumers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of consumers |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29766 |18 | |10302 |RabbitMQ: Queues total |rabbitmq.overview.object_totals.queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of queues |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29767 |18 | |10302 |RabbitMQ: Channels total |rabbitmq.overview.object_totals.channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of channels |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29768 |18 | |10302 |RabbitMQ: Connections total |rabbitmq.overview.object_totals.connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29769 |18 | |10302 |RabbitMQ: Messages returned redeliver per second |rabbitmq.overview.messages.redeliver.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29738 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29771 |18 | |10303 |RabbitMQ: Number of network partitions |rabbitmq.node.partitions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of network partitions this node is seeing |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29772 |18 | |10303 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29773 |18 | |10303 |RabbitMQ: Disk free alarm |rabbitmq.node.disk_free_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the node have disk alarm |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29774 |18 | |10303 |RabbitMQ: Memory alarm |rabbitmq.node.mem_alarm |0 |7d |365d |0 |3 | | | | |NULL |83 | | |0 | | | | |0 |NULL |Does the host has memory alarm |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29775 |18 | |10303 |RabbitMQ: Is running |rabbitmq.node.running |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Is the node running or not |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29776 |18 | |10303 |RabbitMQ: Sockets used |rabbitmq.node.sockets_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors used as sockets |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29777 |18 | |10303 |RabbitMQ: Sockets available |rabbitmq.node.sockets_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |File descriptors available for use as sockets |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29779 |18 | |10303 |RabbitMQ: Runtime run queue |rabbitmq.node.run_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average number of Erlang processes waiting to run |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29780 |18 | |10303 |RabbitMQ: Memory used |rabbitmq.node.mem_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29781 |18 | |10303 |RabbitMQ: Disk free limit |rabbitmq.node.disk_free_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Disk free space limit in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29782 |18 | |10303 |RabbitMQ: Free disk space |rabbitmq.node.disk_free |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current free disk space |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29783 |18 | |10303 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29784 |18 | |10303 |RabbitMQ: Memory limit |rabbitmq.node.mem_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory usage high watermark in bytes |0 |30d |0 | |29741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29785 |18 | |10302 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29786 |18 | |10303 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29787 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged |rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29788 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged per second |rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29789 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed |rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages confirmed |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29790 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed per second |rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29791 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered |rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29792 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered per second |rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29793 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published |rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29794 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published per second |rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29795 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in |rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29796 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in per second |rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29797 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out |rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29798 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out per second |rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29799 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable |rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29800 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable per second|rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29801 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered |rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29802 |18 | |10302 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second |rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29739 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29803 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages |rabbitmq.queue.messages["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the total messages in the queue |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29804 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29805 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered |rabbitmq.queue.messages.redeliver["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29806 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published per second |rabbitmq.queue.messages.publish.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of messages published |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29807 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages published |rabbitmq.queue.messages.publish["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29808 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver_get.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29809 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered |rabbitmq.queue.messages.deliver_get["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29810 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages delivered per second |rabbitmq.queue.messages.deliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages delivered in acknowledgement mode to consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29811 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged per second |rabbitmq.queue.messages.ack.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients and acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29812 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |rabbitmq.queue.messages.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count per second of the total messages in the queue |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29813 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages acknowledged |rabbitmq.queue.messages.ack["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29814 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged per second |rabbitmq.queue.messages_unacknowledged.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29815 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages unacknowledged |rabbitmq.queue.messages_unacknowledged["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients but not yet acknowledged |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29816 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready per second |rabbitmq.queue.messages_ready.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number per second of messages ready to be delivered to clients |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29817 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages ready |rabbitmq.queue.messages_ready["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages ready to be delivered to clients |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29818 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Memory |rabbitmq.queue.memory["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes of memory consumed by the Erlang process associated with the queue, including stack, heap and internal structures |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29819 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Consumers |rabbitmq.queue.consumers["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of consumers |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29820 |18 | |10303 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages redelivered per second |rabbitmq.queue.messages.redeliver.rate["{#VHOST}/{#QUEUE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29745 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29821 |18 | |10261 |Utilization of alert syncer internal processes, in % |process.alert_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29822 |5 | |10047 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29824 |20 |1.3.6.1.2.1.1.3.0 |10203 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29825 |20 |1.3.6.1.2.1.1.6.0 |10203 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29826 |20 |1.3.6.1.2.1.1.4.0 |10203 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29827 |20 |1.3.6.1.2.1.1.2.0 |10203 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29828 |20 |1.3.6.1.2.1.1.1.0 |10203 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |30s |2w |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;The overall condition. This object represents the overall status of the server information represented by this MIB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29998 |0 | |10300 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29999 |0 | |10300 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30000 |18 | |10300 |RabbitMQ: Messages returned redeliver |rabbitmq.overview.messages.redeliver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30001 |18 | |10300 |RabbitMQ: Messages returned unroutable per second |rabbitmq.overview.messages.return_unroutable.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30002 |18 | |10300 |RabbitMQ: Messages returned unroutable |rabbitmq.overview.messages.return_unroutable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30003 |18 | |10300 |RabbitMQ: Messages publish_out per second |rabbitmq.overview.messages.publish_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30004 |18 | |10300 |RabbitMQ: Messages publish_out |rabbitmq.overview.messages.publish_out |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30005 |18 | |10300 |RabbitMQ: Messages publish_in per second |rabbitmq.overview.messages.publish_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30006 |18 | |10300 |RabbitMQ: Messages publish_in |rabbitmq.overview.messages.publish_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30007 |18 | |10300 |RabbitMQ: Messages published per second |rabbitmq.overview.messages.publish.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages published per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30008 |18 | |10300 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30009 |18 | |10300 |RabbitMQ: Messages delivered per second |rabbitmq.overview.messages.deliver_get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30010 |18 | |10300 |RabbitMQ: Messages delivered |rabbitmq.overview.messages.deliver_get |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30011 |18 | |10300 |RabbitMQ: Messages confirmed per second |rabbitmq.overview.messages.confirm.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30012 |18 | |10300 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30013 |18 | |10300 |RabbitMQ: Messages acknowledged per second |rabbitmq.overview.messages.ack.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30014 |18 | |10300 |RabbitMQ: Messages acknowledged |rabbitmq.overview.messages.ack |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30015 |18 | |10300 |RabbitMQ: Messages unacknowledged |rabbitmq.overview.queue_totals.messages.unacknowledged |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unacknowledged messages |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30016 |18 | |10300 |RabbitMQ: Messages ready for delivery |rabbitmq.overview.queue_totals.messages.ready |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of messages ready for deliver |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30017 |18 | |10300 |RabbitMQ: Messages total |rabbitmq.overview.queue_totals.messages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of messages (ready plus unacknowledged) |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30018 |18 | |10300 |RabbitMQ: Exchanges total |rabbitmq.overview.object_totals.exchanges |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of exchanges |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30019 |18 | |10300 |RabbitMQ: Consumers total |rabbitmq.overview.object_totals.consumers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of consumers |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30020 |18 | |10300 |RabbitMQ: Queues total |rabbitmq.overview.object_totals.queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of queues |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30021 |18 | |10300 |RabbitMQ: Channels total |rabbitmq.overview.object_totals.channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of channels |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30022 |18 | |10300 |RabbitMQ: Connections total |rabbitmq.overview.object_totals.connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30023 |18 | |10300 |RabbitMQ: Messages returned redeliver per second |rabbitmq.overview.messages.redeliver.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29998 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30024 |18 | |10301 |RabbitMQ: Management plugin version |rabbitmq.node.overview.management_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the management plugin in use |0 |30d |0 | |29653 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30025 |18 | |10301 |RabbitMQ: RabbitMQ version |rabbitmq.node.overview.rabbitmq_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of RabbitMQ on the node which processed this request |0 |30d |0 | |29653 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30026 |18 | |10300 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30027 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged |rabbitmq.exchange.messages.ack["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of messages delivered to clients and acknowledged |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30028 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages acknowledged per second |rabbitmq.exchange.messages.ack.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages delivered to clients and acknowledged per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30029 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed |rabbitmq.exchange.messages.confirm["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages confirmed |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30030 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages confirmed per second |rabbitmq.exchange.messages.confirm.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages confirmed per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30031 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered |rabbitmq.exchange.messages.deliver_get["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30032 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages delivered per second |rabbitmq.exchange.messages.deliver_get.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate per second of the sum of messages delivered in acknowledgement mode to consumers, in no-acknowledgement mode to consumers, in acknowledgement mode in response to basic.get, and in no-acknowledgement mode in response to basic.get |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30033 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published |rabbitmq.exchange.messages.publish["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30034 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages published per second |rabbitmq.exchange.messages.publish.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30035 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in |rabbitmq.exchange.messages.publish_in["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from channels into this overview |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30036 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_in per second |rabbitmq.exchange.messages.publish_in.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from channels into this overview per sec |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30037 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out |rabbitmq.exchange.messages.publish_out["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages published from this overview into queues |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30038 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages publish_out per second |rabbitmq.exchange.messages.publish_out.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages published from this overview into queues per second,0,rabbitmq,total msgs pub out rate |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30039 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable |rabbitmq.exchange.messages.return_unroutable["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of messages returned to publisher as unroutable |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30040 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages returned unroutable per second|rabbitmq.exchange.messages.return_unroutable.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of messages returned to publisher as unroutable per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30041 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered |rabbitmq.exchange.messages.redeliver["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of subset of messages in deliver_get which had the redelivered flag set |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30042 |18 | |10300 |RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second |rabbitmq.exchange.messages.redeliver.rate["{#VHOST}/{#EXCHANGE}/{#TYPE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of subset of messages in deliver_get which had the redelivered flag set per second |0 |30d |0 | |29999 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30043 |19 | |10303 |RabbitMQ: Get node overview |rabbitmq.get_node_overview |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/overview | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30044 |18 | |10303 |RabbitMQ: Management plugin version |rabbitmq.node.overview.management_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the management plugin in use |0 |30d |0 | |30043 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30045 |18 | |10303 |RabbitMQ: RabbitMQ version |rabbitmq.node.overview.rabbitmq_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of RabbitMQ on the node which processed this request |0 |30d |0 | |30043 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30057 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2] |10304 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30058 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2] |10304 |Temperature CPU Discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30059 |20 |discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2] |10304 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30060 |20 |discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2] |10304 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30061 |20 |discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2] |10304 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30062 |20 |discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2] |10304 |Physical Disk Discovery |physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30063 |20 |discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2] |10304 |Virtual Disk Discovery |virtualdisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalLunTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30064 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10304 |Array Controller Discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30065 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10304 |Array Controller Cache Discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30066 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Ambient: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Temperature readings of testpoint: {#SENSOR_LOCATION}.Ambient |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30067 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Front: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:frontTemp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30068 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.Rear: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:rearTemp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30069 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}.IOH: Temperature |sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30070 |20 |1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX} |10304 |{#SENSOR_LOCATION}: Temperature |sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;Cisco UCS processor:EnvStats:temperature managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30071 |20 |1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX} |10304 |{#PSU_LOCATION}: Power supply status |sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;Cisco UCS equipment:Psu:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30072 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Overall system health status |system.status[cucsComputeRackUnitOperState.{#SNMPINDEX}] |30s |2w |0d |0 |3 | | | | |NULL |85 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30073 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Hardware model name |system.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:model managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30074 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX} |10304 |{#UNIT_LOCATION}: Hardware serial number |system.hw.serialnumber[cucsComputeRackUnitSerial.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;Cisco UCS compute:RackUnit:serial managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30075 |20 |1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX} |10304 |{#FAN_LOCATION}: Fan status |sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;Cisco UCS equipment:Fan:operState managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30076 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk status |system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}] |3m |90d |0d |0 |3 | | | | |NULL |86 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:diskState managed object property. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30077 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk model name |system.hw.physicaldisk.model[cucsStorageLocalDiskSerial.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30078 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Physical disk media type |system.hw.physicaldisk.media_type[cucsStorageLocalDiskModel.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:model managed object property. Actually returns 'HDD' or 'SSD' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30079 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX} |10304 |{#DISK_LOCATION}: Disk size |system.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:size managed object property. In MB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30080 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Status |system.hw.virtualdisk.status[cucsStorageLocalLunPresence.{#SNMPINDEX}] |3m |2w |365d |0 |3 | | | | |NULL |88 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:presence managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30081 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Layout type |system.hw.virtualdisk.layout[cucsStorageLocalLunType.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |87 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:type managed object property |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30082 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX} |10304 |{#VDISK_LOCATION}: Disk size |system.hw.virtualdisk.size[cucsStorageLocalLunSize.{#SNMPINDEX}] |1h |2w |0d |0 |3 | |B | | |NULL |87 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalLun:size managed object property in MB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30083 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX} |10304 |{#DISKARRAY_LOCATION}: Disk array controller status |system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30084 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX} |10304 |{#DISKARRAY_LOCATION}: Disk array controller model |system.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30085 |20 |1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX} |10304 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30086 |20 |1.3.6.1.2.1.1.1.0 |10207 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30087 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.10.0 |10207 |Available memory |vm.memory.available[sgiKbMemoryAvailable.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryAvailable indicates the amount of free memory, in kilobytes, in the overall system that is not allocated to memory pools, but is available in case a memory pool needs to grow. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30088 |15 | |10207 |Total memory |vm.memory.total[snmp] |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.available[sgiKbMemoryAvailable.0]")+last("vm.memory.used[sgiKbMemoryUsed.0]") | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30089 |15 | |10207 |Memory utilization |vm.memory.util[vm.memory.util.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[sgiKbMemoryUsed.0]")/(last("vm.memory.available[sgiKbMemoryAvailable.0]")+last("vm.memory.used[sgiKbMemoryUsed.0]"))*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30090 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6] |10207 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30091 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.5.1.6.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Power supply status |sensor.psu.status[tmnxChassisPowerSupply1Status.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The overall status of an equipped power supply. &eol;For AC multiple powersupplies, this represents the overall status of the first power supplyin the tray (or shelf).&eol;For any other type, this represents the overall status of the power supply.&eol;If tmnxChassisPowerSupply1Status is'deviceStateOk', then all monitored statuses are 'deviceStateOk'.&eol;A value of 'deviceStateFailed' represents a condition where at least one monitored status is in a failed state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30092 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.5.1.7.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Power supply status |sensor.psu.status[tmnxChassisPowerSupply2Status.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The overall status of an equipped power supply.&eol;For AC multiple powersupplies, this represents the overall status of the second power supplyin the tray (or shelf).&eol;For any other type, this field is unused and set to 'deviceNotEquipped'.&eol;If tmnxChassisPowerSupply2Status is 'deviceStateOk', then all monitored statuses are 'deviceStateOk'.&eol;A value of 'deviceStateFailed' represents a condition where at least one monitored status is in a failed state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30093 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.6.0 |10208 |Memory utilization |vm.memory.util[swMemUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30094 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10209 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30097 |20 |1.3.6.1.2.1.1.1.0 |10216 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30101 |15 | |10212 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30105 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.5.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: Memory utilization |vm.memory.util[chStackUnitMemUsageUtil.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Total memory usage in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30106 |20 |1.3.6.1.4.1.171.10.97.2.1.1.2.0 |10222 |Operating system |system.sw.os[mySystemSwVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-SYSTEM-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30107 |20 |1.3.6.1.4.1.171.10.97.2.35.1.1.1.3.{#SNMPINDEX} |10222 |{#SNMPINDEX}: Memory utilization |vm.memory.util[myMemoryPoolCurrentUtilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-MEMORY-MIB&eol;This is the memory pool utilization currently. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30108 |20 |1.3.6.1.4.1.171.12.1.1.9.1.4.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[agentDRAMutilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: DLINK-AGENT-MIB&eol;The percentage of used DRAM memory of the total DRAM memory available.The value will be between 0%(idle) and 100%(very busy) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30109 |20 |1.3.6.1.4.1.1916.1.1.1.13.0 |10224 |Operating system |system.sw.os[extremePrimarySoftwareRev.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The software revision of the primary image stored in this device.&eol;This string will have a zero length if the revision is unknown, invalid or not present.&eol;This will also be reported in RMON2 probeSoftwareRev if this is the software image currently running in the device. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30110 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.3.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Available memory |vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of free memory in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30111 |15 | |10224 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPVALUE}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]") - last("vm.memory.available[extremeMemoryMonitorSystemFree.{#SNMPINDEX}]")) / last("vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}]") * 100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30112 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.8.{#SNMPINDEX} |10227 |{#MODULE_NAME}: Memory utilization |vm.memory.util[hh3cEntityExtMemUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The memory usage for the entity. This object indicates what&eol;percent of memory are used. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30113 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.6.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Available memory |vm.memory.available[hpLocalMemFreeBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of available (unallocated) bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30114 |20 |1.3.6.1.4.1.11.2.14.11.5.1.1.2.1.1.1.5.{#SNMPINDEX} |10250 |#{#SNMPVALUE}: Total memory |vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: NETSWITCH-MIB&eol;The number of currently installed bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30115 |15 | |10250 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[snmp.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hpLocalMemAllocBytes.{#SNMPINDEX}]")/last("vm.memory.total[hpLocalMemTotalBytes.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30116 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7.{#SNMPINDEX} |10229 |{#ENT_NAME}: Memory utilization |vm.memory.util[hwEntityMemUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The memory usage for the entity. This object indicates what percent of memory are used.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30117 |20 |1.3.6.1.2.1.1.1.0 |10231 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30118 |20 |1.3.6.1.4.1.2636.3.1.13.1.11.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Memory utilization |vm.memory.util[jnxOperatingBuffer.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The buffer pool utilization in percentage of this subject. Zero if unavailable or inapplicable.&eol;Reference: http://kb.juniper.net/library/CUSTOMERSERVICE/GLOBAL_JTAC/BK26199/SRX%20SNMP%20Monitoring%20Guide_v1.1.pdf |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30119 |20 |1.3.6.1.4.1.14988.1.1.4.4.0 |10233 |Operating system |system.sw.os[mtxrLicVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Software version |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30120 |15 | |10233 |Memory utilization |vm.memory.util[memoryUsedPercentage.Memory] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.Memory]")/last("vm.memory.total[hrStorageSize.Memory]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30121 |20 |1.3.6.1.4.1.4526.10.1.1.1.10.0 |10234 |Operating system |system.sw.os[agentInventoryOperatingSystem.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;Operating System running on this unit |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30122 |20 |1.3.6.1.4.1.4526.10.1.1.5.1.0 |10234 |Available memory |vm.memory.available[agentSwitchCpuProcessMemFree.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FASTPATH-SWITCHING-MIB&eol;The total memory freed for utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30123 |15 | |10234 |Memory utilization |vm.memory.util[memoryUsedPercentage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[agentSwitchCpuProcessMemAvailable.0]")-last("vm.memory.available[agentSwitchCpuProcessMemFree.0]"))/last("vm.memory.total[agentSwitchCpuProcessMemAvailable.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30124 |20 |1.3.6.1.4.1.27514.100.1.11.9.0 |10235 |Temperature |sensor.temp.value[switchTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB&eol;Temperature readings of testpoint: __RESOURCE__ |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30125 |20 |1.3.6.1.4.1.27514.100.1.3.0 |10235 |Operating system |system.sw.os[sysSoftwareVersion.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: QTECH-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30126 |15 | |10235 |Memory utilization |vm.memory.util[vm.memory.util.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[switchMemoryBusy.0]")/last("vm.memory.total[switchMemorySize.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30127 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.12.1.3] |10235 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30128 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.27514.100.1.7.1.5] |10235 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30129 |20 |1.3.6.1.4.1.27514.100.1.12.1.3.{#SNMPINDEX} |10235 |{#SNMPINDEX}: Fan status |sensor.fan.status[sysFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |52 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30130 |20 |1.3.6.1.4.1.27514.100.1.7.1.5.{#SNMPINDEX} |10235 |{#SNMPINDEX}: Power supply status |sensor.psu.status[sysPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |53 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30131 |20 |1.3.6.1.4.1.11863.6.4.1.2.1.1.2.{#SNMPINDEX} |10236 |#{#SNMPVALUE}: Memory utilization |vm.memory.util[tpSysMonitorMemoryUtilization.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TPLINK-SYSMONITOR-MIB&eol;Displays the memory utilization.&eol;Reference: http://www.tp-link.com/faq-1330.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30132 |20 |1.3.6.1.4.1.10002.1.1.1.1.3.0 |10237 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30133 |20 |1.3.6.1.4.1.10002.1.1.1.1.4.0 |10237 |Memory (cached) |vm.memory.cached[memCache.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30134 |20 |1.3.6.1.4.1.10002.1.1.1.1.2.0 |10237 |Free memory |vm.memory.free[memFree.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30135 |20 |1.3.6.1.4.1.10002.1.1.1.1.1.0 |10237 |Total memory |vm.memory.total[memTotal.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FROGFOOT-RESOURCES-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30136 |15 | |10237 |Memory utilization |vm.memory.util[memoryUsedPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[memTotal.0]")-(last("vm.memory.free[memFree.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCache.0]")))/last("vm.memory.total[memTotal.0]")*100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30137 |0 | |10286 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30139 |7 | |10293 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30141 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10255 |Operating system |system.sw.os[systemOSName] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the name of the operating system that the hostis running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30142 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10305 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30147 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10306 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30148 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10307 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30157 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10306 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30158 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10306 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30159 |15 | |10306 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30160 |15 | |10307 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30161 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10307 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30162 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10307 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30187 |0 | |10308 |HAProxy: Service response time |net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30188 |0 | |10308 |HAProxy: Service status |net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30189 |0 | |10308 |HAProxy: Get stats |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30190 |0 | |10308 |HAProxy: Get stats page |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30191 |18 | |10308 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30190 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30192 |18 | |10308 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30190 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30193 |18 | |10308 |BACKEND discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30194 |18 | |10308 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30195 |18 | |10308 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30196 |15 | |10308 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30197 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30198 |18 | |10308 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30199 |18 | |10308 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30200 |18 | |10308 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30201 |18 | |10308 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30202 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30203 |18 | |10308 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30204 |18 | |10308 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30205 |18 | |10308 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30206 |18 | |10308 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30207 |18 | |10308 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30208 |18 | |10308 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30209 |18 | |10308 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30210 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30211 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30212 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30213 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30214 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30215 |18 | |10308 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30216 |18 | |10308 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30217 |18 | |10308 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30218 |18 | |10308 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30219 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30220 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30221 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30222 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30223 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30224 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30225 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30226 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30227 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30228 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30229 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30230 |19 | |10309 |HAProxy: Get stats |haproxy.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30231 |19 | |10309 |HAProxy: Get stats page |haproxy.get_html |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH} | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30234 |18 | |10309 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30235 |18 | |10309 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30236 |18 | |10309 |BACKEND discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30237 |18 | |10309 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30238 |18 | |10309 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30239 |15 | |10309 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30240 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30241 |18 | |10309 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30242 |18 | |10309 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30243 |18 | |10309 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30244 |18 | |10309 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30245 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30246 |18 | |10309 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30247 |18 | |10309 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30248 |18 | |10309 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30249 |18 | |10309 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30250 |18 | |10309 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30251 |18 | |10309 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30252 |18 | |10309 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30253 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30254 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30255 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30256 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30257 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30258 |18 | |10309 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30259 |18 | |10309 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30260 |18 | |10309 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30261 |18 | |10309 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30262 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30263 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30264 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30265 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30266 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30267 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30268 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30269 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30270 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30271 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30272 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30273 |0 | |10310 |Redis: Ping |redis.ping["{$REDIS.CONN.URI}"] |1m |7h |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30274 |0 | |10310 |Redis: Slowlog entries per second |redis.slowlog.count["{$REDIS.CONN.URI}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30275 |0 | |10310 |Redis: Get config |redis.config["{$REDIS.CONN.URI}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30276 |0 | |10310 |Redis: Get info |redis.info["{$REDIS.CONN.URI}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30277 |18 | |10310 |Redis: Blocked clients |redis.clients.blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections waiting on a blocking call |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30278 |18 | |10310 |Redis: TCP port |redis.server.tcp_port |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |TCP/IP listen port |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30279 |18 | |10310 |Redis: Expired keys |redis.stats.expired_keys |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of key expiration events |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30280 |18 | |10310 |Redis: Evicted keys |redis.stats.evicted_keys |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of evicted keys due to maxmemory limit |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30281 |18 | |10310 |Redis: Uptime |redis.server.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Redis server start |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30282 |18 | |10310 |Redis: Redis mode |redis.server.redis_mode |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The server's mode ("standalone", "sentinel" or "cluster") |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30283 |18 | |10310 |Redis: Redis version |redis.server.redis_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30284 |18 | |10310 |Redis: Instantaneous operations per sec |redis.stats.instantaneous_ops.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of commands processed per second |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30285 |18 | |10310 |Redis: Process id |redis.server.process_id |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PID of the server process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30286 |18 | |10310 |Redis: Replication role |redis.replication.role |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Value is "master" if the instance is replica of no one, or "slave" if the instance is a replica of some master instance. Note that a replica can be master of another replica (chained replication). |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30287 |18 | |10310 |Redis: Replication backlog size |redis.replication.repl_backlog_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size in bytes of the replication backlog buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30288 |18 | |10310 |Redis: Replication backlog history length |redis.replication.repl_backlog_histlen |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of data in the backlog sync buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30289 |18 | |10310 |Redis: Instantaneous input bytes per second |redis.stats.instantaneous_input.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in KB/sec |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30290 |18 | |10310 |Redis: Keyspace hits |redis.stats.keyspace_hits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of successful lookup of keys in the main dictionary |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30291 |18 | |10310 |Redis: Instantaneous output bytes per second |redis.stats.instantaneous_output.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's write rate per second in KB/sec |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30292 |18 | |10310 |Redis: Replication backlog active |redis.replication.repl_backlog_active |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating replication backlog is active |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30293 |18 | |10310 |Redis: Keyspace misses |redis.stats.keyspace_misses |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed lookup of keys in the main dictionary |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30294 |18 | |10310 |Redis: Latest fork usec |redis.stats.latest_fork_usec |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Duration of the latest fork operation in microseconds |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30295 |18 | |10310 |Redis: Migrate cached sockets |redis.stats.migrate_cached_sockets |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sockets open for MIGRATE purposes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30296 |18 | |10310 |Redis: Pubsub channels |redis.stats.pubsub_channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Global number of pub/sub channels with client subscriptions |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30297 |18 | |10310 |Redis: Pubsub patterns |redis.stats.pubsub_patterns |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Global number of pub/sub pattern with client subscriptions |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30298 |18 | |10310 |Redis: Rejected connections |redis.stats.rejected_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections rejected because of maxclients limit |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30299 |18 | |10310 |Redis: Sync full |redis.stats.sync_full |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of full resyncs with replicas |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30300 |18 | |10310 |Redis: Sync partial err |redis.stats.sync_partial_err |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of denied partial resync requests |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30301 |18 | |10310 |Redis: Sync partial ok |redis.stats.sync_partial_ok |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of accepted partial resync requests |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30302 |18 | |10310 |Redis: Total commands processed |redis.stats.total_commands_processed |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of commands processed by the server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30303 |18 | |10310 |Redis: Total connections received |redis.stats.total_connections_received |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections accepted by the server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30304 |18 | |10310 |Redis: Total net input bytes |redis.stats.total_net_input_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes read from the network |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30305 |18 | |10310 |Redis: Replication backlog first byte offset |redis.replication.repl_backlog_first_byte_offset |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The master offset of the replication backlog buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30306 |18 | |10310 |Redis: Connected slaves |redis.replication.connected_slaves |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected slaves |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30307 |18 | |10310 |Redis: Master replication offset |redis.replication.master_repl_offset |0 |7d |365d |0 |3 | |B | | |NULL |91 | | |0 | | | | |0 |NULL |Replication offset reported by the master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30308 |18 | |10310 |Redis: Memory used RSS |redis.memory.used_memory_rss |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes that Redis allocated as seen by the operating system |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30309 |18 | |10310 |Redis: Max input buffer |redis.clients.max_input_buffer |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The biggest input buffer among current client connections |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30310 |18 | |10310 |Redis: Max output buffer |redis.clients.max_output_buffer |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The biggest output buffer among current client connections |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30311 |18 | |10310 |Redis: Cluster enabled |redis.cluster.enabled |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Indicate Redis cluster is enabled |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30312 |18 | |10310 |Redis: Max clients |redis.config.maxclients |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max number of connected clients at the same time.&eol;Once the limit is reached Redis will close all the new connections sending an error "max number of clients reached". |0 |30d |0 | |30275 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30313 |18 | |10310 |Redis: CPU sys |redis.cpu.sys |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30314 |18 | |10310 |Redis: CPU sys children |redis.cpu.sys_children |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the background processes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30315 |18 | |10310 |Redis: CPU user |redis.cpu.user |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the Redis server |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30316 |18 | |10310 |Redis: CPU user children |redis.cpu.user_children |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the background processes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30317 |18 | |10310 |Redis: Memory fragmentation ratio |redis.memory.fragmentation_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30318 |18 | |10310 |Redis: Memory used |redis.memory.used_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of bytes allocated by Redis using its allocator |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30319 |18 | |10310 |Redis: Memory used Lua |redis.memory.used_memory_lua |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of memory used by the Lua engine |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30320 |18 | |10310 |Redis: Memory used peak |redis.memory.used_memory_peak |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Peak memory consumed by Redis (in bytes) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30321 |18 | |10310 |Redis: AOF current rewrite time sec |redis.persistence.aof_current_rewrite_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the on-going AOF rewrite operation if any |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30322 |18 | |10310 |Redis: Connected clients |redis.clients.connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connected clients |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30323 |18 | |10310 |Redis: AOF enabled |redis.persistence.aof_enabled |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating AOF logging is activated |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30324 |18 | |10310 |Redis: AOF last bgrewrite status |redis.persistence.aof_last_bgrewrite_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last AOF rewrite operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30325 |18 | |10310 |Redis: AOF last rewrite time sec |redis.persistence.aof_last_rewrite_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the last AOF rewrite |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30326 |18 | |10310 |Redis: AOF last write status |redis.persistence.aof_last_write_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last write operation to the AOF |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30327 |18 | |10310 |Redis: AOF rewrite in progress |redis.persistence.aof_rewrite_in_progress |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Flag indicating a AOF rewrite operation is on-going |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30328 |18 | |10310 |Redis: AOF rewrite scheduled |redis.persistence.aof_rewrite_scheduled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Flag indicating an AOF rewrite operation will be scheduled once the on-going RDB save is complete |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30329 |18 | |10310 |Redis: Dump loading |redis.persistence.loading |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |0 |NULL |Flag indicating if the load of a dump file is on-going |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30330 |18 | |10310 |Redis: RDB bgsave in progress |redis.persistence.rdb_bgsave_in_progress |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"1" if bgsave is in progress and "0" otherwise |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30331 |18 | |10310 |Redis: RDB changes since last save |redis.persistence.rdb_changes_since_last_save |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of changes since the last background save |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30332 |18 | |10310 |Redis: RDB current bgsave time sec |redis.persistence.rdb_current_bgsave_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the on-going RDB save operation if any |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30333 |18 | |10310 |Redis: RDB last bgsave status |redis.persistence.rdb_last_bgsave_status |0 |7d |365d |0 |3 | | | | |NULL |89 | | |0 | | | | |0 |NULL |Status of the last RDB save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30334 |18 | |10310 |Redis: RDB last bgsave time sec |redis.persistence.rdb_last_bgsave_time_sec |0 |7d |365d |0 |0 | |s | | |NULL |92 | | |0 | | | | |0 |NULL |Duration of the last bg_save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30335 |18 | |10310 |Redis: RDB last save time |redis.persistence.rdb_last_save_time |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Epoch-based timestamp of last successful RDB save |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30336 |18 | |10310 |Redis: Total net output bytes |redis.stats.total_net_output_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes written to the network |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30337 |0 | |10310 |Process metrics discovery |proc.num["{$REDIS.LLD.PROCESS_NAME}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect metrics by Zabbix agent if it exists |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30338 |18 | |10310 |Keyspace discovery |redis.keyspace.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual keyspace metrics |0 |30d |1 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30339 |18 | |10310 |Version 4+ metrics discovery |redis.metrics.v4.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for versions 4+ |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30340 |18 | |10310 |Version 5+ metrics discovery |redis.metrics.v5.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for versions 5+ |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30341 |18 | |10310 |AOF metrics discovery |redis.persistence.aof.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If AOF is activated, additional metrics will be added |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30342 |18 | |10310 |Replication metrics discovery |redis.replication.master.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If the instance is the master and the slaves are connected, additional metrics are provided |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30343 |18 | |10310 |Slave metrics discovery |redis.replication.slave.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If the instance is a replica, additional metrics are provided |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30344 |0 | |10310 |Redis: CPU utilization |proc.cpu.util["{$REDIS.PROCESS_NAME}{#SINGLETON}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Process CPU utilization percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30345 |0 | |10310 |Redis: Memory usage (rss) |proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,rss] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Resident set size memory used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30346 |0 | |10310 |Redis: Memory usage (vsize) |proc.mem["{$REDIS.PROCESS_NAME}{#SINGLETON}",,,,vsize] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Virtual memory size used by process in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30347 |0 | |10310 |Redis: Number of processes running |proc.num["{$REDIS.PROCESS_NAME}{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30348 |18 | |10310 |DB {#DB}: Average TTL |redis.db.avg_ttl["{#DB}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average TTL |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30349 |18 | |10310 |DB {#DB}: Expires |redis.db.expires["{#DB}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys with an expiration |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30350 |18 | |10310 |DB {#DB}: Keys |redis.db.keys["{#DB}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of keys |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30351 |18 | |10310 |Redis: Active defrag running{#SINGLETON} |redis.memory.active_defrag_running[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if active defragmentation is active |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30352 |18 | |10310 |Redis: RDB last CoW size{#SINGLETON} |redis.persistence.rdb_last_cow_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of copy-on-write allocations during the last RDB save operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30353 |18 | |10310 |Redis: Expired time cap reached count{#SINGLETON} |redis.stats.expired_time_cap_reached_count[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30354 |18 | |10310 |Redis: Expired stale %{#SINGLETON} |redis.stats.expired_stale_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30355 |18 | |10310 |Redis: Active defrag misses{#SINGLETON} |redis.stats.active_defrag_misses[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of aborted value reallocations started by the active defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30356 |18 | |10310 |Redis: Active defrag key misses{#SINGLETON} |redis.stats.active_defrag_key_misses[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys that were skipped by the active defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30357 |18 | |10310 |Redis: Active defrag key hits{#SINGLETON} |redis.stats.active_defrag_key_hits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of keys that were actively defragmented |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30358 |18 | |10310 |Redis: Active defrag hits{#SINGLETON} |redis.stats.active_defrag_hits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of value reallocations performed by active the defragmentation process |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30359 |18 | |10310 |Redis: Executable path{#SINGLETON} |redis.server.executable[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The path to the server's executable |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30360 |18 | |10310 |Redis: Replication second offset{#SINGLETON} |redis.replication.second_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |91 | | |0 | | | | |2 |NULL |Offset up to which replication IDs are accepted |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30361 |18 | |10310 |Redis: AOF last CoW size{#SINGLETON} |redis.persistence.aof_last_cow_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of copy-on-write allocations during the last AOF rewrite operation |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30362 |18 | |10310 |Redis: Lazyfree pending objects{#SINGLETON} |redis.memory.lazyfree_pending_objects[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of objects waiting to be freed (as a result of calling UNLINK, or FLUSHDB and FLUSHALL with the ASYNC option) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30363 |18 | |10310 |Redis: Memory used startup{#SINGLETON} |redis.memory.used_memory_startup[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Initial amount of memory consumed by Redis at startup in bytes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30364 |18 | |10310 |Redis: Memory used peak %{#SINGLETON} |redis.memory.used_memory_peak_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of used_memory_peak out of used_memory |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30365 |18 | |10310 |Redis: Memory used overhead{#SINGLETON} |redis.memory.used_memory_overhead[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The sum in bytes of all overheads that the server allocated for managing its internal data structures |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30366 |18 | |10310 |Redis: Memory used dataset{#SINGLETON} |redis.memory.used_memory_dataset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size in bytes of the dataset |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30367 |18 | |10310 |Redis: Memory used dataset %{#SINGLETON} |redis.memory.used_memory_dataset_perc[{#SINGLETON}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of used_memory_dataset out of the net memory usage (used_memory minus used_memory_startup) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30368 |18 | |10310 |Redis: Total system memory{#SINGLETON} |redis.memory.total_system_memory[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total amount of memory that the Redis host has |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30369 |18 | |10310 |Redis: Max memory{#SINGLETON} |redis.memory.maxmemory[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum amount of memory allocated to the Redisdb system |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30370 |18 | |10310 |Redis: Max memory policy{#SINGLETON} |redis.memory.maxmemory_policy[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The value of the maxmemory-policy configuration directive |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30371 |18 | |10310 |Redis: Slave expires tracked keys{#SINGLETON} |redis.stats.slave_expires_tracked_keys[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of keys tracked for expiry purposes (applicable only to writable replicas) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30372 |18 | |10310 |Redis: Allocator active{#SINGLETON} |redis.memory.allocator_active[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30373 |18 | |10310 |Redis: Memory clients normal{#SINGLETON} |redis.memory.mem_clients_normal[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30374 |18 | |10310 |Redis: Memory RSS overhead ratio{#SINGLETON} |redis.memory.rss_overhead_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30375 |18 | |10310 |Redis: Memory RSS overhead bytes{#SINGLETON} |redis.memory.rss_overhead_bytes[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30376 |18 | |10310 |Redis: Memory replication backlog{#SINGLETON} |redis.memory.replication_backlog[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30377 |18 | |10310 |Redis: Memory number of cached scripts{#SINGLETON} |redis.memory.number_of_cached_scripts[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30378 |18 | |10310 |Redis: Memory not counted for evict{#SINGLETON} |redis.memory.not_counted_for_evict[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30379 |18 | |10310 |Redis: Memory clients slaves{#SINGLETON} |redis.memory.mem_clients_slaves[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30380 |18 | |10310 |Redis: Memory AOF buffer{#SINGLETON} |redis.memory.mem_aof_buffer[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30381 |18 | |10310 |Redis: Allocator allocated{#SINGLETON} |redis.memory.allocator_allocated[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30382 |18 | |10310 |Redis: Memory fragmentation bytes{#SINGLETON} |redis.memory.fragmentation_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30383 |18 | |10310 |Redis: Allocator RSS ratio{#SINGLETON} |redis.memory.allocator_rss_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30384 |18 | |10310 |Redis: Allocator RSS bytes{#SINGLETON} |redis.memory.allocator_rss_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30385 |18 | |10310 |Redis: Allocator resident{#SINGLETON} |redis.memory.allocator_resident[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30386 |18 | |10310 |Redis: Allocator fragmentation ratio{#SINGLETON} |redis.memory.allocator_frag_ratio[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30387 |18 | |10310 |Redis: Allocator fragmentation bytes{#SINGLETON} |redis.memory.allocator_frag_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30388 |18 | |10310 |Redis: Memory used scripts{#SINGLETON} |redis.memory.used_memory_scripts[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30389 |18 | |10310 |Redis: AOF base size{#SINGLETON} |redis.persistence.aof_base_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |AOF file size on latest startup or rewrite |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30390 |18 | |10310 |Redis: AOF buffer length{#SINGLETON} |redis.persistence.aof_buffer_length[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30391 |18 | |10310 |Redis: AOF current size{#SINGLETON} |redis.persistence.aof_current_size[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |AOF current file size |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30392 |18 | |10310 |Redis: AOF delayed fsync{#SINGLETON} |redis.persistence.aof_delayed_fsync[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Delayed fsync counter |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30393 |18 | |10310 |Redis: AOF pending background I/O fsync{#SINGLETON} |redis.persistence.aof_pending_bio_fsync[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of fsync pending jobs in background I/O queue |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30394 |18 | |10310 |Redis: AOF pending rewrite{#SINGLETON} |redis.persistence.aof_pending_rewrite[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |90 | | |0 | | | | |2 |NULL |Flag indicating an AOF rewrite operation will |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30395 |18 | |10310 |Redis: AOF rewrite buffer length{#SINGLETON} |redis.persistence.aof_rewrite_buffer_length[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the AOF rewrite buffer |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30396 |18 | |10310 |Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag in bytes |redis.replication.lag_bytes["{#SLAVE_IP}:{#SLAVE_PORT}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Replication lag in bytes |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30397 |18 | |10310 |Redis: Master host{#SINGLETON} |redis.replication.master_host[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Host or IP address of the master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30398 |18 | |10310 |Redis: Master last I/O seconds ago{#SINGLETON} |redis.replication.master_last_io_seconds_ago[{#SINGLETON}] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of seconds since the last interaction with master |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30399 |18 | |10310 |Redis: Master link status{#SINGLETON} |redis.replication.master_link_status[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Status of the link (up/down) |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30400 |18 | |10310 |Redis: Master port{#SINGLETON} |redis.replication.master_port[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Master listening TCP port |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30401 |18 | |10310 |Redis: Master sync in progress{#SINGLETON} |redis.replication.master_sync_in_progress[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicate the master is syncing to the replica |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30402 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_priority[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The priority of the instance as a candidate for failover |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30403 |18 | |10310 |Redis: Slave priority{#SINGLETON} |redis.replication.slave_read_only[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Flag indicating if the replica is read-only |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30404 |18 | |10310 |Redis: Slave replication offset{#SINGLETON} |redis.replication.slave_repl_offset[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The replication offset of the replica instance |0 |30d |0 | |30276 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30405 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10311 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30407 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10312 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30408 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10313 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30411 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10312 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30412 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10312 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30413 |15 | |10312 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30414 |15 | |10313 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30415 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10313 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30416 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10313 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30423 |0 | |10314 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30425 |0 | |10314 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30427 |7 | |10315 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30429 |7 | |10315 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30431 |0 | |10316 |MySQL: Version |mysql.version["{$MYSQL.HOST}","{$MYSQL.PORT}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30432 |0 | |10316 |MySQL: Status |mysql.ping["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30433 |0 | |10316 |MySQL: Get status variables |mysql.get_status_variables["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30434 |15 | |10316 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 )| |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30435 |15 | |10316 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30438 |18 | |10316 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30439 |18 | |10316 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30448 |18 | |10316 |MySQL: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30452 |18 | |10316 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30454 |18 | |10316 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30456 |18 | |10316 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30457 |18 | |10316 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30458 |18 | |10316 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30459 |18 | |10316 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30460 |18 | |10316 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30462 |18 | |10316 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30463 |18 | |10316 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30464 |18 | |10316 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30467 |18 | |10316 |MySQL: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30468 |18 | |10316 |MySQL: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30469 |18 | |10316 |MySQL: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30472 |0 | |10316 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30473 |0 | |10316 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30474 |0 | |10316 |MySQL: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30475 |0 | |10316 |MySQL: Replication Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30476 |18 | |10316 |MySQL: Replication Seconds Behind Master {#MASTERHOST} |mysql.seconds_behind_master["{#MASTERHOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30477 |18 | |10316 |MySQL: Replication Slave IO Running {#MASTERHOST} |mysql.slave_io_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30478 |18 | |10316 |MySQL: Replication Slave SQL Running {#MASTERHOST} |mysql.slave_sql_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30479 |11 | |10317 |MySQL: Get status variables |db.odbc.get[get_status_variables,"{$MYSQL.DSN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL |show global status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30480 |11 | |10317 |MySQL: Version |db.odbc.select[version,"{$MYSQL.DSN}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL |select version() | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30481 |11 | |10317 |MySQL: Status |db.odbc.select[ping,"{$MYSQL.DSN}"] |1m |7d |365d |0 |3 | | | | |NULL |1 |select "1" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30482 |15 | |10317 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30483 |15 | |10317 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 )| |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30489 |18 | |10317 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30490 |18 | |10317 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30493 |18 | |10317 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30498 |18 | |10317 |MySQL: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30500 |18 | |10317 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30501 |18 | |10317 |MySQL: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30502 |18 | |10317 |MySQL: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30503 |18 | |10317 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30508 |18 | |10317 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30509 |18 | |10317 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30510 |18 | |10317 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30511 |18 | |10317 |MySQL: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30512 |18 | |10317 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30514 |18 | |10317 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30515 |18 | |10317 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30516 |18 | |10317 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30520 |11 | |10317 |Databases discovery |db.odbc.discovery[databases,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show databases | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30521 |11 | |10317 |Replication discovery |db.odbc.discovery[replication,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30522 |11 | |10317 |MySQL: Size of database {#DATABASE} |db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL |SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30523 |11 | |10317 |MySQL: Replication Slave status {#MASTER_HOST} |db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30526 |18 | |10317 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30527 |0 | |10318 |Docker: Get data_usage |docker.data_usage |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30528 |0 | |10318 |Docker: Get containers |docker.containers |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30529 |0 | |10318 |Docker: Get info |docker.info |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30530 |0 | |10318 |Docker: Ping |docker.ping |1m |7h |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30531 |0 | |10318 |Docker: Get images |docker.images |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30532 |18 | |10318 |Docker: Architecture |docker.architecture |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30533 |18 | |10318 |Docker: Live restore enabled |docker.live_restore.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30534 |18 | |10318 |Docker: Logging driver |docker.logging_driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30535 |18 | |10318 |Docker: Memory limit enabled |docker.mem_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30536 |18 | |10318 |Docker: Memory total |docker.mem.total |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30537 |18 | |10318 |Docker: Name |docker.name |0 |1h |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30538 |18 | |10318 |Docker: NCPU |docker.ncpu |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30539 |18 | |10318 |Docker: Nfd |docker.nfd |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of used File Descriptors |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30540 |18 | |10318 |Docker: NEvents listener |docker.nevents_listener |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30541 |18 | |10318 |Docker: Kernel version |docker.kernel_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30542 |18 | |10318 |Docker: OomKill disabled |docker.oomkill.disabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30543 |18 | |10318 |Docker: Operating system |docker.operating_system |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30544 |18 | |10318 |Docker: OS type |docker.os_type |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30545 |18 | |10318 |Docker: Pids limit enabled |docker.pids_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30546 |18 | |10318 |Docker: Docker root dir |docker.root_dir |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30547 |18 | |10318 |Docker: Server version |docker.server_version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30548 |18 | |10318 |Docker: Swap limit enabled |docker.swap_limit.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30549 |18 | |10318 |Docker: Layers size |docker.layers_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30550 |18 | |10318 |Docker: IPv4 Forwarding enabled |docker.ipv4_forwarding.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30551 |18 | |10318 |Docker: Kernel memory enabled |docker.kernel_mem.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30552 |18 | |10318 |Docker: CPU Set enabled |docker.cpu_set.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30553 |18 | |10318 |Docker: Containers size |docker.containers_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30554 |18 | |10318 |Docker: Containers paused |docker.containers.paused |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers paused on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30555 |18 | |10318 |Docker: Containers running |docker.containers.running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers running on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30556 |18 | |10318 |Docker: Containers stopped |docker.containers.stopped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers stopped on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30557 |18 | |10318 |Docker: Containers total |docker.containers.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of containers on this host |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30558 |18 | |10318 |Docker: CPU CFS Period enabled |docker.cpu_cfs_period.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30559 |18 | |10318 |Docker: CPU CFS Quota enabled |docker.cpu_cfs_quota.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30560 |18 | |10318 |Docker: CPU Shares enabled |docker.cpu_shares.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL |https://docs.docker.com/config/containers/resource_constraints/#configure-the-default-cfs-scheduler |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30561 |18 | |10318 |Docker: Kernel memory TCP enabled |docker.kernel_mem_tcp.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30562 |18 | |10318 |Docker: Debug enabled |docker.debug.enabled |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30563 |18 | |10318 |Docker: Default runtime |docker.default_runtime |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30564 |18 | |10318 |Docker: Storage driver |docker.driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Docker storage driver &eol; https://docs.docker.com/storage/storagedriver/ |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30565 |18 | |10318 |Docker: Goroutines |docker.goroutines |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of goroutines |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30566 |18 | |10318 |Docker: Images size |docker.images_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30567 |18 | |10318 |Docker: Images available |docker.images.top_level |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of top-level images |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30568 |18 | |10318 |Docker: Images total |docker.images.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of images with intermediate image layers |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30569 |18 | |10318 |Docker: Cgroup driver |docker.cgroup_driver |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30570 |18 | |10318 |Docker: Volumes size |docker.volumes_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30527 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30571 |0 | |10318 |Containers discovery |docker.containers.discovery[false] |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for containers metrics&eol;&eol;Parameter:&eol;true - Returns all containers&eol;false - Returns only running containers |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30572 |0 | |10318 |Images discovery |docker.images.discovery |15m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for images metrics |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30573 |0 | |10318 |Container {#NAME}: Get stats |docker.container_stats["{#NAME}"] |1m |0 |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get container stats based on resource usage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30574 |0 | |10318 |Container {#NAME}: Get info |docker.container_info["{#NAME}"] |1m |0 |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Return low-level information about a container |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30575 |18 | |10318 |Container {#NAME}: Online CPUs |docker.container_stats.online_cpus["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30576 |18 | |10318 |Container {#NAME}: Memory commit bytes |docker.container_stats.memory.commit_bytes["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30577 |18 | |10318 |Container {#NAME}: Memory commit peak bytes |docker.container_stats.memory.commit_peak_bytes["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30578 |18 | |10318 |Container {#NAME}: Memory maximum usage |docker.container_stats.memory.max_usage["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30579 |18 | |10318 |Container {#NAME}: Memory private working set |docker.container_stats.memory.private_working_set["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30580 |18 | |10318 |Container {#NAME}: Memory usage |docker.container_stats.memory.usage["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30581 |18 | |10318 |Container {#NAME}: Created |docker.container_info.created["{#NAME}"] |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30582 |18 | |10318 |Container {#NAME}: CPU total usage per second |docker.container_stats.cpu_usage.total.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30583 |18 | |10318 |Container {#NAME}: Networks bytes received per second |docker.networks.rx_bytes["{#NAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30584 |18 | |10318 |Container {#NAME}: Networks incoming packets dropped per second |docker.networks.rx_dropped["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30585 |18 | |10318 |Container {#NAME}: Networks errors received per second |docker.networks.rx_errors["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30586 |18 | |10318 |Container {#NAME}: Networks packets received per second |docker.networks.rx_packets["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30587 |18 | |10318 |Container {#NAME}: Networks bytes sent per second |docker.networks.tx_bytes["{#NAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30588 |18 | |10318 |Container {#NAME}: Networks outgoing packets dropped per second |docker.networks.tx_dropped["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30589 |18 | |10318 |Container {#NAME}: Networks errors sent per second |docker.networks.tx_errors["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30590 |18 | |10318 |Container {#NAME}: CPU usermode usage per second |docker.container_stats.cpu_usage.user.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30591 |18 | |10318 |Container {#NAME}: Throttling periods |docker.container_stats.cpu_usage.throttling_periods["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of periods with throttling active |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30592 |18 | |10318 |Container {#NAME}: Finished at |docker.container_info.finished["{#NAME}"] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30593 |18 | |10318 |Container {#NAME}: OOMKilled |docker.container_info.state.oomkilled["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30594 |18 | |10318 |Container {#NAME}: Image |docker.container_info.image["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30528 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30595 |18 | |10318 |Container {#NAME}: Restart count |docker.container_info.restart_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30596 |18 | |10318 |Container {#NAME}: Started at |docker.container_info.started["{#NAME}"] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30597 |18 | |10318 |Container {#NAME}: Dead |docker.container_info.state.dead["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30598 |18 | |10318 |Container {#NAME}: Error |docker.container_info.state.error["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30599 |18 | |10318 |Container {#NAME}: Exit code |docker.container_info.state.exitcode["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30600 |18 | |10318 |Container {#NAME}: Paused |docker.container_info.state.paused["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30601 |18 | |10318 |Container {#NAME}: Throttled time |docker.container_stats.cpu_usage.throttled_time["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Aggregate time the container was throttled for in nanoseconds |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30602 |18 | |10318 |Container {#NAME}: Pid |docker.container_info.state.pid["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30603 |18 | |10318 |Container {#NAME}: Restarting |docker.container_info.state.restarting["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30604 |18 | |10318 |Container {#NAME}: Running |docker.container_info.state.running["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |93 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30605 |18 | |10318 |Container {#NAME}: Status |docker.container_info.state.status["{#NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30574 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30606 |18 | |10318 |Container {#NAME}: CPU kernelmode usage per second |docker.container_stats.cpu_usage.kernel.rate["{#NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30607 |18 | |10318 |Container {#NAME}: Throttled periods |docker.container_stats.cpu_usage.throttled_periods["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of periods when the container hits its throttling limit |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30608 |18 | |10318 |Container {#NAME}: Networks packets sent per second |docker.networks.tx_packets["{#NAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30609 |18 | |10318 |Image {#NAME}: Created |docker.image.created["{#ID}"] |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30610 |18 | |10318 |Image {#NAME}: Size |docker.image.size["{#ID}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30531 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30611 |0 | |10319 |Memcached: Ping |memcached.ping["{$MEMCACHED.CONN.URI}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30612 |0 | |10319 |Memcached: Get status |memcached.stats["{$MEMCACHED.CONN.URI}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30613 |18 | |10319 |Memcached: Commands: FLUSH per second |memcached.commands.flush.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The flush_all command invalidates all items in the database. This operation incurs a performance penalty and shouldn’t take place in production, so check your debug scripts. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30614 |18 | |10319 |Memcached: Bytes used |memcached.stats.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of bytes used to store items. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30615 |18 | |10319 |Memcached: Uptime |memcached.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Memcached server start |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30616 |18 | |10319 |Memcached: New items per second |memcached.stats.total_items.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new items stored per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30617 |18 | |10319 |Memcached: Threads |memcached.stats.threads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of worker threads requested |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30618 |18 | |10319 |Memcached: Misses per second |memcached.stats.misses.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of missed GET requests (items requested but not found) per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30619 |18 | |10319 |Memcached: Hits per second |memcached.stats.hits.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of successful GET requests (items requested and found) per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30620 |18 | |10319 |Memcached: Evictions per second |memcached.stats.evictions.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"An eviction is when an item that still has time to live is removed from the cache because a brand new item needs to be allocated.&eol;The item is selected with a pseudo-LRU mechanism.&eol;A high number of evictions coupled with a low hit rate means your application is setting a large number of keys that are never used again." |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30621 |18 | |10319 |Memcached: Current number of items stored |memcached.stats.curr_items |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of items stored by this instance. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30622 |18 | |10319 |Memcached: Written bytes per second |memcached.stats.bytes_written.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in B/sec |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30623 |18 | |10319 |Memcached: Read bytes per second |memcached.stats.bytes_read.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The network's read rate per second in B/sec |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30624 |18 | |10319 |Memcached: Process id |memcached.process_id |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PID of the server process |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30625 |18 | |10319 |Memcached: Commands: GET per second |memcached.commands.get.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of GET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30626 |18 | |10319 |Memcached: CPU user |memcached.cpu.user |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |User CPU consumed by the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30627 |18 | |10319 |Memcached: CPU sys |memcached.cpu.sys |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |System CPU consumed by the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30628 |18 | |10319 |Memcached: Throttled connections |memcached.connections.throttled.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times a client connection was throttled. When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30629 |18 | |10319 |Memcached: Connection structures |memcached.connections.structures |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection structures allocated by the server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30630 |18 | |10319 |Memcached: New connections per second |memcached.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections opened per second |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30631 |18 | |10319 |Memcached: Queued connections per second |memcached.connections.queued.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times that memcached has hit its connections limit and disabled its listener |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30632 |18 | |10319 |Memcached: Max connections |memcached.connections.max |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max number of concurrent connections |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30633 |18 | |10319 |Memcached: Open connections |memcached.connections.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of clients presently connected |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30634 |18 | |10319 |Memcached: Maximum number of bytes |memcached.config.limit_maxbytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of bytes allowed in cache. You can adjust this setting via a config file or the command line while starting your Memcached server. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30635 |18 | |10319 |Memcached: Commands: SET per second |memcached.commands.set.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SET requests received by server per second. |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30636 |18 | |10319 |Memcached: Memcached version |memcached.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Memcached server |0 |30d |0 | |30612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30637 |0 | |10320 |MySQL: Version |mysql.version["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30638 |0 | |10320 |MySQL: Status |mysql.ping["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30639 |0 | |10320 |MySQL: Get status variables |mysql.get_status_variables["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30640 |15 | |10320 |MySQL: Buffer pool utilization |mysql.buffer_pool_utilization |1m |7d |365d |0 |0 | |% | | |NULL |NULL |( last(mysql.innodb_buffer_pool_pages_total) - &bsn;last(mysql.innodb_buffer_pool_pages_free) ) / &bsn;( last(mysql.innodb_buffer_pool_pages_total) + &bsn;( last(mysql.innodb_buffer_pool_pages_total) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_pages_total) > 0 )| |0 | | | | |0 |NULL |Ratio of used to total pages in the buffer pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30641 |15 | |10320 |MySQL: Buffer pool efficiency |mysql.buffer_pool_efficiency |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(mysql.innodb_buffer_pool_reads) / &bsn;( last(mysql.innodb_buffer_pool_read_requests) + &bsn;( last(mysql.innodb_buffer_pool_read_requests) = 0 ) ) * 100 * &bsn;( last(mysql.innodb_buffer_pool_read_requests) > 0 ) | |0 | | | | |0 |NULL |The item shows how effectively the buffer pool is serving reads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30644 |18 | |10320 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30645 |18 | |10320 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30654 |18 | |10320 |MySQL: Threads created |mysql.threads_created |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30658 |18 | |10320 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30660 |18 | |10320 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30662 |18 | |10320 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30663 |18 | |10320 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30664 |18 | |10320 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30665 |18 | |10320 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30666 |18 | |10320 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30668 |18 | |10320 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30669 |18 | |10320 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30670 |18 | |10320 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30673 |18 | |10320 |MySQL: Created tmp tables on disk |mysql.created_tmp_disk_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30674 |18 | |10320 |MySQL: Created tmp files on disk |mysql.created_tmp_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30675 |18 | |10320 |MySQL: Created tmp tables on memory |mysql.created_tmp_tables |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30678 |0 | |10320 |Databases discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30679 |0 | |10320 |Replication discovery |mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30680 |0 | |10320 |MySQL: Size of database {#DATABASE} |mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30681 |0 | |10320 |MySQL: Replication Slave status {#MASTER_HOST} |mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30684 |18 | |10320 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.replication.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30685 |12 | |10321 |Get IPMI sensors |ipmi.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The master item that receives all sensors with values for LLD and dependent elements from BMC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30686 |18 | |10321 |Discrete sensors discovery |ipmi.discrete.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the discrete IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30687 |18 | |10321 |Threshold sensors discovery |ipmi.sensors.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the threshold IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30688 |18 | |10321 |IPMI: {#SENSOR_ID} |ipmi.state_text[{#SENSOR_ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |It is a state of the discrete IPMI sensor. |0 |30d |0 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30689 |18 | |10321 |IPMI: {#SENSOR_ID}, {#SENSOR_UNIT} |ipmi.value[{#SENSOR_ID}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |It is a state of the threshold IPMI sensor. |0 |30d |0 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30690 |3 | |10322 |ES: Service status |net.tcp.service["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Checks if the service is running and accepting TCP connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30691 |19 | |10322 |ES: Get cluster stats |es.cluster.get_stats |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns cluster statistics. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/stats | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30692 |3 | |10322 |ES: Service response time |net.tcp.service.perf["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Checks performance of the TCP service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30693 |19 | |10322 |ES: Get nodes stats |es.nodes.get_stats |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns cluster nodes statistics. |0 |30d |0 | |NULL |30s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/stats | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30694 |19 | |10322 |ES: Get cluster health |es.cluster.get_health |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |0 |NULL |Returns the health status of a cluster. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_cluster/health?timeout=5s | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30695 |18 | |10322 |ES: Number of non-deleted documents |es.indices.docs.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of non-deleted documents across all primary shards assigned to the selected nodes.&eol;This number is based on the documents in Lucene segments and may include the documents from nested fields. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30696 |18 | |10322 |ES: Cluster uptime |es.nodes.jvm.max_uptime[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime duration in seconds since JVM has last started. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30697 |18 | |10322 |ES: Total size of all file stores |es.nodes.fs.total_in_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size in bytes of all file stores across all selected nodes. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30698 |18 | |10322 |ES: Total available size to JVM in all file stores |es.nodes.fs.available_in_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes available to JVM in the file stores across all selected nodes.&eol;Depending on OS or process-level restrictions, this number may be less than nodes.fs.free_in_byes. &eol;This is the actual amount of free disk space the selected Elasticsearch nodes can use. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30699 |18 | |10322 |ES: Nodes with the master role |es.nodes.count.master |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the master role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30700 |18 | |10322 |ES: Nodes with the ingest role |es.nodes.count.ingest |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the ingest role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30701 |18 | |10322 |ES: Nodes with the data role |es.nodes.count.data |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of selected nodes with the data role. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30702 |18 | |10322 |ES: Delayed unassigned shards |es.cluster.delayed_unassigned_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards whose allocation has been delayed by the timeout settings. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30703 |18 | |10322 |ES: Indices with shards assigned to nodes |es.indices.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of indices with shards assigned to the selected nodes. |0 |30d |0 | |30691 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30704 |18 | |10322 |ES: Task max waiting in queue |es.cluster.task_max_waiting_in_queue |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The time expressed in seconds since the earliest initiated task is waiting for being performed. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30705 |18 | |10322 |ES: Cluster health status |es.cluster.status |0 |7d |365d |0 |3 | | | | |NULL |94 | | |0 | | | | |0 |NULL |Health status of the cluster, based on the state of its primary and replica shards. Statuses are:&eol;green&eol;All shards are assigned.&eol;yellow&eol;All primary shards are assigned, but one or more replica shards are unassigned. If a node in the cluster fails, some data could be unavailable until that node is repaired.&eol;red&eol;One or more primary shards are unassigned, so some data is unavailable. This can occur briefly during cluster startup as primary shards are assigned. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30706 |18 | |10322 |ES: Number of relocating shards |es.cluster.relocating_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are under relocation. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30707 |18 | |10322 |ES: Number of pending tasks |es.cluster.number_of_pending_tasks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of cluster-level changes that have not yet been executed. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30708 |18 | |10322 |ES: Number of nodes |es.cluster.number_of_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of nodes within the cluster. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30709 |18 | |10322 |ES: Number of data nodes |es.cluster.number_of_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of nodes that are dedicated to data nodes. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30710 |18 | |10322 |ES: Number of initializing shards |es.cluster.initializing_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are under initialization. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30711 |18 | |10322 |ES: Inactive shards percentage |es.cluster.inactive_shards_percent_as_number |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of inactive shards in the cluster expressed as a percentage. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30712 |18 | |10322 |ES: Number of unassigned shards |es.cluster.unassigned_shards |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of shards that are not allocated. |0 |30d |0 | |30694 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30713 |19 | |10322 |Cluster nodes discovery |es.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ELASTICSEARCH.USERNAME}|{$ELASTICSEARCH.PASSWORD}| | |1 |NULL |Discovery ES cluster nodes. |0 |30d |0 | |NULL |15s |{$ELASTICSEARCH.SCHEME}://{HOST.CONN}:{$ELASTICSEARCH.PORT}/_nodes/_all/nodes | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30714 |15 | |10322 |ES {#ES.NODE}: Query latency |es.node.indices.search.query_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( last(es.node.indices.search.query_total[{#ES.NODE}]) + (last(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.flush.total[{#ES.NODE}]) + (last(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.indexing.index_total[{#ES.NODE}]) + (last(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.search.fetch_total[{#ES.NODE}]) + (last(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30718 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool active threads |es.node.thread_pool.refresh.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the refresh thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30719 |18 | |10322 |ES {#ES.NODE}: Total number of query |es.node.indices.search.query_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of query operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30720 |18 | |10322 |ES {#ES.NODE}: Rate of queries |es.node.indices.search.query.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of query operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30721 |18 | |10322 |ES {#ES.NODE}: Amount of JVM heap committed |es.node.jvm.mem.heap_committed_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of memory, in bytes, available for use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30722 |18 | |10322 |ES {#ES.NODE}: Maximum JVM memory available for use |es.node.jvm.mem.heap_max_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The maximum amount of memory, in bytes, available for use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30723 |18 | |10322 |ES {#ES.NODE}: Amount of JVM heap currently in use |es.node.jvm.mem.heap_used_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The memory, in bytes, currently in use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30724 |18 | |10322 |ES {#ES.NODE}: Percent of JVM heap currently in use |es.node.jvm.mem.heap_used_percent[{#ES.NODE}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of memory currently in use by the heap. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30725 |18 | |10322 |ES {#ES.NODE}: Node uptime |es.node.jvm.uptime[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |JVM uptime in seconds. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30726 |18 | |10322 |ES {#ES.NODE}: Total available size |es.node.fs.total.available_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes available to this Java virtual machine on all file stores. &eol;Depending on OS or process level restrictions, this might appear less than fs.total.free_in_bytes. &eol;This is the actual amount of free disk space the Elasticsearch node can utilize. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30727 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool executor tasks completed |es.node.thread_pool.refresh.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the refresh thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30728 |18 | |10322 |ES {#ES.NODE}: Time spent performing query |es.node.indices.search.query_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing query operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30729 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool executor tasks rejected |es.node.thread_pool.refresh.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the refresh thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30730 |18 | |10322 |ES {#ES.NODE}: Search thread pool active threads |es.node.thread_pool.search.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the search thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30731 |18 | |10322 |ES {#ES.NODE}: Search thread pool executor tasks completed |es.node.thread_pool.search.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the search thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30732 |18 | |10322 |ES {#ES.NODE}: Search thread pool tasks in queue |es.node.thread_pool.search.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the search thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30733 |18 | |10322 |ES {#ES.NODE}: Search thread pool executor tasks rejected |es.node.thread_pool.search.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the search thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30734 |18 | |10322 |ES {#ES.NODE}: Write thread pool active threads |es.node.thread_pool.write.active[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of active threads in the write thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30735 |18 | |10322 |ES {#ES.NODE}: Write thread pool executor tasks completed |es.node.thread_pool.write.completed.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks completed by the write thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30736 |18 | |10322 |ES {#ES.NODE}: Write thread pool tasks in queue |es.node.thread_pool.write.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the write thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30737 |18 | |10322 |ES {#ES.NODE}: Refresh thread pool tasks in queue |es.node.thread_pool.refresh.queue[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks in queue for the refresh thread pool. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30738 |18 | |10322 |ES {#ES.NODE}: Current query operations |es.node.indices.search.query_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of query operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30739 |18 | |10322 |ES {#ES.NODE}: Total time spent performing query |es.node.indices.search.query_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in milliseconds spent performing query operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30740 |18 | |10322 |ES {#ES.NODE}: Time spent throttling operations |es.node.indices.indexing.throttle_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30741 |18 | |10322 |ES {#ES.NODE}: Number of open HTTP connections |es.node.http.current_open[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of currently open HTTP connections for the node. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30742 |18 | |10322 |ES {#ES.NODE}: Rate of HTTP connections opened |es.node.http.opened.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of HTTP connections opened for the node per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30743 |18 | |10322 |ES {#ES.NODE}: Total time spent on flushing indices to disk |es.node.indices.flush.total_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total time in milliseconds spent performing flush operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30744 |18 | |10322 |ES {#ES.NODE}: Total number of index flushes to disk |es.node.indices.flush.total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of flush operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30745 |18 | |10322 |ES {#ES.NODE}: Current indexing operations |es.node.indices.indexing.index_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of indexing operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30746 |18 | |10322 |ES {#ES.NODE}: Total time spent performing indexing |es.node.indices.indexing.index_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total time in milliseconds spent performing indexing operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30747 |18 | |10322 |ES {#ES.NODE}: Total number of indexing |es.node.indices.indexing.index_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of indexing operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30748 |18 | |10322 |ES {#ES.NODE}: Time spent throttling merge operations |es.node.indices.merges.total_throttled_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling merge operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30749 |18 | |10322 |ES {#ES.NODE}: Total size |es.node.fs.total.total_in_bytes[{#ES.NODE}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size (in bytes) of all file stores. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30750 |18 | |10322 |ES {#ES.NODE}: Time spent throttling recovery operations |es.node.indices.recovery.throttle_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent throttling recovery operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30751 |18 | |10322 |ES {#ES.NODE}: Rate of index refreshes |es.node.indices.refresh.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of refresh operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30752 |18 | |10322 |ES {#ES.NODE}: Time spent performing refresh |es.node.indices.refresh.time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing refresh operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30753 |18 | |10322 |ES {#ES.NODE}: Current fetch operations |es.node.indices.search.fetch_current[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of fetch operations currently running. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30754 |18 | |10322 |ES {#ES.NODE}: Total time spent performing fetch |es.node.indices.search.fetch_time_in_millis[{#ES.NODE}] |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in milliseconds spent performing fetch operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30755 |18 | |10322 |ES {#ES.NODE}: Time spent performing fetch |es.node.indices.search.fetch_time[{#ES.NODE}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time in seconds spent performing fetch operations for the last measuring span. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30756 |18 | |10322 |ES {#ES.NODE}: Total number of fetch |es.node.indices.search.fetch_total[{#ES.NODE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of fetch operations. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30757 |18 | |10322 |ES {#ES.NODE}: Rate of fetch |es.node.indices.search.fetch.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of fetch operations per second. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30758 |18 | |10322 |ES {#ES.NODE}: Write thread pool executor tasks rejected |es.node.thread_pool.write.rejected.rate[{#ES.NODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of tasks rejected by the write thread pool executor. |0 |30d |0 | |30693 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30759 |18 | |10308 |TCP BACKEND discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30760 |18 | |10308 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30761 |18 | |10308 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30762 |15 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30763 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30764 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30765 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30766 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30767 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30768 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30769 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30770 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30771 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30772 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30773 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30774 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30775 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30776 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30777 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30778 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30779 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30780 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30781 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30782 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30783 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30784 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30785 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30786 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30787 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30788 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30789 |3 | |10309 |HAProxy: Service response time |net.tcp.service.perf["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30790 |3 | |10309 |HAProxy: Service status |net.tcp.service["{$HAPROXY.STATS.SCHEME}","{HOST.CONN}","{$HAPROXY.STATS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30791 |18 | |10309 |TCP BACKEND discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30792 |18 | |10309 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30793 |18 | |10309 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30794 |15 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30795 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30796 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30797 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30798 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30799 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30800 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30801 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30802 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30803 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30804 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30805 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30806 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30807 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30808 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30809 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30810 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30811 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30812 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30813 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30814 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30815 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30816 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30817 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30818 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30819 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30820 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30821 |19 | |10323 |ClickHouse: Ping |clickhouse.ping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ping | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30822 |19 | |10323 |ClickHouse: Version |clickhouse.version |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the server |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT version()"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30823 |19 | |10323 |ClickHouse: Get replicas info |clickhouse.replicas |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT database, table, is_readonly, is_session_expired, future_parts, parts_to_check, queue_size, inserts_in_queue, merges_in_queue, log_max_index, log_pointer, total_replicas, active_replicas, log_max_index - log_pointer as replica_lag FROM system.replicas format JSON"}]| |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30824 |19 | |10323 |ClickHouse: Get system.asynchronous_metrics |clickhouse.system.asynchronous_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get metrics that are calculated periodically in the background |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select metric, value from system.asynchronous_metrics format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30825 |19 | |10323 |ClickHouse: Get system.events |clickhouse.system.events |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information about the number of events that have occurred in the system. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select event, value from system.events format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30826 |19 | |10323 |ClickHouse: Get system.metrics |clickhouse.system.metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get metrics which can be calculated instantly, or have a current value format JSONEachRow |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select metric, value from system.metrics format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30827 |19 | |10323 |ClickHouse: Longest currently running query time |clickhouse.process.elapsed |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Get longest running query. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT max(elapsed) FROM system.processes"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30828 |19 | |10323 |ClickHouse: Get tables info |clickhouse.tables |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select database, table, sum(bytes) as bytes, count() as parts, sum(rows) as rows from system.parts where active = 1 group by database, table format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30829 |19 | |10323 |ClickHouse: Get system.settings |clickhouse.system.settings |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information about settings that are currently in use. |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"select name, value from system.settings format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30830 |19 | |10323 |ClickHouse: Get dictionaries info |clickhouse.dictionaries |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$CLICKHOUSE.SCHEME}://{HOST.CONN}:{$CLICKHOUSE.PORT}/ |[{"query":"SELECT * FROM system.dictionaries format JSON"}] | |200 |1 |0 |X-ClickHouse-User: {$CLICKHOUSE.USER}&eol;X-ClickHouse-Key: {$CLICKHOUSE.PASSWORD}|0 |0 |0 |0 |0 |0 |0 |
+ROW |30831 |18 | |10323 |ClickHouse: Write syscalls in fly |clickhouse.write |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of write (write, pwrite, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30832 |18 | |10323 |ClickHouse: Total replication tasks in queue |clickhouse.replicas.sum.queue.size |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30833 |18 | |10323 |ClickHouse: New queries per second |clickhouse.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30834 |18 | |10323 |ClickHouse: Read syscalls in fly |clickhouse.read |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of read (read, pread, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30835 |18 | |10323 |ClickHouse: Read bytes per second |clickhouse.read_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network)." |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30836 |18 | |10323 |ClickHouse: ZooKeeper wait time |clickhouse.zookeper.wait.time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent in waiting for ZooKeeper operations. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30837 |18 | |10323 |ClickHouse: Replication lag across all tables |clickhouse.replicas.max.absolute.delay |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum replica queue delay relative to current time |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30838 |18 | |10323 |ClickHouse: Total number read-only Replicas |clickhouse.replicas.readonly.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of Replicated tables that are currently in readonly state &eol;due to re-initialization after ZooKeeper session loss &eol;or due to startup without ZooKeeper configured." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30839 |18 | |10323 |ClickHouse: Revision |clickhouse.revision |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Revision of the server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30840 |18 | |10323 |ClickHouse: ZooKeeper exeptions per second |clickhouse.zookeper.exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions that does not belong to user/hardware exceptions. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30841 |18 | |10323 |ClickHouse: New SELECT queries per second |clickhouse.select_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30842 |18 | |10323 |ClickHouse: ZooKeeper user exeptions per second |clickhouse.zookeper.user_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by no znodes, bad version, node exists, node empty and no children for ephemeral. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30843 |18 | |10323 |ClickHouse: ZooKeeper sessions |clickhouse.zookeper.session |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of sessions (connections) to ZooKeeper. Should be no more than one. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30844 |18 | |10323 |ClickHouse: ZooKeeper requests |clickhouse.zookeper.request |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests to ZooKeeper in progress. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30845 |18 | |10323 |ClickHouse: ZooKeeper hardware exeptions per second |clickhouse.zookeper.hw_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by session moved/expired, connection loss, marshalling error, operation timed out and invalid zhandle state. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30846 |18 | |10323 |ClickHouse: Uptime |clickhouse.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since ClickHouse server start |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30847 |18 | |10323 |ClickHouse: Current running queries |clickhouse.query.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing queries |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30848 |18 | |10323 |ClickHouse: Current distribute connections |clickhouse.connections.distribute |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to remote servers sending data that was INSERTed into Distributed tables. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30849 |18 | |10323 |ClickHouse: Current HTTP connections |clickhouse.connections.http |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to HTTP server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30850 |18 | |10323 |ClickHouse: Allocated bytes |clickhouse.jemalloc.allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes allocated by the application." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30851 |18 | |10323 |ClickHouse: Current Interserver connections |clickhouse.connections.interserver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections from other replicas to fetch parts. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30852 |18 | |10323 |ClickHouse: Current MySQL connections |clickhouse.connections.mysql |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to MySQL server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30853 |18 | |10323 |ClickHouse: Current TCP connections |clickhouse.connections.tcp |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to TCP server (clients with native interface). |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30854 |18 | |10323 |ClickHouse: Current distributed files to insert |clickhouse.distributed.files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30855 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.fail.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Connection failures after all retries in replicated DB connection pool" |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30856 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.retry.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Connection retries in replicated DB connection pool |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30857 |18 | |10323 |ClickHouse: New INSERT queries per second |clickhouse.insert_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30858 |18 | |10323 |ClickHouse: Delayed insert queries |clickhouse.insert.delay |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30859 |18 | |10323 |ClickHouse: Inserted bytes per second |clickhouse.inserted_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of uncompressed bytes inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30860 |18 | |10323 |ClickHouse: Inserted rows per second |clickhouse.inserted_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of rows inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30861 |18 | |10323 |ClickHouse: Mapped memory |clickhouse.jemalloc.mapped |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes in active extents mapped by the allocator." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30862 |18 | |10323 |ClickHouse: Network errors per second |clickhouse.network.error.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Network errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30863 |18 | |10323 |ClickHouse: Resident memory |clickhouse.jemalloc.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Maximum number of bytes in physically resident data pages mapped by the allocator, &eol;comprising all pages dedicated to allocator metadata, pages backing active allocations, &eol;and unused dirty pages." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30864 |18 | |10323 |ClickHouse: Max count of parts per partition across all tables |clickhouse.max.part.count.for.partition |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30865 |18 | |10323 |ClickHouse: Memory used for queries |clickhouse.memory.tracking |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in currently executing queries." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30866 |18 | |10323 |ClickHouse: Memory used for background merges |clickhouse.memory.tracking.background |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround merges, mutations and fetches).&eol; Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30867 |18 | |10323 |ClickHouse: Memory used for backround moves |clickhouse.memory.tracking.background.moves |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&eol; This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30868 |18 | |10323 |ClickHouse: Memory used for merges |clickhouse.memory.tracking.merges |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. &eol;This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30869 |18 | |10323 |ClickHouse: Memory used for background schedule pool |clickhouse.memory.tracking.schedule.pool |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables)." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30870 |18 | |10323 |ClickHouse: Uncompressed bytes merged per second |clickhouse.merge_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Uncompressed bytes that were read for background merges |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30871 |18 | |10323 |ClickHouse: Merged rows per second |clickhouse.merge_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rows read for background merges. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30872 |18 | |10323 |ClickHouse: Current running merges |clickhouse.merge.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing background merges |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30873 |18 | |10323 |ClickHouse: ZooKeeper watches |clickhouse.zookeper.watch |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of watches (e.g., event subscriptions) in ZooKeeperr. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30874 |18 | |10323 |Dictionaries |clickhouse.dictionaries.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about dictionaries |0 |30d |1 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30875 |18 | |10323 |Replicas |clickhouse.replicas.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about replicas |0 |30d |1 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30876 |18 | |10323 |Tables |clickhouse.tables.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about tables |0 |30d |1 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30877 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Bytes allocated |clickhouse.dictionary.bytes_allocated["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of RAM the dictionary uses. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30878 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Element count |clickhouse.dictionary.element_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of items stored in the dictionary. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30879 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Load factor |clickhouse.dictionary.load_factor["{#NAME}"] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage filled in the dictionary (for a hashed dictionary, the percentage filled in the hash table). |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30880 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Active replicas |clickhouse.replica.active_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas). (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30881 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica future parts |clickhouse.replica.future_parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts that will appear as the result of INSERTs or merges that haven’t been done yet. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30882 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size |clickhouse.replica.inserts_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of inserts of blocks of data that need to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30883 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica readonly |clickhouse.replica.is_readonly["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |Whether the replica is in read-only mode.&eol;This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30884 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica session expired |clickhouse.replica.is_session_expired["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |True if the ZooKeeper session expired |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30885 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica lag |clickhouse.replica.lag["{#DB}.{#TABLE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Difference between log_max_index and log_pointer |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30886 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log max index |clickhouse.replica.log_max_index["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30887 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log pointer |clickhouse.replica.log_pointer["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30888 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue merges size |clickhouse.replica.merges_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of merges waiting to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30889 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica parts to check |clickhouse.replica.parts_to_check["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30890 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue size |clickhouse.replica.queue_size["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the queue for operations waiting to be performed. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30891 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Total replicas |clickhouse.replica.total_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of known replicas of this table. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30892 |18 | |10323 |ClickHouse: {#DB}: Bytes |clickhouse.db.bytes["{#DB}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size in bytes. |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30893 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Bytes |clickhouse.table.bytes["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Table size in bytes. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30894 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Parts |clickhouse.table.parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of parts of the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30895 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Rows |clickhouse.table.rows["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows in the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10020 |0 | |10001 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10059 |0 | |10001 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10073 |5 | |10084 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |10061 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10074 |5 | |10084 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |10062 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10075 |5 | |10084 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |10063 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10076 |5 | |10084 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |10064 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10077 |5 | |10084 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |10065 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10078 |5 | |10084 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |10066 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22833 |0 | |10074 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22834 |0 | |10074 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22873 |0 | |10075 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22874 |0 | |10075 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22913 |0 | |10076 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22914 |0 | |10076 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22953 |0 | |10077 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22954 |0 | |10077 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22993 |0 | |10078 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22994 |0 | |10078 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23033 |0 | |10079 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23034 |0 | |10079 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23160 |0 | |10081 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |22232 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23161 |0 | |10081 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |22231 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23252 |5 | |10084 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |22424 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23253 |5 | |10084 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22412 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23255 |5 | |10084 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22430 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23256 |5 | |10084 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |22422 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23257 |5 | |10084 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22406 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23258 |5 | |10084 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |22408 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23259 |5 | |10084 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22402 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23260 |5 | |10084 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |22418 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23261 |5 | |10084 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22416 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23262 |5 | |10084 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22689 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23264 |5 | |10084 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22399 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23265 |5 | |10084 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22420 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23266 |5 | |10084 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |22414 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23267 |5 | |10084 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |23171 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23268 |5 | |10084 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |22426 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23269 |5 | |10084 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |22404 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23270 |5 | |10084 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |22400 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23271 |5 | |10084 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |22219 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23272 |5 | |10084 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |23251 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23273 |5 | |10084 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |22189 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23274 |5 | |10084 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |22183 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23275 |5 | |10084 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |22396 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23276 |5 | |10084 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |22185 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23277 |5 | |10084 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |22187 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23287 |0 | |10084 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |10020 |10 | | |0 | | | | |0 |1 |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23288 |0 | |10084 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |10059 |NULL | | |0 | | | | |0 |1 | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23319 |0 | |10001 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23320 |0 | |10074 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23321 |0 | |10075 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23322 |0 | |10076 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23323 |0 | |10077 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23324 |0 | |10078 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23325 |0 | |10079 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23326 |0 | |10081 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23318 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23327 |0 | |10084 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |23319 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23328 |5 | |10084 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |22401 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23620 |5 | |10084 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |22191 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23625 |5 | |10084 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |22196 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23628 |5 | |10084 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |22199 |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23635 |5 | |10084 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |23634 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23662 |5 | |10084 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |23661 |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23664 |5 | |10084 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |23663 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25367 |5 | |10084 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25366 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25371 |5 | |10084 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25370 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25667 |5 | |10084 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |25665 |NULL | | |0 | | | | |0 |NULL | |0 |30 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25668 |5 | |10084 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |25666 |NULL | | |0 | | | | |0 |NULL | |0 |30 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27138 |3 | |10203 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27067 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27139 |3 | |10203 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27066 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27140 |3 | |10203 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27065 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27149 |3 | |10204 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27067 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27150 |3 | |10204 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27066 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27151 |3 | |10204 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27065 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27180 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10207 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27181 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27182 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27183 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27184 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27185 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27186 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27187 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27188 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27189 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27190 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10207 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27191 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27192 |3 | |10207 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27193 |3 | |10207 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27194 |3 | |10207 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10208 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27216 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27217 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27218 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27219 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27220 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27221 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27222 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27223 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27224 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27225 |3 | |10208 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27226 |3 | |10208 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27227 |3 | |10208 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27251 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10210 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27252 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27253 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27254 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27255 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27256 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27257 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27258 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27259 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27260 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27261 |3 | |10210 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27262 |3 | |10210 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27263 |3 | |10210 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27272 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10211 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27273 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27274 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27275 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27276 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27277 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27278 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27279 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27280 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27281 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27282 |3 | |10211 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27283 |3 | |10211 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27284 |3 | |10211 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27299 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10210 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27301 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10211 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27321 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10218 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27322 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27323 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27324 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27325 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27326 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27327 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27328 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27329 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27330 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27331 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10218 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27332 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27333 |3 | |10218 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27334 |3 | |10218 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27335 |3 | |10218 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27365 |3 | |10220 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27366 |3 | |10220 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27367 |3 | |10220 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27380 |20 |1.3.6.1.4.1.9.2.1.58 |10220 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |27376 |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27382 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10220 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27383 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10220 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27385 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10218 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27386 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10218 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27397 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10218 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10218 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |27391 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27399 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10218 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27400 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10218 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27401 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10218 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27402 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10218 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27409 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10220 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27410 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10220 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27411 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10220 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27412 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10220 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27413 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10220 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27425 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27426 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27427 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10218 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |27417 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27428 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10218 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27429 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27430 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10218 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27431 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10218 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27432 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10218 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27443 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27444 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27445 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10220 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27446 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27447 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10220 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27448 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10220 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27449 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10220 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27450 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10221 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27451 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27452 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27453 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27454 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27455 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27456 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27457 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27458 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27459 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27460 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10221 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27461 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27462 |3 | |10221 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27463 |3 | |10221 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27464 |3 | |10221 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27486 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10222 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27487 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27488 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27489 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27490 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27491 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27492 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27493 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27494 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27495 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27496 |3 | |10222 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27497 |3 | |10222 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27498 |3 | |10222 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27520 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10223 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27521 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27522 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27523 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27524 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27525 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27526 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27527 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27528 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27529 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27530 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10223 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27531 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27532 |3 | |10223 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27533 |3 | |10223 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27534 |3 | |10223 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27556 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10224 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27557 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27558 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27559 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27560 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27561 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27562 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27563 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27564 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27565 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27566 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10224 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27567 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27568 |3 | |10224 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27569 |3 | |10224 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27570 |3 | |10224 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27596 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10225 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27068 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27597 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27069 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27598 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27076 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27599 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27074 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27600 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27072 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27601 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27073 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27602 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27075 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27603 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27071 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27604 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27077 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27605 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10225 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27070 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27606 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10225 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27029 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27607 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10225 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27030 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27608 |3 | |10225 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27138 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27609 |3 | |10225 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27139 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27610 |3 | |10225 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27140 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27611 |17 | |10225 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27146 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27615 |20 |1.3.6.1.2.1.1.5.0 |10225 |System name |system.name |1h |2w |0 |0 |1 | | | | |27141 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27618 |5 | |10225 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27143 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27619 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10226 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27620 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27621 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27622 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27623 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27624 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27625 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27626 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27627 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27628 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27629 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10226 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27630 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27631 |3 | |10226 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27632 |3 | |10226 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27633 |3 | |10226 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27642 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10227 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27643 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27644 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27645 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27646 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27647 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27648 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27649 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27650 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27651 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27652 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10227 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27653 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27654 |3 | |10227 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27655 |3 | |10227 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27656 |3 | |10227 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27722 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10229 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27723 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27724 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27725 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27726 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27727 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27728 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27729 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27730 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27731 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27732 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10229 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27733 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27734 |3 | |10229 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27735 |3 | |10229 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27736 |3 | |10229 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27756 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10230 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27757 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27758 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27759 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27760 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27761 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27762 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27763 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27764 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27765 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27766 |3 | |10230 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27767 |3 | |10230 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27768 |3 | |10230 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27788 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10231 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27789 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27790 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27791 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27792 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27793 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27794 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27795 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27796 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27797 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27798 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10231 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27799 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27800 |3 | |10231 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27801 |3 | |10231 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27802 |3 | |10231 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27872 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10233 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27873 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27874 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27875 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27876 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27877 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27878 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27879 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27880 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27881 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27882 |3 | |10233 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27883 |3 | |10233 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27884 |3 | |10233 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27909 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10234 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27910 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27911 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27912 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27913 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27914 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27915 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27916 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27917 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27918 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27919 |3 | |10234 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27920 |3 | |10234 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27921 |3 | |10234 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27944 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10235 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27945 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27946 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27947 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27948 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27949 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27950 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27951 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27952 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27953 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27954 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10235 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27955 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27956 |3 | |10235 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27957 |3 | |10235 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27958 |3 | |10235 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27976 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10236 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27977 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27978 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27979 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27084 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27980 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27082 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27981 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27083 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27982 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27085 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27983 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27984 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27985 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27986 |3 | |10236 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27987 |3 | |10236 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27988 |3 | |10236 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28005 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10237 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27068 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28006 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27069 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28007 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27076 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28008 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27074 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28009 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27072 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28010 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27073 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28011 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27075 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occurat re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28012 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27071 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28013 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27077 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28014 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27070 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28015 |3 | |10237 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27138 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28016 |3 | |10237 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27139 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28017 |3 | |10237 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27140 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27146 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |1h |2w |0 |0 |1 | | | | |27141 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27143 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10250 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28120 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28121 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28122 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28123 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28124 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28125 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28126 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28127 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28128 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10250 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28129 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28130 |3 | |10250 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28131 |3 | |10250 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28132 |3 | |10250 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28175 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28176 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28177 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28178 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28179 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28180 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28181 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28182 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28183 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28184 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28185 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28186 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28187 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28188 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28192 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28195 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28207 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10253 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28208 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10253 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28209 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10253 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28210 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10253 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28212 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10253 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |27396 |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28213 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10253 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |27395 |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28214 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10253 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |27394 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28215 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10253 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27423 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28216 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10253 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27422 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28217 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |27420 |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28218 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |27421 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28219 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10253 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |27390 |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28220 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27415 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28222 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |27416 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28223 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10253 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28224 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28225 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28226 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28227 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28228 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28229 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28230 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28231 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28232 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28233 |3 | |10253 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28234 |3 | |10253 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28235 |3 | |10253 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28245 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10253 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |28244 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28247 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |28246 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28249 |5 | |10084 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |28248 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28280 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10254 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28281 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28282 |3 | |10254 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28283 |3 | |10254 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28284 |3 | |10254 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28293 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10254 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28294 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28295 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28296 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28297 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28298 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28299 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28300 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28301 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28302 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28330 |3 | |10255 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28331 |3 | |10255 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28332 |3 | |10255 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28377 |3 | |10256 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28378 |3 | |10256 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28379 |3 | |10256 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28426 |3 | |10257 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27138 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28427 |3 | |10257 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27139 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28428 |3 | |10257 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27140 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28429 |17 | |10257 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27146 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28433 |20 |1.3.6.1.2.1.1.5.0 |10257 |System name |system.name |1h |2w |0 |0 |1 | | | | |27141 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28436 |5 | |10257 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27143 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28454 |3 | |10258 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28455 |3 | |10258 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28456 |3 | |10258 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28482 |3 | |10259 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28483 |3 | |10259 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28484 |3 | |10259 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28534 |5 | |10084 |Zabbix LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |28533 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28536 |5 | |10084 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |28535 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28538 |5 | |10084 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |28537 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28955 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10248 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28956 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28957 |3 | |10248 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28958 |3 | |10248 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28959 |3 | |10248 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28968 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10248 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28969 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28970 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28971 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28972 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28973 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28974 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28975 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28976 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28977 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28993 |15 | |10248 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |28978 |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28994 |20 |1.3.6.1.4.1.2021.4.6.0 |10248 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |28979 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28995 |20 |1.3.6.1.4.1.2021.4.14.0 |10248 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |28980 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28996 |20 |1.3.6.1.4.1.2021.4.15.0 |10248 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |28981 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28997 |20 |1.3.6.1.4.1.2021.4.5.0 |10248 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |28982 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28998 |15 | |10248 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |28983 |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28999 |20 |1.3.6.1.4.1.2021.4.3.0 |10248 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |28984 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29000 |20 |1.3.6.1.4.1.2021.4.4.0 |10248 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |28985 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29001 |15 | |10248 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |28986 |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29002 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10248 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |28987 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29003 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10248 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |28988 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29004 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10248 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |28989 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29005 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10248 |Number of CPUs |system.cpu.num[snmp] |1m |7d |365d |0 |3 | | | | |28990 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;Count the number of CPU cores by counting number of cores discovered in hrProcessorTable using LLD |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29006 |20 |1.3.6.1.4.1.2021.11.59.0 |10248 |Interrupts per second |system.cpu.intr[ssRawInterrupts.0] |1m |7d |365d |0 |0 | | | | |28991 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29007 |20 |1.3.6.1.4.1.2021.11.60.0 |10248 |Context switches per second |system.cpu.switches[ssRawContexts.0] |1m |7d |365d |0 |0 | | | | |28992 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29011 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10248 |Block devices discovery |vfs.dev.discovery[snmp] |1h |90d |0 |0 |4 | | | | |29008 |NULL | | |0 | | | | |1 |NULL |Block devices are discovered from UCD-DISKIO-MIB::diskIOTable (http://net-snmp.sourceforge.net/docs/mibs/ucdDiskIOMIB.html#diskIOTable) |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29012 |18 | |10248 |CPU discovery |cpu.discovery[snmp] |0 |90d |0 |0 |4 | | | | |29009 |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |29005 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29013 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10248 |Mounted filesystem discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |29010 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29031 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[diskIOReads.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!r/s | | |29014 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of read accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29032 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[diskIOWrites.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |!w/s | | |29015 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The number of write accesses from this device since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29033 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10248 |{#DEVNAME}: Disk utilization |vfs.dev.util[diskIOLA1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29016 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-DISKIO-MIB&eol;The 1 minute average load of disk (%) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29034 |20 |1.3.6.1.4.1.2021.11.53.0 |10248 |CPU idle time |system.cpu.idle[ssCpuRawIdle.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29017 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29035 |20 |1.3.6.1.4.1.2021.11.52.0 |10248 |CPU system time |system.cpu.system[ssCpuRawSystem.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29018 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29036 |20 |1.3.6.1.4.1.2021.11.50.0 |10248 |CPU user time |system.cpu.user[ssCpuRawUser.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29019 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29037 |20 |1.3.6.1.4.1.2021.11.64.0 |10248 |CPU steal time |system.cpu.steal[ssCpuRawSteal.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29020 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29038 |20 |1.3.6.1.4.1.2021.11.61.0 |10248 |CPU softirq time |system.cpu.softirq[ssCpuRawSoftIRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29021 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29039 |20 |1.3.6.1.4.1.2021.11.51.0 |10248 |CPU nice time |system.cpu.nice[ssCpuRawNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29022 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29040 |20 |1.3.6.1.4.1.2021.11.54.0 |10248 |CPU iowait time |system.cpu.iowait[ssCpuRawWait.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29023 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29041 |20 |1.3.6.1.4.1.2021.11.56.0 |10248 |CPU interrupt time |system.cpu.interrupt[ssCpuRawInterrupt.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29024 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29042 |20 |1.3.6.1.4.1.2021.11.65.0 |10248 |CPU guest time |system.cpu.guest[ssCpuRawGuest.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29025 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29043 |20 |1.3.6.1.4.1.2021.11.66.0 |10248 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29026 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29044 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10248 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29027 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29045 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10248 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29028 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29047 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10248 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29030 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29049 |18 | |10248 |CPU utilization |system.cpu.util[snmp,{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |29048 |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |29034 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29050 |3 | |10249 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29051 |3 | |10249 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29052 |3 | |10249 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29077 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10249 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27118 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29078 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27119 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29079 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27126 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29080 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27124 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and atother times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29081 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27122 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29082 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27123 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29083 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27125 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29084 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27121 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29085 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27127 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29086 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27120 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29124 |0 | |10001 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29087 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29125 |0 | |10001 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29088 |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29126 |0 | |10001 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29089 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29127 |0 | |10001 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29090 |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29128 |0 | |10001 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29091 |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29129 |0 | |10001 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29092 |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29130 |0 | |10001 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29093 |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29131 |0 | |10001 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29094 |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29132 |0 | |10001 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29095 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29133 |0 | |10001 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29096 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29134 |0 | |10001 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29097 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29135 |0 | |10001 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29098 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29136 |0 | |10001 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29099 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29137 |0 | |10001 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29100 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29138 |0 | |10001 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29101 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29139 |0 | |10001 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29102 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29140 |0 | |10001 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29103 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29141 |0 | |10001 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29104 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29142 |0 | |10001 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29105 |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29143 |0 | |10001 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29106 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29144 |0 | |10001 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29107 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29145 |0 | |10001 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29108 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29146 |0 | |10001 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |29109 |NULL | | |0 | | | | |0 |NULL |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29147 |0 | |10001 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29110 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29148 |0 | |10001 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29111 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29149 |0 | |10001 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29112 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29150 |0 | |10001 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29113 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29151 |0 | |10001 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29152 |0 | |10001 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29115 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29153 |0 | |10001 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29116 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29154 |0 | |10001 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29117 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29155 |0 | |10001 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29118 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29156 |0 | |10001 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29119 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29157 |0 | |10001 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29120 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29158 |0 | |10001 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29121 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29159 |0 | |10001 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29122 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29160 |0 | |10001 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29123 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29161 |0 | |10084 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29124 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29162 |0 | |10084 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29125 |NULL | | |0 | | | | |0 |1 |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29163 |0 | |10084 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29126 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29164 |0 | |10084 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29127 |NULL | | |0 | | | | |0 |1 |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29165 |0 | |10084 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29128 |NULL | | |0 | | | | |0 |1 |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29166 |0 | |10084 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29129 |NULL | | |0 | | | | |0 |1 |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29167 |0 | |10084 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29130 |NULL | | |0 | | | | |0 |1 |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29168 |0 | |10084 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29131 |NULL | | |0 | | | | |0 |1 |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29169 |0 | |10084 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29132 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29170 |0 | |10084 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29133 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29171 |0 | |10084 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29134 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29172 |0 | |10084 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29135 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29173 |0 | |10084 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29136 |NULL | | |0 | | | | |0 |1 |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29174 |0 | |10084 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29137 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29175 |0 | |10084 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29138 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29176 |0 | |10084 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29139 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29177 |0 | |10084 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29140 |NULL | | |0 | | | | |0 |1 |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29178 |0 | |10084 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29141 |NULL | | |0 | | | | |0 |1 |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29179 |0 | |10084 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29142 |NULL | | |0 | | | | |0 |1 |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29180 |0 | |10084 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29143 |NULL | | |0 | | | | |0 |1 |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29181 |0 | |10084 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29144 |NULL | | |0 | | | | |0 |1 |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29182 |0 | |10084 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29145 |NULL | | |0 | | | | |0 |1 |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29183 |0 | |10084 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |29146 |NULL | | |0 | | | | |0 |1 |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29184 |0 | |10084 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29147 |NULL | | |0 | | | | |0 |1 |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29185 |0 | |10084 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29148 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29186 |0 | |10084 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29149 |NULL | | |0 | | | | |0 |1 |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29187 |0 | |10084 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29150 |NULL | | |0 | | | | |0 |1 |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29188 |0 | |10084 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29189 |0 | |10084 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29152 |NULL | | |0 | | | | |0 |1 |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29190 |0 | |10084 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29153 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29191 |0 | |10084 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29154 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29192 |0 | |10084 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29155 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29193 |0 | |10084 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29156 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29194 |0 | |10084 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29157 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29195 |0 | |10084 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29158 |NULL | | |0 | | | | |0 |1 | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29196 |0 | |10084 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29159 |NULL | | |0 | | | | |0 |1 |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29197 |0 | |10084 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29160 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29199 |18 | |10001 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29198 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29136 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29200 |18 | |10084 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29199 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29204 |0 | |10001 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29201 |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29205 |18 | |10001 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29202 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29206 |0 | |10001 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29203 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29207 |0 | |10084 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29204 |NULL | | |0 | | | | |1 |1 |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29208 |18 | |10084 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29205 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29209 |0 | |10084 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29206 |NULL | | |0 | | | | |1 |1 |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29224 |0 | |10001 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29210 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29225 |0 | |10001 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29211 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29226 |0 | |10001 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29212 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29227 |0 | |10001 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29213 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29228 |15 | |10001 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29214 |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29229 |15 | |10001 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29215 |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29230 |0 | |10001 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29216 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29231 |0 | |10001 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29217 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29232 |0 | |10001 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29218 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29233 |0 | |10001 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29219 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29234 |0 | |10001 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29220 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29235 |0 | |10001 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29221 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29236 |0 | |10001 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29222 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29237 |0 | |10001 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29223 |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29238 |0 | |10084 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29224 |NULL | | |0 | | | | |2 |1 |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29239 |0 | |10084 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29225 |NULL | | |0 | | | | |2 |1 |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29240 |0 | |10084 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29226 |NULL | | |0 | | | | |2 |1 |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29241 |0 | |10084 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29227 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29242 |15 | |10084 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29228 |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29243 |15 | |10084 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29229 |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29244 |0 | |10084 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29230 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29245 |0 | |10084 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29231 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29246 |0 | |10084 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29232 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29247 |0 | |10084 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29233 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29248 |0 | |10084 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29234 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29249 |0 | |10084 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29235 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29250 |0 | |10084 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29236 |20 | | |0 | | | | |2 |1 |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29251 |0 | |10084 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29237 |78 | | |0 | | | | |2 |1 |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29258 |18 | |10001 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |29252 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29259 |18 | |10001 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |29253 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29260 |18 | |10001 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29254 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29261 |18 | |10001 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29255 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29262 |18 | |10001 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29256 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29263 |18 | |10001 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29257 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29146 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29264 |18 | |10084 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |29258 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29265 |18 | |10084 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |29259 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29266 |18 | |10084 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29260 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29267 |18 | |10084 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29261 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29268 |18 | |10084 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29262 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29269 |18 | |10084 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29263 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29310 |7 | |10284 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29273 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29311 |7 | |10284 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29274 |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29312 |7 | |10284 |Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |29275 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29313 |7 | |10284 |CPU guest nice time |system.cpu.util[,guest_nice] |1m |7d |365d |0 |0 | |% | | |29276 |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29314 |7 | |10284 |CPU guest time |system.cpu.util[,guest] |1m |7d |365d |0 |0 | |% | | |29277 |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29315 |7 | |10284 |CPU softirq time |system.cpu.util[,softirq] |1m |7d |365d |0 |0 | |% | | |29278 |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29316 |7 | |10284 |CPU interrupt time |system.cpu.util[,interrupt] |1m |7d |365d |0 |0 | |% | | |29279 |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29317 |7 | |10284 |CPU steal time |system.cpu.util[,steal] |1m |7d |365d |0 |0 | |% | | |29280 |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29318 |7 | |10284 |CPU nice time |system.cpu.util[,nice] |1m |7d |365d |0 |0 | |% | | |29281 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29319 |7 | |10284 |Load average (1m avg) |system.cpu.load[all,avg1] |1m |7d |365d |0 |0 | | | | |29282 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29320 |7 | |10284 |CPU user time |system.cpu.util[,user] |1m |7d |365d |0 |0 | |% | | |29283 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29321 |7 | |10284 |CPU system time |system.cpu.util[,system] |1m |7d |365d |0 |0 | |% | | |29284 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29322 |7 | |10284 |CPU idle time |system.cpu.util[,idle] |1m |7d |365d |0 |0 | |% | | |29285 |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29323 |7 | |10284 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29286 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29324 |7 | |10284 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29287 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29325 |7 | |10284 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29288 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29326 |7 | |10284 |Memory utilization |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29289 |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29327 |7 | |10284 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29290 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29328 |7 | |10284 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29291 |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/current/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29329 |7 | |10284 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29292 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29330 |7 | |10284 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29293 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29331 |7 | |10284 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29294 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29332 |7 | |10284 |Get /proc/diskstats |vfs.file.contents[/proc/diskstats] |1m |1h |0 |0 |4 | | | | |29295 |NULL | | |0 | | | | |0 |NULL |Get contents of /proc/diskstats for discovery and disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29333 |7 | |10284 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29296 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29334 |7 | |10284 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29297 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29335 |0 | |10284 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29298 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29336 |7 | |10284 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29299 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29337 |7 | |10284 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29300 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29338 |7 | |10284 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29301 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29339 |7 | |10284 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29302 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29340 |7 | |10284 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29303 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29341 |7 | |10284 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |29304 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29342 |7 | |10284 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |29305 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29343 |7 | |10284 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |29306 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29344 |7 | |10284 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |29307 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29345 |7 | |10284 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29308 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29346 |7 | |10284 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |29309 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29348 |18 | |10284 |CPU utilization |system.cpu.util |0 |7d |365d |0 |0 | |% | | |29347 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |29322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29352 |7 | |10284 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29349 |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29353 |18 | |10284 |Block devices discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29350 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29354 |7 | |10284 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |29351 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29369 |7 | |10284 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29355 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29370 |7 | |10284 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29356 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29371 |7 | |10284 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29357 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29372 |7 | |10284 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |29358 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29373 |15 | |10284 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29359 |NULL |(last("vfs.dev.read.time.rate[{#DEVNAME}]")/(last("vfs.dev.read.rate[{#DEVNAME}]")+(last("vfs.dev.read.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.read.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29374 |15 | |10284 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |29360 |NULL |(last("vfs.dev.write.time.rate[{#DEVNAME}]")/(last("vfs.dev.write.rate[{#DEVNAME}]")+(last("vfs.dev.write.rate[{#DEVNAME}]")=0)))*1000*(last("vfs.dev.write.rate[{#DEVNAME}]") > 0) | |0 | | | | |2 |NULL |This formula contains two boolean expressions that evaluates to 1 or 0 in order to set calculated metric to zero and to avoid division by zero exception. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29375 |7 | |10284 |Interface {#IFNAME}: Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29361 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29376 |7 | |10284 |Interface {#IFNAME}: Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29362 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29377 |7 | |10284 |Interface {#IFNAME}: Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29363 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29378 |7 | |10284 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29364 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29379 |7 | |10284 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29365 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29380 |7 | |10284 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29366 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29381 |7 | |10284 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29367 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29382 |7 | |10284 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29368 |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29389 |18 | |10284 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!r/s | | |29383 |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29390 |18 | |10284 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | |!w/s | | |29384 |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29391 |18 | |10284 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29385 |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29392 |18 | |10284 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29386 |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29393 |18 | |10284 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29387 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29394 |18 | |10284 |{#DEVNAME}: Disk utilization |vfs.dev.util[{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29388 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29332 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29480 |0 | |10081 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29454 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29481 |0 | |10081 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29455 |NULL | | |0 | | | | |0 |NULL |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%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29482 |0 | |10081 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |29456 |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29483 |0 | |10081 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |29457 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29484 |0 | |10081 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |29458 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29485 |0 | |10081 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29459 |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29486 |0 | |10081 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29460 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29487 |0 | |10081 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29461 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29488 |15 | |10081 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29462 |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29489 |0 | |10081 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29463 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29490 |0 | |10081 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29464 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29491 |0 | |10081 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29465 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29492 |0 | |10081 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29466 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29493 |0 | |10081 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29467 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29494 |0 | |10081 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |29468 |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29495 |0 | |10081 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |29469 |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29496 |0 | |10081 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |29470 |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29497 |0 | |10081 |Physical disks WMI get |wmi.getall[root\cimv2,"select * from win32_perfformatteddata_perfdisk_physicaldisk"] |1m |1h |0 |0 |4 | | | | |29471 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_perfformatteddata_perfdisk_physicaldisk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29498 |0 | |10081 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29472 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29499 |0 | |10081 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29473 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29500 |0 | |10081 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29474 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29501 |0 | |10081 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29502 |0 | |10081 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29476 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29503 |0 | |10081 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29477 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29504 |0 | |10081 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29478 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29505 |0 | |10081 |Network interfaces WMI get |wmi.getall[root\cimv2,"select * from win32_networkadapter where PhysicalAdapter=True"] |1m |1h |0 |0 |4 | | | | |29479 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29509 |0 | |10081 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29506 |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29510 |18 | |10081 |Physical disks discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29507 |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29511 |18 | |10081 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |29508 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |29505 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29521 |0 | |10081 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29512 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29522 |0 | |10081 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29513 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29523 |0 | |10081 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29514 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29524 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29515 |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29525 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29516 |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29526 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29517 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29527 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29518 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29528 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29519 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29529 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29520 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29537 |18 | |10081 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[DiskReadsPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!r/s | | |29530 |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29538 |18 | |10081 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[DiskWritesPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!w/s | | |29531 |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29539 |18 | |10081 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[CurrentDiskQueueLength.{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29532 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29540 |18 | |10081 |{#DEVNAME}: Disk utilization |vfs.dev.util[PercentDiskTime.{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29533 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29497 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29541 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |29534 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |29505 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29542 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |29535 |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |29505 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29543 |18 | |10081 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |29536 |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |29505 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29548 |5 | |10001 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29549 |5 | |10074 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29550 |5 | |10075 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29551 |5 | |10076 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29552 |5 | |10077 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29553 |5 | |10078 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29554 |5 | |10079 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29555 |5 | |10081 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29557 |5 | |10084 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29548 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29558 |7 | |10299 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29559 |7 | |10299 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29560 |7 | |10299 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29587 |7 | |10299 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29561 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29588 |7 | |10299 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29562 |NULL | | |0 | | | | |0 |NULL |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%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29589 |7 | |10299 |Context switches per second |perf_counter_en["\System\Context Switches/sec"] |1m |7d |365d |0 |0 | | | | |29563 |NULL | | |0 | | | | |0 |NULL |Context Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another.&eol;Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service.&eol;It is the sum of Thread\\Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches.&eol;There are context switch counters on the System and Thread objects. This counter displays the difference between the values observed in the last two samples, divided by the duration of the sample interval. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29590 |7 | |10299 |CPU privileged time |perf_counter_en["\Processor Information(_total)\% Privileged Time"] |1m |7d |365d |0 |0 | |% | | |29564 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Privileged Time counter shows the percent of time that the processor is spent &eol;executing in Kernel (or Privileged) mode. Privileged mode includes services interrupts inside Interrupt &eol;Service Routines (ISRs), executing Deferred Procedure Calls (DPCs), Device Driver calls and other kernel-mode &eol;functions of the Windows® Operating System. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29591 |7 | |10299 |CPU user time |perf_counter_en["\Processor Information(_total)\% User Time"] |1m |7d |365d |0 |0 | |% | | |29565 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% User Time counter shows the percent of time that the processor(s) is spent executing &eol;in User mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29592 |7 | |10299 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29566 |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29593 |7 | |10299 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29567 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29594 |7 | |10299 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29568 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29595 |15 | |10299 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29569 |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29596 |7 | |10299 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29570 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29597 |7 | |10299 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29571 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29598 |7 | |10299 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29572 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29599 |7 | |10299 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29573 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29600 |7 | |10299 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29574 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29601 |7 | |10299 |Memory page faults per second |perf_counter_en["\Memory\Page Faults/sec"] |1m |7d |365d |0 |0 | | | | |29575 |NULL | | |0 | | | | |0 |NULL |Page Faults/sec is the average number of pages faulted per second. It is measured in number of pages &eol;faulted per second because only one page is faulted in each fault operation, hence this is also equal &eol;to the number of page fault operations. This counter includes both hard faults (those that require &eol;disk access) and soft faults (where the faulted page is found elsewhere in physical memory.) Most &eol;processors can handle large numbers of soft faults without significant consequence. However, hard faults, &eol;which require disk access, can cause significant delays. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29602 |7 | |10299 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |29576 |NULL | | |0 | | | | |0 |NULL |This measures the rate at which pages are read from or written to disk to resolve hard page faults. &eol;If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29603 |7 | |10299 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |29577 |NULL | | |0 | | | | |0 |NULL |This measures the size, in bytes, of the non-paged pool. This is an area of system memory for objects &eol;that cannot be written to disk but instead must remain in physical memory as long as they are allocated. &eol;There is a possible memory leak if the value is greater than 175MB (or 100MB with the /3GB switch). &eol;A typical Event ID 2019 is recorded in the system event log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29604 |7 | |10299 |Physical disks WMI get |wmi.getall[root\cimv2,"select * from win32_perfformatteddata_perfdisk_physicaldisk"] |1m |1h |0 |0 |4 | | | | |29578 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_perfformatteddata_perfdisk_physicaldisk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29605 |7 | |10299 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29579 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29606 |0 | |10299 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29580 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29607 |7 | |10299 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29581 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29608 |7 | |10299 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29582 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29609 |7 | |10299 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29583 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29610 |7 | |10299 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29584 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29611 |7 | |10299 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29585 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29612 |7 | |10299 |Network interfaces WMI get |wmi.getall[root\cimv2,"select * from win32_networkadapter where PhysicalAdapter=True"] |1m |1h |0 |0 |4 | | | | |29586 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29616 |7 | |10299 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |29613 |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29617 |18 | |10299 |Physical disks discovery |vfs.dev.discovery |0 |90d |0 |0 |4 | | | | |29614 |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29618 |18 | |10299 |Network interfaces discovery |net.if.discovery |0 |90d |0 |0 |4 | | | | |29615 |NULL | | |0 | | | | |1 |NULL |Discovery of installed network interfaces. |0 |30d |1 | |29612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29628 |7 | |10299 |{#FSNAME}: Used space |vfs.fs.size[{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |29619 |NULL | | |0 | | | | |2 |NULL |Used storage in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29629 |7 | |10299 |{#FSNAME}: Total space |vfs.fs.size[{#FSNAME},total] |1m |7d |365d |0 |3 | |B | | |29620 |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29630 |7 | |10299 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29621 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29631 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29622 |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29632 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |29623 |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29633 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29624 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29634 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29625 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29635 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29626 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29636 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29627 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29644 |18 | |10299 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[DiskReadsPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!r/s | | |29637 |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29645 |18 | |10299 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[DiskWritesPersec.{#DEVNAME}] |0 |7d |365d |0 |3 | |!w/s | | |29638 |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29646 |18 | |10299 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[CurrentDiskQueueLength.{#DEVNAME}] |0 |7d |365d |0 |0 | | | | |29639 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29647 |18 | |10299 |{#DEVNAME}: Disk utilization |vfs.dev.util[PercentDiskTime.{#DEVNAME}] |0 |7d |365d |0 |0 | |% | | |29640 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29604 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29648 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |29641 |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |29612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29649 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |29642 |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |29612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29650 |18 | |10299 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |29643 |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |29612 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29823 |5 | |10084 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |29822 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29829 |20 |1.3.6.1.2.1.1.3.0 |10225 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29824 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29830 |20 |1.3.6.1.2.1.1.6.0 |10225 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29825 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29831 |20 |1.3.6.1.2.1.1.4.0 |10225 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29826 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29832 |20 |1.3.6.1.2.1.1.2.0 |10225 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29827 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29833 |20 |1.3.6.1.2.1.1.1.0 |10225 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29828 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29834 |20 |1.3.6.1.2.1.1.3.0 |10237 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29824 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29825 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29826 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29837 |20 |1.3.6.1.2.1.1.2.0 |10237 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29827 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29828 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29839 |20 |1.3.6.1.2.1.1.3.0 |10257 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29824 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29840 |20 |1.3.6.1.2.1.1.6.0 |10257 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29825 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29841 |20 |1.3.6.1.2.1.1.4.0 |10257 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29826 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29842 |20 |1.3.6.1.2.1.1.2.0 |10257 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29827 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29843 |20 |1.3.6.1.2.1.1.1.0 |10257 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29828 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29849 |20 |1.3.6.1.2.1.1.3.0 |10207 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29852 |20 |1.3.6.1.2.1.1.2.0 |10207 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29854 |20 |1.3.6.1.2.1.1.3.0 |10208 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29857 |20 |1.3.6.1.2.1.1.2.0 |10208 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29859 |20 |1.3.6.1.2.1.1.3.0 |10210 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29862 |20 |1.3.6.1.2.1.1.2.0 |10210 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29864 |20 |1.3.6.1.2.1.1.3.0 |10211 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29867 |20 |1.3.6.1.2.1.1.2.0 |10211 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29869 |20 |1.3.6.1.2.1.1.3.0 |10218 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29872 |20 |1.3.6.1.2.1.1.2.0 |10218 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29874 |20 |1.3.6.1.2.1.1.3.0 |10220 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29877 |20 |1.3.6.1.2.1.1.2.0 |10220 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29879 |20 |1.3.6.1.2.1.1.3.0 |10221 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29882 |20 |1.3.6.1.2.1.1.2.0 |10221 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29884 |20 |1.3.6.1.2.1.1.3.0 |10222 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29887 |20 |1.3.6.1.2.1.1.2.0 |10222 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29889 |20 |1.3.6.1.2.1.1.3.0 |10223 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29892 |20 |1.3.6.1.2.1.1.2.0 |10223 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29894 |20 |1.3.6.1.2.1.1.3.0 |10224 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29897 |20 |1.3.6.1.2.1.1.2.0 |10224 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29899 |20 |1.3.6.1.2.1.1.3.0 |10226 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29902 |20 |1.3.6.1.2.1.1.2.0 |10226 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29904 |20 |1.3.6.1.2.1.1.3.0 |10227 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29907 |20 |1.3.6.1.2.1.1.2.0 |10227 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29909 |20 |1.3.6.1.2.1.1.3.0 |10229 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29912 |20 |1.3.6.1.2.1.1.2.0 |10229 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29914 |20 |1.3.6.1.2.1.1.3.0 |10230 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29917 |20 |1.3.6.1.2.1.1.2.0 |10230 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29919 |20 |1.3.6.1.2.1.1.3.0 |10231 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29922 |20 |1.3.6.1.2.1.1.2.0 |10231 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29924 |20 |1.3.6.1.2.1.1.3.0 |10233 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29927 |20 |1.3.6.1.2.1.1.2.0 |10233 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29929 |20 |1.3.6.1.2.1.1.3.0 |10234 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29932 |20 |1.3.6.1.2.1.1.2.0 |10234 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29934 |20 |1.3.6.1.2.1.1.3.0 |10235 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29937 |20 |1.3.6.1.2.1.1.2.0 |10235 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29939 |20 |1.3.6.1.2.1.1.3.0 |10236 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29942 |20 |1.3.6.1.2.1.1.2.0 |10236 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29944 |20 |1.3.6.1.2.1.1.3.0 |10250 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29947 |20 |1.3.6.1.2.1.1.2.0 |10250 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29949 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29950 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29951 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29952 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29953 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29954 |20 |1.3.6.1.2.1.1.3.0 |10253 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29957 |20 |1.3.6.1.2.1.1.2.0 |10253 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29959 |20 |1.3.6.1.2.1.1.3.0 |10254 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29962 |20 |1.3.6.1.2.1.1.2.0 |10254 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29964 |20 |1.3.6.1.2.1.1.3.0 |10255 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29967 |20 |1.3.6.1.2.1.1.2.0 |10255 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29969 |20 |1.3.6.1.2.1.1.3.0 |10256 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29972 |20 |1.3.6.1.2.1.1.2.0 |10256 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29974 |20 |1.3.6.1.2.1.1.3.0 |10258 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29977 |20 |1.3.6.1.2.1.1.2.0 |10258 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29979 |20 |1.3.6.1.2.1.1.3.0 |10259 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29982 |20 |1.3.6.1.2.1.1.2.0 |10259 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29984 |20 |1.3.6.1.2.1.1.3.0 |10248 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29987 |20 |1.3.6.1.2.1.1.2.0 |10248 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29989 |20 |1.3.6.1.2.1.1.3.0 |10249 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29992 |20 |1.3.6.1.2.1.1.2.0 |10249 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29995 |7 | |10284 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29996 |7 | |10284 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29997 |7 | |10284 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30046 |3 | |10304 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30047 |3 | |10304 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30048 |3 | |10304 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30054 |20 |1.3.6.1.2.1.1.2.0 |10304 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30055 |20 |1.3.6.1.2.1.1.3.0 |10304 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30095 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10210 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30096 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10211 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30098 |20 |1.3.6.1.2.1.1.1.0 |10218 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30099 |20 |1.3.6.1.2.1.1.1.0 |10220 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30100 |20 |1.3.6.1.2.1.1.1.0 |10253 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30102 |15 | |10218 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30103 |15 | |10220 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30104 |15 | |10253 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30138 |0 | |10081 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30137 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30140 |7 | |10299 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30139 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30143 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10185 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30142 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30144 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30145 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10249 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30146 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10254 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30149 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30147 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30150 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30148 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30151 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30152 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30153 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30154 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30155 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30156 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30163 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30157 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30164 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30158 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30165 |15 | |10185 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30159 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30166 |15 | |10185 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30160 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30167 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30161 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30168 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30162 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30169 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30170 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30171 |15 | |10251 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30172 |15 | |10251 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30173 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30174 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30175 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30176 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30177 |15 | |10249 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30178 |15 | |10249 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30179 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30180 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30181 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30182 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30183 |15 | |10254 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30184 |15 | |10254 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30185 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30186 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30406 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10184 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30405 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30409 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10184 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30407 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30410 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10184 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30408 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30417 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10184 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30411 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30418 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10184 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30412 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30419 |15 | |10184 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30413 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30420 |15 | |10184 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30414 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30421 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10184 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30415 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30422 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10184 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30416 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30424 |0 | |10081 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30423 |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30426 |0 | |10081 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30425 |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30428 |7 | |10299 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30427 |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30430 |7 | |10299 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30429 |3 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
TABLE |optemplate
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 |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 |16774 |({19622}-{19623})/({19624}-1)>{19623} |ES: Cluster does not have enough space for resharding | |0 |4 |There is not enough disk space for index resharding. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16775 |{19625}>0 |ES: Cluster has the initializing shards | |0 |3 |The cluster has the initializing shards longer than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16776 |{19626}<0 |ES: The number of nodes within the cluster has decreased | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16777 |{19627}>0 |ES: The number of nodes within the cluster has increased | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16778 |{19628}=1 |ES: Health is YELLOW | |0 |3 |All primary shards are assigned, but one or more replica shards are unassigned. &eol;If a node in the cluster fails, some data could be unavailable until that node is repaired. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16779 |{19629}=2 |ES: Health is RED | |0 |4 |One or more primary shards are unassigned, so some data is unavailable. &eol;This can occur briefly during cluster startup as primary shards are assigned. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16780 |{19630}=255 |ES: Health is UNKNOWN | |0 |4 |The health status of the cluster is unknown or cannot be obtained. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16781 |{19631}>0 |ES: Cluster has the unassigned shards | |0 |3 |The cluster has the unassigned shards longer than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16782 |{19632}=2 |ES: Cluster has only two master nodes | |0 |5 |The cluster has only two nodes with a master role and will be unavailable if one of them breaks. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16783 |{19633}<10m |ES: Cluster has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16784 |{19634}>{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} |ES: Service response time is too high (over {$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 |The performance of the TCP service is very low. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16785 |{19635}=0 |ES: Service is down | |0 |3 |The service is unavailable or does not accept TCP connections. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16786 |{19636}>{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN} |ES {#ES.NODE}: Flush latency is too high (over {$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If you see this metric increasing steadily, it may indicate a problem with slow disks; this problem may escalate &eol;and eventually prevent you from being able to add new information to your index. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16787 |{19637}>{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN} |ES {#ES.NODE}: Indexing latency is too high (over {$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If the latency is increasing, it may indicate that you are indexing too many documents at the same time (Elasticsearch’s documentation &eol;recommends starting with a bulk indexing size of 5 to 15 megabytes and increasing slowly from there). |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16788 |{19638}>{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN} |ES {#ES.NODE}: Fetch latency is too high (over {$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |The fetch phase should typically take much less time than the query phase. If you notice this metric consistently increasing, &eol;this could indicate a problem with slow disks, enriching of documents (highlighting the relevant text in search results, etc.), &eol;or requesting too many results. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16789 |{19639}>{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN} |ES {#ES.NODE}: Query latency is too high (over {$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If latency exceeds a threshold, look for potential resource bottlenecks, or investigate whether you need to optimize your queries. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16790 |{19640}>{$ELASTICSEARCH.HEAP_USED.MAX.WARN} |ES {#ES.NODE}: Percent of JVM heap in use is high (over {$ELASTICSEARCH.HEAP_USED.MAX.WARN}% for 1h) | |0 |2 |This indicates that the rate of garbage collection isn’t keeping up with the rate of garbage creation. &eol;To address this problem, you can either increase your heap size (as long as it remains below the recommended &eol;guidelines stated above), or scale out the cluster by adding more nodes. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16791 |{19641}>{$ELASTICSEARCH.HEAP_USED.MAX.CRIT} |ES {#ES.NODE}: Percent of JVM heap in use is critical (over {$ELASTICSEARCH.HEAP_USED.MAX.CRIT}% for 1h) | |0 |4 |This indicates that the rate of garbage collection isn’t keeping up with the rate of garbage creation. &eol;To address this problem, you can either increase your heap size (as long as it remains below the recommended &eol;guidelines stated above), or scale out the cluster by adding more nodes. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16792 |{19642}<10m |ES {#ES.NODE}: Node {#ES.NODE} has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |
-ROW |16793 |{19643}>0 |ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the refresh thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16794 |{19644}>0 |ES {#ES.NODE}: Search thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the search thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16795 |{19645}>0 |ES {#ES.NODE}: Write thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the write thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16796 |{19646}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy TCP 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 |16797 |{19647}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy TCP 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 |16798 |{19648}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy TCP 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 |16799 |{19649}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy TCP 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 |16800 |{19650}=0 |HAProxy TCP Backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16801 |{19651}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy TCP 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 |16802 |{19652}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy TCP 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 |16803 |{19653}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy TCP 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 |16804 |{19654}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy TCP {#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 |16805 |{19655}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy TCP {#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 |16806 |{19656}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy TCP {#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 |16807 |{19657}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy TCP {#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 |16808 |{19658}=0 |HAProxy TCP {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16809 |{19659}>{$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 |16810 |{19660}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16811 |{19661}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy TCP 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 |16812 |{19662}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy TCP 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 |16813 |{19663}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy TCP 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 |16814 |{19664}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy TCP 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 |16815 |{19665}=0 |HAProxy TCP Backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16816 |{19666}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy TCP 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 |16817 |{19667}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy TCP 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 |16818 |{19668}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy TCP 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 |16819 |{19669}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy TCP {#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 |16820 |{19670}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy TCP {#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 |16821 |{19671}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy TCP {#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 |16822 |{19672}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy TCP {#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 |16823 |{19673}=0 |HAProxy TCP {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16824 |{19674}>{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} |ClickHouse: Too many distributed files to insert (over {$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} for 5 min) | |0 |2 |"Clickhouse servers and <remote_servers> in config.xml&eol;https://clickhouse.tech/docs/en/operations/table_engines/distributed/" |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16825 |{19675}>{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN} |ClickHouse: Too many throttled insert queries (over {$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN) for 5 min) | |0 |2 |Clickhouse have INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree, please decrease INSERT frequency |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16826 |{19676}>{$CLICKHOUSE.PARTS.PER.PARTITION.WARN} * 0.9 |ClickHouse: Too many MergeTree parts (over 90% of {$CLICKHOUSE.PARTS.PER.PARTITION.WARN}) | |0 |2 |"Descease INSERT queries frequency.&eol;Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) &eol;and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run, and when you have too much unmerged parts inside partition, &eol;SELECT queries performance can significate degrade, so clickhouse try delay insert, or abort it" |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16827 |{19677}>{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} |ClickHouse: Too many network errors (over {$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} in 5m) | |0 |2 |Number of errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update is too high. |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16828 |{19678}=0 |ClickHouse: ClickHouse: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16829 |{19679}>{$CLICKHOUSE.QUERY_TIME.MAX.WARN} |ClickHouse: There are queries running more than {$CLICKHOUSE.QUERY_TIME.MAX.WARN} seconds | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16830 |{19680}>{$CLICKHOUSE.REPLICA.MAX.WARN} |ClickHouse: Replication lag is too high (over {$CLICKHOUSE.REPLICA.MAX.WARN} sec for 5min) | |0 |2 |"When replica have too much lag, it can be skipped from Distributed SELECT Queries without errors &eol;and you will have wrong query results." |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16831 |{19681}=1 and {19682}>0 |ClickHouse: Configuration has been changed | |0 |1 |ClickHouse configuration has been changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16832 |{19683}<10m |ClickHouse: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16833 |{19684}=1 |ClickHouse: 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 |16834 |{19685}=1 and {19686}>0 |ClickHouse: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |ClickHouse version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |
-ROW |16835 |{19687}>1 |ClickHouse: Too many ZooKeeper sessions opened | |0 |2 |"Number of sessions (connections) to ZooKeeper. &eol;Should be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows." |NULL |0 |0 |0 | |0 | |0 | |
-ROW |16836 |{19688} < {19689} |ClickHouse: {#DB}.{#TABLE}: Number of active replicas less than number of total replicas | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16837 |{19690}=1 |ClickHouse: {#DB}.{#TABLE} Replica is readonly | |0 |2 |This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16838 |{19691}=1 |ClickHouse: {#DB}.{#TABLE} Replica session is expired | |0 |2 |This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16839 |{19692} > {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} |ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high (More than {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |
-ROW |16840 |{19693}>{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN:"{#TABLE}"} |ClickHouse: {#DB}.{#TABLE}: Too many operations in queue (over {$CLICKHOUSE.QUEUE.SIZE.MAX.WARN} for 5m) | |0 |2 | |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 |discover|
+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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |13080 |{13164}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13164}<65 |0 | |0 | |0 |
+ROW |13081 |{13170}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13170}<65 |0 | |0 | |0 |
+ROW |13083 |{13172}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13172}<65 |0 | |0 | |0 |
+ROW |13084 |{13174}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13174}<65 |0 | |0 | |0 |
+ROW |13085 |{13176}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13176}<65 |0 | |0 | |0 |
+ROW |13086 |{13178}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13178}<65 |0 | |0 | |0 |
+ROW |13087 |{13180}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13180}<65 |0 | |0 | |0 |
+ROW |13088 |{13182}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13182}<65 |0 | |0 | |0 |
+ROW |13089 |{13184}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13184}<65 |0 | |0 | |0 |
+ROW |13091 |{13188}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13188}<65 |0 | |0 | |0 |
+ROW |13092 |{13190}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13190}<65 |0 | |0 | |0 |
+ROW |13093 |{13192}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13192}<65 |0 | |0 | |0 |
+ROW |13094 |{13198}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13198}<65 |0 | |0 | |0 |
+ROW |13095 |{13200}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13200}<65 |0 | |0 | |0 |
+ROW |13096 |{13202}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13202}<65 |0 | |0 | |0 |
+ROW |13097 |{13204}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13204}<65 |0 | |0 | |0 |
+ROW |13275 |{13186}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13186}<65 |0 | |0 | |0 |
+ROW |13285 |{13159}=0 |Telnet service is down on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |13331 |{12718}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13332 |{13089}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13333 |{13088}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |0 |
+ROW |13336 |{12723}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13338 |{12725}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13339 |{12726}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13341 |{12728}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |13343 |{12730}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |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 | |0 |
+ROW |13347 |{12734}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13348 |{13074}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13349 |{13073}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |0 |
+ROW |13352 |{12739}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13354 |{12741}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13355 |{12742}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13357 |{12744}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |13359 |{12746}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |13364 |{13071}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13365 |{13070}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |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 | |0 |
+ROW |13368 |{12755}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13370 |{12757}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13371 |{12758}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13373 |{12760}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |13375 |{12762}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |13382 |{13075}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13384 |{12771}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13386 |{12773}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13389 |{12776}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |13391 |{12778}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |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 | |0 |
+ROW |13396 |{13093}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13397 |{13092}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |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 | |0 |
+ROW |13400 |{12787}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13402 |{12789}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13403 |{12790}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13405 |{12792}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |13407 |{12794}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |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 | |0 |
+ROW |13411 |{12798}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13416 |{12803}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13418 |{12805}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13419 |{12806}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |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 | |0 |
+ROW |13421 |{12808}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |13423 |{12810}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |13521 |{13206}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13206}<65 |0 | |0 | |0 |
+ROW |13522 |{13208}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13208}<65 |0 | |0 | |0 |
+ROW |13523 |{13210}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13210}<65 |0 | |0 | |0 |
+ROW |13524 |{13211}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13211}<65 |0 | |0 | |0 |
+ROW |13525 |{13212}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13212}<65 |0 | |0 | |0 |
+ROW |13526 |{13213}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13213}<65 |0 | |0 | |0 |
+ROW |13527 |{13214}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13214}<65 |0 | |0 | |0 |
+ROW |13528 |{13215}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13215}<65 |0 | |0 | |0 |
+ROW |13529 |{13216}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13216}<65 |0 | |0 | |0 |
+ROW |13530 |{13217}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13217}<65 |0 | |0 | |0 |
+ROW |13531 |{13218}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13218}<65 |0 | |0 | |0 |
+ROW |13532 |{13219}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13219}<65 |0 | |0 | |0 |
+ROW |13533 |{13220}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13220}<65 |0 | |0 | |0 |
+ROW |13534 |{13207}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13207}<65 |0 | |0 | |0 |
+ROW |13535 |{13209}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13209}<65 |0 | |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 | |0 |
+ROW |13544 |{12994}=0 |FTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13545 |{12995}=0 |HTTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13546 |{12996}=0 |HTTPS service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13547 |{12997}=0 |IMAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13548 |{12998}=0 |LDAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13549 |{13154}=0 |NNTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13550 |{13156}=0 |NTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13551 |{13152}=0 |POP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13552 |{13157}=0 |SMTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13553 |{13158}=0 |SSH service is down on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |13559 |{13196}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13196}<65 |0 | |0 | |0 |
+ROW |13562 |{13222}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13222}<65 |0 | |0 | |0 |
+ROW |13564 |{13224}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13224}<65 |0 | |0 | |0 |
+ROW |13565 |{13225}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13225}<65 |0 | |0 | |0 |
+ROW |13566 |{13226}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13226}<65 |0 | |0 | |0 |
+ROW |13568 |{13228}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13228}<65 |0 | |0 | |0 |
+ROW |13569 |{13229}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13229}<65 |0 | |0 | |0 |
+ROW |14168 |{14257}>({14258}*0.7) |70% mem Heap Memory used on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |14170 |{14261}>({14262}*0.7) |70% mp CMS Old Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |14172 |{14265}>({14266}*0.7) |70% mp Code Cache used on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |14174 |{14269}>({14270}*0.7) |70% mp PS Old Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |14176 |{14273}>({14274}*0.7) |70% mp Tenured Gen used on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |14178 |{14277}>70 |70% os Process CPU Load on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |14180 |{14280}<{14281} |gc Mark Sweep Compact in fire fighting mode on {HOST.NAME} | |0 |3 | |NULL |0 |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 | |0 |
+ROW |14182 |{14284}={14285} |mem Heap Memory fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |0 |
+ROW |14184 |{14288}={14289} |mp CMS Old Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |0 |
+ROW |14186 |{14292}={14293} |mp Code Cache fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |0 |
+ROW |14188 |{14296}={14297} |mp PS Old Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |0 |
+ROW |14190 |{14300}={14301} |mp Tenured Gen fully committed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |14191 |{14302}=1 |{HOST.NAME} is not reachable | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |14192 |{14303}<>1 |{HOST.NAME} runs suboptimal VM type | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |14193 |{14304}=1 |{HOST.NAME} uses suboptimal JIT compiler | |0 |1 | |NULL |0 |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 | |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 | |0 |
+ROW |14197 |{14308}<2.876 or {14308}>3.729 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |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 | |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 | |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 | |0 |
+ROW |14201 |{14312}<4.362 or {14312}>5.663 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |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 | |0 |
+ROW |14203 |{14314}<5 or {14314}>66 |BB Ambient Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |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 | |0 |
+ROW |14205 |{14316}=0 |Power | |0 |2 | |NULL |0 |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 | |0 |
+ROW |14207 |{14318}<10 or {14318}>83 |Baseboard Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |14214 |{14325}<2.982 or {14325}>3.625 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |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 | |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 | |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 | |0 |
+ROW |14218 |{14329}<4.471 or {14329}>5.538 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |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 | |0 |
+ROW |14220 |{14331}<0 or {14331}>48 |Front Panel Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |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 | |0 |
+ROW |14222 |{14333}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |14223 |{14334}<324 |System Fan 2 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |14224 |{14335}<378 |System Fan 2 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |14225 |{14336}<324 |System Fan 3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |14226 |{14337}<378 |System Fan 3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |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 | |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} |0 |
+ROW |14253 |{14380}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+ROW |15641 |{17658}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{17658}<65 |0 | |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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+ROW |15848 |{18068} > ({18069} * 0.7) |70% http-8080 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |0 |
+ROW |15850 |{18072} > ({18073} *0.7) |70% jk-8009 worker threads busy on {HOST.NAME} | |0 |2 | |NULL |0 |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 | |0 |
+ROW |15852 |{18075} = 1 |gzip compression is off for connector http-8443 on {HOST.NAME} | |0 |1 | |NULL |0 |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 | |0 |
+ROW |15855 |{18078}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18078}<65 |0 | |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 | |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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |15864 |{18087}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18087}<65 |0 | |0 | |0 |
+ROW |15865 |{18088}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18088}<65 |0 | |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 | |0 |
+ROW |15867 |{18090}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18090}<65 |0 | |0 | |0 |
+ROW |15868 |{18091}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18091}<65 |0 | |0 | |0 |
+ROW |15869 |{18092}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18092}<65 |0 | |0 | |0 |
+ROW |15870 |{18093}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18093}<65 |0 | |0 | |0 |
+ROW |15871 |{18094}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18094}<65 |0 | |0 | |0 |
+ROW |15872 |{18095}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18095}<65 |0 | |0 | |0 |
+ROW |15873 |{18096}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18096}<65 |0 | |0 | |0 |
+ROW |15874 |{18097}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18097}<65 |0 | |0 | |0 |
+ROW |15875 |{18098}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18098}<65 |0 | |0 | |0 |
+ROW |15876 |{18099}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18099}<65 |0 | |0 | |0 |
+ROW |15877 |{18100}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18100}<65 |0 | |0 | |0 |
+ROW |15878 |{18101}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18101}<65 |0 | |0 | |0 |
+ROW |15879 |{18102}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18102}<65 |0 | |0 | |0 |
+ROW |15880 |{18103}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18103}<65 |0 | |0 | |0 |
+ROW |15881 |{18104}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18104}<65 |0 | |0 | |0 |
+ROW |15882 |{18105}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18105}<65 |0 | |0 | |0 |
+ROW |15883 |{18106}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18106}<65 |0 | |0 | |0 |
+ROW |15884 |{18107}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18107}<65 |0 | |0 | |0 |
+ROW |15885 |{18108}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18108}<65 |0 | |0 | |0 |
+ROW |15886 |{18109}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |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 | |0 |
+ROW |15888 |{18111}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18111}<65 |0 | |0 | |0 |
+ROW |15889 |{18112}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18112}<65 |0 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |15895 |{18118}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18118}<65 |0 | |0 | |0 |
+ROW |15896 |{18119}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18119}<65 |0 | |0 | |0 |
+ROW |15897 |{18120}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18120}<65 |0 | |0 | |0 |
+ROW |15898 |{18121}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18121}<65 |0 | |0 | |0 |
+ROW |15899 |{18122}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18122}<65 |0 | |0 | |0 |
+ROW |15900 |{18123}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18123}<65 |0 | |0 | |0 |
+ROW |15901 |{18124}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18124}<65 |0 | |0 | |0 |
+ROW |15902 |{18125}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18125}<65 |0 | |0 | |0 |
+ROW |15903 |{18126}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18126}<65 |0 | |0 | |0 |
+ROW |15904 |{18127}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18127}<65 |0 | |0 | |0 |
+ROW |15905 |{18128}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18128}<65 |0 | |0 | |0 |
+ROW |15906 |{18129}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18129}<65 |0 | |0 | |0 |
+ROW |15907 |{18130}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18130}<65 |0 | |0 | |0 |
+ROW |15908 |{18131}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18131}<65 |0 | |0 | |0 |
+ROW |15909 |{18132}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18132}<65 |0 | |0 | |0 |
+ROW |15910 |{18133}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18133}<65 |0 | |0 | |0 |
+ROW |15911 |{18134}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18134}<65 |0 | |0 | |0 |
+ROW |15912 |{18135}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18135}<65 |0 | |0 | |0 |
+ROW |15913 |{18136}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18136}<65 |0 | |0 | |0 |
+ROW |15914 |{18137}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18137}<65 |0 | |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 | |0 |
+ROW |15927 |{18151}=1 and {18152}>0 |PostgreSQL: Configuration has changed | |0 |1 | |NULL |0 |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 | |0 |
+ROW |15929 |{18154}=0 |PostgreSQL: Replication is down | |0 |3 | |NULL |0 |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 | |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 | |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 | |0 |
+ROW |15933 |{18158} = 0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |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 | |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 | |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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |15943 |{18169}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+ROW |15945 |{18171}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+ROW |15947 |{18174}=0 |Apache: Process is not running | |0 |4 | |NULL |0 |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 | |0 |
+ROW |15949 |{18176}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+ROW |15951 |{18178}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+ROW |15954 |{18183}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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} |0 |
+ROW |15957 |{18186}=0 |Nginx: Process is not running | |0 |4 | |NULL |0 |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 | |0 |
+ROW |15960 |{18191}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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} |0 |
+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 | |0 |
+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 | |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 | |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 | |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 | |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 | |0 |
+ROW |15983 |{18216}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |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 | |0 |
+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 | |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 | |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 | |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 | |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 | |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} |0 |
+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} |0 |
+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} |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |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 | |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. |0 |
+ROW |16041 |{18314}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |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 | |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. |0 |
+ROW |16107 |{18437}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |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. |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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 | |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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |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 | |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 | |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} |0 |
+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 | |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 | |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 | |0 |
+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 | |0 |
+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}) |0 |
+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}) |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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 | |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 | |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 | |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} |0 |
+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 | |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 | |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 | |0 |
+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 | |0 |
+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}) |0 |
+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}) |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+ROW |16254 |{18715}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16255 |{18716}=0 |RabbitMQ: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16256 |{18717}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+ROW |16268 |{18730}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16269 |{18731}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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} |0 |
+ROW |16272 |{18734}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18734}<65 |0 | |0 | |0 |
+ROW |16273 |{18735}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18735}<65 |0 | |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 | |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |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} |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+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 | |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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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} |0 |
+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 | |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} |0 |
+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} |0 |
+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} |0 |
+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 | |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 | |0 |
+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} |0 |
+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 | |0 |
+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 | |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} |0 |
+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 | |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} |0 |
+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 | |0 |
+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 | |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 | |0 |
+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} |0 |
+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 | |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} |0 |
+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 | |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} |0 |
+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 | |0 |
+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 | |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 | |0 |
+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} |0 |
+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 | |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 | |0 |
+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 | |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} |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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 | |0 |
+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 | |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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |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} |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+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 | |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}|0 |
+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}|0 |
+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}|0 |
+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}|0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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 | |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}) |0 |
+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}) |0 |
+ROW |16644 |{19456}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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 | |0 |
+ROW |16647 |{19460}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |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 | |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 | |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 | |0 |
+ROW |16652 |{19465}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |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 | |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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |16660 |{19473}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |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 | |0 |
+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 | |0 |
+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 | |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 | |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 | |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 | |0 |
+ROW |16669 |{19483}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |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 | |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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |16677 |{19491}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |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 | |0 |
+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 | |0 |
+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 | |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 | |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 | |0 |
+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 | |0 |
+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 | |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 | |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 | |0 |
+ROW |16687 |{19505}=0 |Redis: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+ROW |16691 |{19511}<10m |Redis: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |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 | |0 |
+ROW |16694 |{19514}=0 |Redis: Process is not running | |0 |4 | |NULL |0 |2 |0 | |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 | |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 | |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} |0 |
+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 | |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}) |0 |
+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}) |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |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 | |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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |16723 |{19562}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |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 | |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 | |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 | |0 |
+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 | |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 | |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 | |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 | |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 | |0 |
+ROW |16732 |{19572}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |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 | |0 |
+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 | |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 | |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 | |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 | |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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |16744 |{19585}=0 |Docker: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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} |0 |
+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 | |0 |
+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 | |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 | |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 | |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 | |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 | |0 |
+ROW |16753 |{19599}=0 |Memcached: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16754 |{19600}<10m |Memcached: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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 | |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 | |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 | |0 |
+ROW |16759 |{19606}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |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 | |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 | |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 | |0 |
+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 | |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 | |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 | |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 | |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 | |0 |
+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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |16774 |({19622}-{19623})/({19624}-1)>{19623} |ES: Cluster does not have enough space for resharding | |0 |4 |There is not enough disk space for index resharding. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16775 |{19625}>0 |ES: Cluster has the initializing shards | |0 |3 |The cluster has the initializing shards longer than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16776 |{19626}<0 |ES: The number of nodes within the cluster has decreased | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16777 |{19627}>0 |ES: The number of nodes within the cluster has increased | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16778 |{19628}=1 |ES: Health is YELLOW | |0 |3 |All primary shards are assigned, but one or more replica shards are unassigned. &eol;If a node in the cluster fails, some data could be unavailable until that node is repaired. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16779 |{19629}=2 |ES: Health is RED | |0 |4 |One or more primary shards are unassigned, so some data is unavailable. &eol;This can occur briefly during cluster startup as primary shards are assigned. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16780 |{19630}=255 |ES: Health is UNKNOWN | |0 |4 |The health status of the cluster is unknown or cannot be obtained. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16781 |{19631}>0 |ES: Cluster has the unassigned shards | |0 |3 |The cluster has the unassigned shards longer than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16782 |{19632}=2 |ES: Cluster has only two master nodes | |0 |5 |The cluster has only two nodes with a master role and will be unavailable if one of them breaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16783 |{19633}<10m |ES: Cluster has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16784 |{19634}>{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} |ES: Service response time is too high (over {$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 |The performance of the TCP service is very low. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16785 |{19635}=0 |ES: Service is down | |0 |3 |The service is unavailable or does not accept TCP connections. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16786 |{19636}>{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN} |ES {#ES.NODE}: Flush latency is too high (over {$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If you see this metric increasing steadily, it may indicate a problem with slow disks; this problem may escalate &eol;and eventually prevent you from being able to add new information to your index. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16787 |{19637}>{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN} |ES {#ES.NODE}: Indexing latency is too high (over {$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If the latency is increasing, it may indicate that you are indexing too many documents at the same time (Elasticsearch’s documentation &eol;recommends starting with a bulk indexing size of 5 to 15 megabytes and increasing slowly from there). |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16788 |{19638}>{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN} |ES {#ES.NODE}: Fetch latency is too high (over {$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |The fetch phase should typically take much less time than the query phase. If you notice this metric consistently increasing, &eol;this could indicate a problem with slow disks, enriching of documents (highlighting the relevant text in search results, etc.), &eol;or requesting too many results. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16789 |{19639}>{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN} |ES {#ES.NODE}: Query latency is too high (over {$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If latency exceeds a threshold, look for potential resource bottlenecks, or investigate whether you need to optimize your queries. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16790 |{19640}>{$ELASTICSEARCH.HEAP_USED.MAX.WARN} |ES {#ES.NODE}: Percent of JVM heap in use is high (over {$ELASTICSEARCH.HEAP_USED.MAX.WARN}% for 1h) | |0 |2 |This indicates that the rate of garbage collection isn’t keeping up with the rate of garbage creation. &eol;To address this problem, you can either increase your heap size (as long as it remains below the recommended &eol;guidelines stated above), or scale out the cluster by adding more nodes. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16791 |{19641}>{$ELASTICSEARCH.HEAP_USED.MAX.CRIT} |ES {#ES.NODE}: Percent of JVM heap in use is critical (over {$ELASTICSEARCH.HEAP_USED.MAX.CRIT}% for 1h) | |0 |4 |This indicates that the rate of garbage collection isn’t keeping up with the rate of garbage creation. &eol;To address this problem, you can either increase your heap size (as long as it remains below the recommended &eol;guidelines stated above), or scale out the cluster by adding more nodes. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16792 |{19642}<10m |ES {#ES.NODE}: Node {#ES.NODE} has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16793 |{19643}>0 |ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the refresh thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16794 |{19644}>0 |ES {#ES.NODE}: Search thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the search thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16795 |{19645}>0 |ES {#ES.NODE}: Write thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the write thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16796 |{19646}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16797 |{19647}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16798 |{19648}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16799 |{19649}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16800 |{19650}=0 |HAProxy TCP Backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16801 |{19651}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16802 |{19652}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16803 |{19653}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16804 |{19654}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy TCP {#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 | |0 |
+ROW |16805 |{19655}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy TCP {#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 | |0 |
+ROW |16806 |{19656}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy TCP {#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 | |0 |
+ROW |16807 |{19657}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy TCP {#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 | |0 |
+ROW |16808 |{19658}=0 |HAProxy TCP {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16809 |{19659}>{$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 | |0 |
+ROW |16810 |{19660}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16811 |{19661}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16812 |{19662}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16813 |{19663}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16814 |{19664}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16815 |{19665}=0 |HAProxy TCP Backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16816 |{19666}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16817 |{19667}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16818 |{19668}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy TCP 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 | |0 |
+ROW |16819 |{19669}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy TCP {#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 | |0 |
+ROW |16820 |{19670}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy TCP {#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 | |0 |
+ROW |16821 |{19671}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy TCP {#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 | |0 |
+ROW |16822 |{19672}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy TCP {#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 | |0 |
+ROW |16823 |{19673}=0 |HAProxy TCP {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16824 |{19674}>{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} |ClickHouse: Too many distributed files to insert (over {$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} for 5 min) | |0 |2 |"Clickhouse servers and <remote_servers> in config.xml&eol;https://clickhouse.tech/docs/en/operations/table_engines/distributed/" |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16825 |{19675}>{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN} |ClickHouse: Too many throttled insert queries (over {$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN) for 5 min) | |0 |2 |Clickhouse have INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree, please decrease INSERT frequency |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16826 |{19676}>{$CLICKHOUSE.PARTS.PER.PARTITION.WARN} * 0.9 |ClickHouse: Too many MergeTree parts (over 90% of {$CLICKHOUSE.PARTS.PER.PARTITION.WARN}) | |0 |2 |"Descease INSERT queries frequency.&eol;Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) &eol;and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run, and when you have too much unmerged parts inside partition, &eol;SELECT queries performance can significate degrade, so clickhouse try delay insert, or abort it" |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16827 |{19677}>{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} |ClickHouse: Too many network errors (over {$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} in 5m) | |0 |2 |Number of errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update is too high. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16828 |{19678}=0 |ClickHouse: ClickHouse: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16829 |{19679}>{$CLICKHOUSE.QUERY_TIME.MAX.WARN} |ClickHouse: There are queries running more than {$CLICKHOUSE.QUERY_TIME.MAX.WARN} seconds | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16830 |{19680}>{$CLICKHOUSE.REPLICA.MAX.WARN} |ClickHouse: Replication lag is too high (over {$CLICKHOUSE.REPLICA.MAX.WARN} sec for 5min) | |0 |2 |"When replica have too much lag, it can be skipped from Distributed SELECT Queries without errors &eol;and you will have wrong query results." |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16831 |{19681}=1 and {19682}>0 |ClickHouse: Configuration has been changed | |0 |1 |ClickHouse configuration has been changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16832 |{19683}<10m |ClickHouse: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16833 |{19684}=1 |ClickHouse: 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 | |0 |
+ROW |16834 |{19685}=1 and {19686}>0 |ClickHouse: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |ClickHouse version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16835 |{19687}>1 |ClickHouse: Too many ZooKeeper sessions opened | |0 |2 |"Number of sessions (connections) to ZooKeeper. &eol;Should be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows." |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16836 |{19688} < {19689} |ClickHouse: {#DB}.{#TABLE}: Number of active replicas less than number of total replicas | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16837 |{19690}=1 |ClickHouse: {#DB}.{#TABLE} Replica is readonly | |0 |2 |This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16838 |{19691}=1 |ClickHouse: {#DB}.{#TABLE} Replica session is expired | |0 |2 |This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16839 |{19692} > {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} |ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high (More than {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16840 |{19693}>{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN:"{#TABLE}"} |ClickHouse: {#DB}.{#TABLE}: Too many operations in queue (over {$CLICKHOUSE.QUEUE.SIZE.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |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 | |0 |
+ROW |13436 |{13205}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |13097 |0 |0 |1 |{13205}<65 |0 | |0 | |0 |
+ROW |13467 |{13165}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |13080 |0 |0 |1 |{13165}<65 |0 | |0 | |0 |
+ROW |13468 |{13171}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |13081 |0 |0 |1 |{13171}<65 |0 | |0 | |0 |
+ROW |13470 |{13173}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |13083 |0 |0 |1 |{13173}<65 |0 | |0 | |0 |
+ROW |13471 |{13175}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |13084 |0 |0 |1 |{13175}<65 |0 | |0 | |0 |
+ROW |13472 |{13177}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |13085 |0 |0 |1 |{13177}<65 |0 | |0 | |0 |
+ROW |13473 |{13179}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |13086 |0 |0 |1 |{13179}<65 |0 | |0 | |0 |
+ROW |13474 |{13181}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |13087 |0 |0 |1 |{13181}<65 |0 | |0 | |0 |
+ROW |13475 |{13183}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |13088 |0 |0 |1 |{13183}<65 |0 | |0 | |0 |
+ROW |13476 |{13185}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |13089 |0 |0 |1 |{13185}<65 |0 | |0 | |0 |
+ROW |13477 |{13187}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |13275 |0 |0 |1 |{13187}<65 |0 | |0 | |0 |
+ROW |13479 |{13189}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |13091 |0 |0 |1 |{13189}<65 |0 | |0 | |0 |
+ROW |13480 |{13191}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |13092 |0 |0 |1 |{13191}<65 |0 | |0 | |0 |
+ROW |13481 |{13193}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |13093 |0 |0 |1 |{13193}<65 |0 | |0 | |0 |
+ROW |13482 |{13195}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |13441 |0 |0 |1 |{13195}<65 |0 | |0 | |0 |
+ROW |13483 |{13199}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |13094 |0 |0 |1 |{13199}<65 |0 | |0 | |0 |
+ROW |13484 |{13201}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |13095 |0 |0 |1 |{13201}<65 |0 | |0 | |0 |
+ROW |13485 |{13203}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |13096 |0 |0 |1 |{13203}<65 |0 | |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 | |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 | |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 | |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 | |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 | |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 | |0 |
+ROW |13558 |{13161}=1 |Zabbix value cache working in low memory mode | |0 |4 | |13557 |0 |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 | |0 |
+ROW |13563 |{13223}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |13562 |0 |0 |1 |{13223}<65 |0 | |0 | |0 |
+ROW |13567 |{13227}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |13566 |0 |0 |1 |{13227}<65 |0 | |0 | |0 |
+ROW |13570 |{13230}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |13568 |0 |0 |1 |{13230}<65 |0 | |0 | |0 |
+ROW |13571 |{13231}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |13569 |0 |0 |1 |{13231}<65 |0 | |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 | |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} |0 |
+ROW |14290 |{14465}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14253 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14295 |{14470}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14253 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14313 |{14510}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14329 |{14538}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14349 |{14572}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14358 |{14589}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14391 |{14643}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14405 |{14665}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+ROW |14453 |{14749}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14470 |{14778}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14488 |{14808}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14507 |{14840}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14526 |{14873}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14536 |{14891}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14546 |{14909}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14584 |{14974}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14600 |{15002}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14617 |{15034}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14654 |{15096}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14675 |{15133}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14693 |{15165}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14706 |{15188}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14719 |{15211}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14908 |{15680}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |14930 |{15715}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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 | |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} |0 |
+ROW |15222 |{16474}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |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} |0 |
+ROW |15703 |{17840}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+ROW |15725 |{17876}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |15757 |{17928}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |15800 |{17997}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14290 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |15821 |{18028}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |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} |0 |
+ROW |15842 |{18059}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |15854 |{18077}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |15853 |0 |0 |1 |{18077}<65 |0 | |0 | |0 |
+ROW |15856 |{18079}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |15855 |0 |0 |1 |{18079}<65 |0 | |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 | |0 |
+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 | |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} |0 |
+ROW |15992 |{18226}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+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} |0 |
+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} |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+ROW |16019 |{18279}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |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 | |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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |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 | |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 | |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 | |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. |0 |
+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. |0 |
+ROW |16065 |{18349}>0 |/etc/passwd has been changed | |0 |1 | |16041 |0 |0 |0 | |0 | |1 | |0 |
+ROW |16066 |{18350}>0 |/etc/passwd has been changed | |0 |1 | |16065 |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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 | |0 |
+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}) |0 |
+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}) |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |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 | |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. |0 |
+ROW |16120 |{18456}>0 |/etc/passwd has been changed | |0 |1 | |16107 |0 |0 |0 | |0 | |1 | |0 |
+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 | |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |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 | |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 | |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} |0 |
+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 | |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 | |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 | |0 |
+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 | |0 |
+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}) |0 |
+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}) |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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 | |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 | |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 | |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} |0 |
+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 | |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 | |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 | |0 |
+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 | |0 |
+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}) |0 |
+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}) |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+ROW |16274 |{18736}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |16273 |0 |0 |1 |{18736}<65 |0 | |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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |0 |
+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 | |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} |0 |
+ROW |16455 |{19108}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |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 | |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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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 | |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 | |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 | |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} |0 |
+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} |0 |
+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}|0 |
+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}|0 |
+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}|0 |
+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}|0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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} |0 |
+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 | |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 | |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 | |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 | |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}) |0 |
+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}) |0 |
+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}) |0 |
+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}) |0 |
+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}) |0 |
+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}) |0 |
+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}) |0 |
+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}) |0 |
+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} |0 |
+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 | |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}) |0 |
+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}) |0 |
+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 | |0 |
+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 | |0 |
+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 | |0 |
+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 | |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 | |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 | |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 | |0 |
TABLE |trigger_depends
FIELDS|triggerdepid|triggerid_down|triggerid_up|
@@ -6265,607 +6265,607 @@ ROW |10546 |15978 |15983 |
ROW |10547 |15980 |15979 |
ROW |10548 |15986 |15987 |
ROW |10549 |15988 |15987 |
-ROW |13431 |15944 |15947 |
-ROW |13432 |15944 |15943 |
-ROW |13433 |15943 |15947 |
-ROW |13434 |15942 |15947 |
-ROW |13435 |15942 |15943 |
-ROW |13436 |15948 |15949 |
-ROW |13437 |15950 |15949 |
-ROW |13438 |16743 |16744 |
-ROW |13439 |16784 |16785 |
-ROW |13440 |16790 |16791 |
-ROW |13441 |16646 |16647 |
-ROW |13442 |16809 |16810 |
-ROW |13443 |16752 |16753 |
-ROW |13444 |15955 |15957 |
-ROW |13445 |15955 |15954 |
-ROW |13446 |15954 |15957 |
-ROW |13447 |15956 |15957 |
-ROW |13448 |15956 |15954 |
-ROW |13449 |16678 |15957 |
-ROW |13450 |16678 |15954 |
-ROW |13451 |15961 |15960 |
-ROW |13452 |15962 |15960 |
-ROW |13453 |16679 |15960 |
-ROW |13454 |16257 |16255 |
-ROW |13455 |16257 |16256 |
-ROW |13456 |16256 |16255 |
-ROW |13457 |16251 |16255 |
-ROW |13458 |16251 |16256 |
-ROW |13459 |16443 |16255 |
-ROW |13460 |16443 |16256 |
-ROW |13461 |16270 |16269 |
-ROW |13462 |16448 |16269 |
-ROW |13463 |16265 |16269 |
-ROW |13464 |14195 |14205 |
-ROW |13465 |14196 |14195 |
-ROW |13466 |14196 |14205 |
-ROW |13467 |14197 |14205 |
-ROW |13468 |14198 |14197 |
-ROW |13469 |14198 |14205 |
-ROW |13470 |14200 |14199 |
-ROW |13471 |14201 |14205 |
-ROW |13472 |14202 |14201 |
-ROW |13473 |14202 |14205 |
-ROW |13474 |14204 |14203 |
-ROW |13475 |14206 |14222 |
-ROW |13476 |14207 |14206 |
-ROW |13477 |14207 |14222 |
-ROW |13478 |14208 |14222 |
-ROW |13479 |14209 |14208 |
-ROW |13480 |14209 |14222 |
-ROW |13481 |14210 |14222 |
-ROW |13482 |14211 |14210 |
-ROW |13483 |14211 |14222 |
-ROW |13484 |14212 |14222 |
-ROW |13485 |14213 |14212 |
-ROW |13486 |14213 |14222 |
-ROW |13487 |14214 |14222 |
-ROW |13488 |14215 |14214 |
-ROW |13489 |14215 |14222 |
-ROW |13490 |14217 |14216 |
-ROW |13491 |14218 |14222 |
-ROW |13492 |14219 |14218 |
-ROW |13493 |14219 |14222 |
-ROW |13494 |14220 |14222 |
-ROW |13495 |14221 |14220 |
-ROW |13496 |14221 |14222 |
-ROW |13497 |14223 |14222 |
-ROW |13498 |14224 |14222 |
-ROW |13499 |14224 |14223 |
-ROW |13500 |14225 |14222 |
-ROW |13501 |14226 |14222 |
-ROW |13502 |14226 |14225 |
-ROW |13503 |16833 |16828 |
-ROW |13504 |16719 |16721 |
-ROW |13505 |16722 |16723 |
-ROW |13506 |16729 |16728 |
-ROW |13507 |16730 |16728 |
-ROW |13508 |16756 |16758 |
-ROW |13509 |16765 |16764 |
-ROW |13510 |16766 |16764 |
-ROW |13511 |16731 |16732 |
-ROW |13512 |16734 |16736 |
-ROW |13513 |16741 |16740 |
-ROW |13514 |16742 |16740 |
-ROW |13515 |15928 |15933 |
-ROW |13516 |15931 |15933 |
-ROW |13517 |16683 |16687 |
-ROW |13518 |14252 |14251 |
-ROW |13519 |14289 |14288 |
-ROW |13520 |14525 |14524 |
-ROW |13521 |14718 |14717 |
-ROW |13522 |15799 |15798 |
-ROW |13523 |14294 |14293 |
-ROW |13524 |14312 |14311 |
-ROW |13525 |14328 |14327 |
-ROW |13526 |14348 |14347 |
-ROW |13527 |14357 |14356 |
-ROW |13528 |14390 |14389 |
-ROW |13529 |14404 |14403 |
-ROW |13530 |14452 |14451 |
-ROW |13531 |14469 |14468 |
-ROW |13532 |14487 |14486 |
-ROW |13533 |14506 |14505 |
-ROW |13534 |14535 |14534 |
-ROW |13535 |14545 |14544 |
-ROW |13536 |14583 |14582 |
-ROW |13537 |14599 |14598 |
-ROW |13538 |14616 |14615 |
-ROW |13539 |14653 |14652 |
-ROW |13540 |14674 |14673 |
-ROW |13541 |14692 |14691 |
-ROW |13542 |14705 |14704 |
-ROW |13543 |14907 |14906 |
-ROW |13544 |14929 |14928 |
-ROW |13545 |15221 |15220 |
-ROW |13546 |15702 |15701 |
-ROW |13547 |15724 |15723 |
-ROW |13548 |15756 |15755 |
-ROW |13549 |15820 |15819 |
-ROW |13550 |15841 |15840 |
-ROW |13551 |15991 |15990 |
-ROW |13552 |16018 |16017 |
-ROW |13553 |16454 |16453 |
-ROW |13554 |14253 |14252 |
-ROW |13555 |14290 |14289 |
-ROW |13556 |14526 |14525 |
-ROW |13557 |14719 |14718 |
-ROW |13558 |15800 |15799 |
-ROW |13559 |14295 |14294 |
-ROW |13560 |14313 |14312 |
-ROW |13561 |14329 |14328 |
-ROW |13562 |14349 |14348 |
-ROW |13563 |14358 |14357 |
-ROW |13564 |14391 |14390 |
-ROW |13565 |14405 |14404 |
-ROW |13566 |14453 |14452 |
-ROW |13567 |14470 |14469 |
-ROW |13568 |14488 |14487 |
-ROW |13569 |14507 |14506 |
-ROW |13570 |14536 |14535 |
-ROW |13571 |14546 |14545 |
-ROW |13572 |14584 |14583 |
-ROW |13573 |14600 |14599 |
-ROW |13574 |14617 |14616 |
-ROW |13575 |14654 |14653 |
-ROW |13576 |14675 |14674 |
-ROW |13577 |14693 |14692 |
-ROW |13578 |14706 |14705 |
-ROW |13579 |14908 |14907 |
-ROW |13580 |14930 |14929 |
-ROW |13581 |15222 |15221 |
-ROW |13582 |15703 |15702 |
-ROW |13583 |15725 |15724 |
-ROW |13584 |15757 |15756 |
-ROW |13585 |15821 |15820 |
-ROW |13586 |15842 |15841 |
-ROW |13587 |15992 |15991 |
-ROW |13588 |16019 |16018 |
-ROW |13589 |16455 |16454 |
-ROW |13590 |14253 |14251 |
-ROW |13591 |14290 |14288 |
-ROW |13592 |14526 |14524 |
-ROW |13593 |14719 |14717 |
-ROW |13594 |15800 |15798 |
-ROW |13595 |14295 |14293 |
-ROW |13596 |14313 |14311 |
-ROW |13597 |14329 |14327 |
-ROW |13598 |14349 |14347 |
-ROW |13599 |14358 |14356 |
-ROW |13600 |14391 |14389 |
-ROW |13601 |14405 |14403 |
-ROW |13602 |14453 |14451 |
-ROW |13603 |14470 |14468 |
-ROW |13604 |14488 |14486 |
-ROW |13605 |14507 |14505 |
-ROW |13606 |14536 |14534 |
-ROW |13607 |14546 |14544 |
-ROW |13608 |14584 |14582 |
-ROW |13609 |14600 |14598 |
-ROW |13610 |14617 |14615 |
-ROW |13611 |14654 |14652 |
-ROW |13612 |14675 |14673 |
-ROW |13613 |14693 |14691 |
-ROW |13614 |14706 |14704 |
-ROW |13615 |14908 |14906 |
-ROW |13616 |14930 |14928 |
-ROW |13617 |15222 |15220 |
-ROW |13618 |15703 |15701 |
-ROW |13619 |15725 |15723 |
-ROW |13620 |15757 |15755 |
-ROW |13621 |15821 |15819 |
-ROW |13622 |15842 |15840 |
-ROW |13623 |15992 |15990 |
-ROW |13624 |16019 |16017 |
-ROW |13625 |16455 |16453 |
-ROW |13626 |16275 |16277 |
-ROW |13627 |16278 |16284 |
-ROW |13628 |16279 |16285 |
-ROW |13629 |16280 |16286 |
-ROW |13630 |16277 |14288 |
-ROW |13631 |16284 |14524 |
-ROW |13632 |16285 |14717 |
-ROW |13633 |16286 |15798 |
-ROW |13634 |16287 |16289 |
-ROW |13635 |16290 |16348 |
-ROW |13636 |16291 |16349 |
-ROW |13637 |16292 |16350 |
-ROW |13638 |16293 |16351 |
-ROW |13639 |16294 |16352 |
-ROW |13640 |16295 |16353 |
-ROW |13641 |16296 |16354 |
-ROW |13642 |16297 |16355 |
-ROW |13643 |16298 |16356 |
-ROW |13644 |16299 |16357 |
-ROW |13645 |16300 |16358 |
-ROW |13646 |16301 |16359 |
-ROW |13647 |16302 |16360 |
-ROW |13648 |16303 |16361 |
-ROW |13649 |16304 |16362 |
-ROW |13650 |16305 |16363 |
-ROW |13651 |16306 |16364 |
-ROW |13652 |16307 |16365 |
-ROW |13653 |16308 |16366 |
-ROW |13654 |16309 |16367 |
-ROW |13655 |16310 |16368 |
-ROW |13656 |16311 |16369 |
-ROW |13657 |16312 |16370 |
-ROW |13658 |16313 |16371 |
-ROW |13659 |16314 |16372 |
-ROW |13660 |16315 |16373 |
-ROW |13661 |16316 |16374 |
-ROW |13662 |16317 |16375 |
-ROW |13663 |16318 |16376 |
-ROW |13664 |16457 |16458 |
-ROW |13665 |16289 |14293 |
-ROW |13666 |16348 |14311 |
-ROW |13667 |16349 |14327 |
-ROW |13668 |16350 |14347 |
-ROW |13669 |16351 |14356 |
-ROW |13670 |16352 |14389 |
-ROW |13671 |16353 |14403 |
-ROW |13672 |16354 |14451 |
-ROW |13673 |16355 |14468 |
-ROW |13674 |16356 |14486 |
-ROW |13675 |16357 |14505 |
-ROW |13676 |16358 |14534 |
-ROW |13677 |16359 |14544 |
-ROW |13678 |16360 |14582 |
-ROW |13679 |16361 |14598 |
-ROW |13680 |16362 |14615 |
-ROW |13681 |16363 |14652 |
-ROW |13682 |16364 |14673 |
-ROW |13683 |16365 |14691 |
-ROW |13684 |16366 |14704 |
-ROW |13685 |16367 |14906 |
-ROW |13686 |16368 |14928 |
-ROW |13687 |16369 |15220 |
-ROW |13688 |16370 |15701 |
-ROW |13689 |16371 |15723 |
-ROW |13690 |16372 |15755 |
-ROW |13691 |16373 |15819 |
-ROW |13692 |16374 |15840 |
-ROW |13693 |16375 |15990 |
-ROW |13694 |16376 |16017 |
-ROW |13695 |16458 |16453 |
-ROW |13696 |16701 |16700 |
-ROW |13697 |16704 |16703 |
-ROW |13698 |16631 |16630 |
-ROW |13699 |16640 |16636 |
-ROW |13700 |16641 |16637 |
-ROW |13701 |16642 |16638 |
-ROW |13702 |16643 |16639 |
-ROW |13703 |15692 |15490 |
-ROW |13704 |16423 |15490 |
-ROW |13705 |16424 |15490 |
-ROW |13706 |15693 |15492 |
-ROW |13707 |15694 |15493 |
-ROW |13708 |16425 |15492 |
-ROW |13709 |16426 |15493 |
-ROW |13710 |16427 |15492 |
-ROW |13711 |16428 |15493 |
-ROW |13712 |15695 |15496 |
-ROW |13713 |16429 |15496 |
-ROW |13714 |16430 |15496 |
-ROW |13715 |15696 |15498 |
-ROW |13716 |15697 |15499 |
-ROW |13717 |16431 |15498 |
-ROW |13718 |16432 |15499 |
-ROW |13719 |16433 |15498 |
-ROW |13720 |16434 |15499 |
-ROW |13721 |15670 |15506 |
-ROW |13722 |16377 |15506 |
-ROW |13723 |16378 |15506 |
-ROW |13724 |15671 |15508 |
-ROW |13725 |16379 |15508 |
-ROW |13726 |16380 |15508 |
-ROW |13727 |15672 |15510 |
-ROW |13728 |15673 |15511 |
-ROW |13729 |15674 |15512 |
-ROW |13730 |15675 |15513 |
-ROW |13731 |15676 |15514 |
-ROW |13732 |15677 |15515 |
-ROW |13733 |15678 |15516 |
-ROW |13734 |15679 |15517 |
-ROW |13735 |15680 |15518 |
-ROW |13736 |15681 |15519 |
-ROW |13737 |15682 |15520 |
-ROW |13738 |15683 |15521 |
-ROW |13739 |15684 |15522 |
-ROW |13740 |15685 |15523 |
-ROW |13741 |15686 |15524 |
-ROW |13742 |15687 |15525 |
-ROW |13743 |15689 |15527 |
-ROW |13744 |15690 |15528 |
-ROW |13745 |15691 |15529 |
-ROW |13746 |15708 |15709 |
-ROW |13747 |15997 |15998 |
-ROW |13748 |16381 |15510 |
-ROW |13749 |16382 |15511 |
-ROW |13750 |16383 |15512 |
-ROW |13751 |16384 |15513 |
-ROW |13752 |16385 |15514 |
-ROW |13753 |16386 |15515 |
-ROW |13754 |16387 |15516 |
-ROW |13755 |16388 |15517 |
-ROW |13756 |16389 |15518 |
-ROW |13757 |16390 |15519 |
-ROW |13758 |16391 |15520 |
-ROW |13759 |16392 |15521 |
-ROW |13760 |16393 |15522 |
-ROW |13761 |16394 |15523 |
-ROW |13762 |16395 |15524 |
-ROW |13763 |16396 |15525 |
-ROW |13764 |16397 |15527 |
-ROW |13765 |16398 |15528 |
-ROW |13766 |16399 |15529 |
-ROW |13767 |16400 |15709 |
-ROW |13768 |16401 |15998 |
-ROW |13769 |16402 |15510 |
-ROW |13770 |16403 |15511 |
-ROW |13771 |16404 |15512 |
-ROW |13772 |16405 |15513 |
-ROW |13773 |16406 |15514 |
-ROW |13774 |16407 |15515 |
-ROW |13775 |16408 |15516 |
-ROW |13776 |16409 |15517 |
-ROW |13777 |16410 |15518 |
-ROW |13778 |16411 |15519 |
-ROW |13779 |16412 |15520 |
-ROW |13780 |16413 |15521 |
-ROW |13781 |16414 |15522 |
-ROW |13782 |16415 |15523 |
-ROW |13783 |16416 |15524 |
-ROW |13784 |16417 |15525 |
-ROW |13785 |16418 |15527 |
-ROW |13786 |16419 |15528 |
-ROW |13787 |16420 |15529 |
-ROW |13788 |16421 |15709 |
-ROW |13789 |16422 |15998 |
-ROW |13790 |15698 |15502 |
-ROW |13791 |16435 |15502 |
-ROW |13792 |16436 |15502 |
-ROW |13793 |16028 |16029 |
-ROW |13794 |16437 |16029 |
-ROW |13795 |16438 |16029 |
-ROW |13796 |14318 |14319 |
-ROW |13797 |15714 |15715 |
-ROW |13798 |15721 |15720 |
-ROW |13799 |15394 |15393 |
-ROW |13800 |15392 |15391 |
-ROW |13801 |15390 |14339 |
-ROW |13802 |15382 |15381 |
-ROW |13803 |15380 |15379 |
-ROW |13804 |16504 |16505 |
-ROW |13805 |14372 |14373 |
-ROW |13806 |15386 |15385 |
-ROW |13807 |15384 |15383 |
-ROW |13808 |14380 |14381 |
-ROW |13809 |15347 |15346 |
-ROW |13810 |15345 |15344 |
-ROW |13811 |15342 |15343 |
-ROW |13812 |15363 |15360 |
-ROW |13813 |15364 |15361 |
-ROW |13814 |15365 |15362 |
-ROW |13815 |15357 |15354 |
-ROW |13816 |15358 |15355 |
-ROW |13817 |15359 |15356 |
-ROW |13818 |15348 |15351 |
-ROW |13819 |15349 |15352 |
-ROW |13820 |15350 |15353 |
-ROW |13821 |15334 |15333 |
-ROW |13822 |15332 |15331 |
-ROW |13823 |14460 |14461 |
-ROW |13824 |14476 |14477 |
-ROW |13825 |14495 |14496 |
-ROW |13826 |14511 |15368 |
-ROW |13827 |14551 |14552 |
-ROW |13828 |15374 |15373 |
-ROW |13829 |15376 |15375 |
-ROW |13830 |14914 |14915 |
-ROW |13831 |14589 |14590 |
-ROW |13832 |15338 |15337 |
-ROW |13833 |15335 |15336 |
-ROW |13834 |14624 |14625 |
-ROW |13835 |15387 |14934 |
-ROW |13836 |14658 |14659 |
-ROW |13837 |14664 |14665 |
-ROW |13838 |16547 |16546 |
-ROW |13839 |15396 |15397 |
-ROW |13840 |16551 |16552 |
-ROW |13841 |16034 |16032 |
-ROW |13842 |16051 |16047 |
-ROW |13843 |16052 |16048 |
-ROW |13844 |16034 |16033 |
-ROW |13845 |16051 |16049 |
-ROW |13846 |16052 |16050 |
-ROW |13847 |16031 |16563 |
-ROW |13848 |16045 |16564 |
-ROW |13849 |16046 |16565 |
-ROW |13850 |16039 |16040 |
-ROW |13851 |16061 |16063 |
-ROW |13852 |16062 |16064 |
-ROW |13853 |16042 |16579 |
-ROW |13854 |16067 |16580 |
-ROW |13855 |16068 |16581 |
-ROW |13856 |16041 |16042 |
-ROW |13857 |16065 |16067 |
-ROW |13858 |16066 |16068 |
-ROW |13859 |16041 |16579 |
-ROW |13860 |16065 |16580 |
-ROW |13861 |16066 |16581 |
-ROW |13862 |16032 |16033 |
-ROW |13863 |16047 |16049 |
-ROW |13864 |16048 |16050 |
-ROW |13865 |16070 |16069 |
-ROW |13866 |16072 |16071 |
-ROW |13867 |16076 |16075 |
-ROW |13868 |16074 |16075 |
-ROW |13869 |16079 |16077 |
-ROW |13870 |16080 |16078 |
-ROW |13871 |16083 |16081 |
-ROW |13872 |16084 |16082 |
-ROW |13873 |16091 |16089 |
-ROW |13874 |16092 |16090 |
-ROW |13875 |16087 |16089 |
-ROW |13876 |16088 |16090 |
-ROW |13877 |16100 |16098 |
-ROW |13878 |16113 |16111 |
-ROW |13879 |16100 |16099 |
-ROW |13880 |16113 |16112 |
-ROW |13881 |16097 |16569 |
-ROW |13882 |16110 |16570 |
-ROW |13883 |16105 |16106 |
-ROW |13884 |16118 |16119 |
-ROW |13885 |16108 |16582 |
-ROW |13886 |16121 |16583 |
-ROW |13887 |16107 |16108 |
-ROW |13888 |16120 |16121 |
-ROW |13889 |16107 |16582 |
-ROW |13890 |16120 |16583 |
-ROW |13891 |16098 |16099 |
-ROW |13892 |16111 |16112 |
-ROW |13893 |16123 |16122 |
-ROW |13894 |16125 |16124 |
-ROW |13895 |16129 |16128 |
-ROW |13896 |16127 |16128 |
-ROW |13897 |16131 |16130 |
-ROW |13898 |16133 |16132 |
-ROW |13899 |16137 |16136 |
-ROW |13900 |16135 |16136 |
-ROW |13901 |16149 |16147 |
-ROW |13902 |16149 |16148 |
-ROW |13903 |16141 |16142 |
-ROW |13904 |16146 |16573 |
-ROW |13905 |16143 |16584 |
-ROW |13906 |16147 |16148 |
-ROW |13907 |16152 |16154 |
-ROW |13908 |16153 |16154 |
-ROW |13909 |16150 |16154 |
-ROW |13910 |16151 |16154 |
-ROW |13911 |16156 |16155 |
-ROW |13912 |16158 |16157 |
-ROW |13913 |16001 |15999 |
-ROW |13914 |16005 |16003 |
-ROW |13915 |16001 |16000 |
-ROW |13916 |16005 |16004 |
-ROW |13917 |15999 |16000 |
-ROW |13918 |16003 |16004 |
-ROW |13919 |16009 |16008 |
-ROW |13920 |16011 |16010 |
-ROW |13921 |16014 |16013 |
-ROW |13922 |16016 |16015 |
-ROW |13923 |16165 |16164 |
-ROW |13924 |16176 |16175 |
-ROW |13925 |16161 |16160 |
-ROW |13926 |16172 |16171 |
-ROW |13927 |16162 |16161 |
-ROW |13928 |16173 |16172 |
-ROW |13929 |16162 |16160 |
-ROW |13930 |16173 |16171 |
-ROW |13931 |16711 |16160 |
-ROW |13932 |16712 |16171 |
-ROW |13933 |16166 |16164 |
-ROW |13934 |16177 |16175 |
-ROW |13935 |16167 |16164 |
-ROW |13936 |16178 |16175 |
-ROW |13937 |16183 |16182 |
-ROW |13938 |16187 |16188 |
-ROW |13939 |16185 |16188 |
-ROW |13940 |16186 |16188 |
-ROW |13941 |16190 |16189 |
-ROW |13942 |16194 |16195 |
-ROW |13943 |16192 |16195 |
-ROW |13944 |16193 |16195 |
-ROW |13945 |16214 |16213 |
-ROW |13946 |16225 |16224 |
-ROW |13947 |16210 |16209 |
-ROW |13948 |16221 |16220 |
-ROW |13949 |16211 |16210 |
-ROW |13950 |16222 |16221 |
-ROW |13951 |16211 |16209 |
-ROW |13952 |16222 |16220 |
-ROW |13953 |16715 |16209 |
-ROW |13954 |16716 |16220 |
-ROW |13955 |16215 |16213 |
-ROW |13956 |16226 |16224 |
-ROW |13957 |16216 |16213 |
-ROW |13958 |16227 |16224 |
-ROW |13959 |16232 |16231 |
-ROW |13960 |16236 |16237 |
-ROW |13961 |16234 |16237 |
-ROW |13962 |16235 |16237 |
-ROW |13963 |16239 |16238 |
-ROW |13964 |16243 |16244 |
-ROW |13965 |16241 |16244 |
-ROW |13966 |16242 |16244 |
-ROW |13967 |16768 |16769 |
-ROW |13968 |16768 |16770 |
-ROW |13969 |16769 |16770 |
-ROW |13970 |16771 |16772 |
-ROW |13971 |16771 |16773 |
-ROW |13972 |16772 |16773 |
-ROW |13973 |16488 |16487 |
-ROW |13974 |16485 |16484 |
-ROW |13975 |16486 |16484 |
-ROW |13976 |16486 |16485 |
-ROW |13977 |16480 |16479 |
-ROW |13978 |16482 |16481 |
-ROW |13979 |16475 |16474 |
-ROW |13980 |16471 |16472 |
-ROW |13981 |16468 |16469 |
-ROW |13982 |16459 |16460 |
-ROW |13983 |16462 |16463 |
-ROW |13984 |16465 |16466 |
-ROW |13985 |16477 |16476 |
-ROW |13986 |15729 |15728 |
-ROW |13987 |15730 |15728 |
-ROW |13988 |15730 |15729 |
-ROW |13989 |15752 |15754 |
-ROW |13990 |15753 |15754 |
-ROW |13991 |15753 |15752 |
-ROW |13992 |15742 |15741 |
-ROW |13993 |15750 |15749 |
-ROW |13994 |15751 |15750 |
-ROW |13995 |15751 |15749 |
-ROW |13996 |15746 |15743 |
-ROW |13997 |15744 |15743 |
-ROW |13998 |15740 |15739 |
-ROW |13999 |15736 |15737 |
-ROW |14000 |15733 |15734 |
-ROW |14001 |15748 |15747 |
-ROW |14002 |16440 |16439 |
-ROW |14003 |15791 |15790 |
-ROW |14004 |15788 |15787 |
-ROW |14005 |15789 |15787 |
-ROW |14006 |15789 |15788 |
-ROW |14007 |15786 |15785 |
-ROW |14008 |15784 |15783 |
-ROW |14009 |15794 |15792 |
-ROW |14010 |15793 |15792 |
-ROW |14011 |15782 |15781 |
-ROW |14012 |15763 |15764 |
-ROW |14013 |15766 |15767 |
-ROW |14014 |15769 |15770 |
-ROW |14015 |15778 |15779 |
-ROW |14016 |15772 |15773 |
-ROW |14017 |15775 |15776 |
-ROW |14018 |15797 |15796 |
-ROW |14019 |15804 |15803 |
-ROW |14020 |15805 |15803 |
-ROW |14021 |15805 |15804 |
-ROW |14022 |15807 |15808 |
-ROW |14023 |15810 |15811 |
-ROW |14024 |15813 |15814 |
-ROW |14025 |15825 |15824 |
-ROW |14026 |15826 |15824 |
-ROW |14027 |15826 |15825 |
-ROW |14028 |15828 |15829 |
-ROW |14029 |15831 |15832 |
-ROW |14030 |15834 |15835 |
-ROW |14031 |15845 |15846 |
+ROW |14032 |15944 |15947 |
+ROW |14033 |15944 |15943 |
+ROW |14034 |15943 |15947 |
+ROW |14035 |15942 |15947 |
+ROW |14036 |15942 |15943 |
+ROW |14037 |15948 |15949 |
+ROW |14038 |15950 |15949 |
+ROW |14039 |16743 |16744 |
+ROW |14040 |16784 |16785 |
+ROW |14041 |16790 |16791 |
+ROW |14042 |16646 |16647 |
+ROW |14043 |16809 |16810 |
+ROW |14044 |16752 |16753 |
+ROW |14045 |15955 |15957 |
+ROW |14046 |15955 |15954 |
+ROW |14047 |15954 |15957 |
+ROW |14048 |15956 |15957 |
+ROW |14049 |15956 |15954 |
+ROW |14050 |16678 |15957 |
+ROW |14051 |16678 |15954 |
+ROW |14052 |15961 |15960 |
+ROW |14053 |15962 |15960 |
+ROW |14054 |16679 |15960 |
+ROW |14055 |16257 |16255 |
+ROW |14056 |16257 |16256 |
+ROW |14057 |16256 |16255 |
+ROW |14058 |16251 |16255 |
+ROW |14059 |16251 |16256 |
+ROW |14060 |16443 |16255 |
+ROW |14061 |16443 |16256 |
+ROW |14062 |16270 |16269 |
+ROW |14063 |16448 |16269 |
+ROW |14064 |16265 |16269 |
+ROW |14065 |14195 |14205 |
+ROW |14066 |14196 |14195 |
+ROW |14067 |14196 |14205 |
+ROW |14068 |14197 |14205 |
+ROW |14069 |14198 |14197 |
+ROW |14070 |14198 |14205 |
+ROW |14071 |14200 |14199 |
+ROW |14072 |14201 |14205 |
+ROW |14073 |14202 |14201 |
+ROW |14074 |14202 |14205 |
+ROW |14075 |14204 |14203 |
+ROW |14076 |14206 |14222 |
+ROW |14077 |14207 |14206 |
+ROW |14078 |14207 |14222 |
+ROW |14079 |14208 |14222 |
+ROW |14080 |14209 |14208 |
+ROW |14081 |14209 |14222 |
+ROW |14082 |14210 |14222 |
+ROW |14083 |14211 |14210 |
+ROW |14084 |14211 |14222 |
+ROW |14085 |14212 |14222 |
+ROW |14086 |14213 |14212 |
+ROW |14087 |14213 |14222 |
+ROW |14088 |14214 |14222 |
+ROW |14089 |14215 |14214 |
+ROW |14090 |14215 |14222 |
+ROW |14091 |14217 |14216 |
+ROW |14092 |14218 |14222 |
+ROW |14093 |14219 |14218 |
+ROW |14094 |14219 |14222 |
+ROW |14095 |14220 |14222 |
+ROW |14096 |14221 |14220 |
+ROW |14097 |14221 |14222 |
+ROW |14098 |14223 |14222 |
+ROW |14099 |14224 |14222 |
+ROW |14100 |14224 |14223 |
+ROW |14101 |14225 |14222 |
+ROW |14102 |14226 |14222 |
+ROW |14103 |14226 |14225 |
+ROW |14104 |16833 |16828 |
+ROW |14105 |16719 |16721 |
+ROW |14106 |16722 |16723 |
+ROW |14107 |16729 |16728 |
+ROW |14108 |16730 |16728 |
+ROW |14109 |16756 |16758 |
+ROW |14110 |16765 |16764 |
+ROW |14111 |16766 |16764 |
+ROW |14112 |16731 |16732 |
+ROW |14113 |16734 |16736 |
+ROW |14114 |16741 |16740 |
+ROW |14115 |16742 |16740 |
+ROW |14116 |15928 |15933 |
+ROW |14117 |15931 |15933 |
+ROW |14118 |16683 |16687 |
+ROW |14119 |14252 |14251 |
+ROW |14120 |14289 |14288 |
+ROW |14121 |14525 |14524 |
+ROW |14122 |14718 |14717 |
+ROW |14123 |15799 |15798 |
+ROW |14124 |14294 |14293 |
+ROW |14125 |14312 |14311 |
+ROW |14126 |14328 |14327 |
+ROW |14127 |14348 |14347 |
+ROW |14128 |14357 |14356 |
+ROW |14129 |14390 |14389 |
+ROW |14130 |14404 |14403 |
+ROW |14131 |14452 |14451 |
+ROW |14132 |14469 |14468 |
+ROW |14133 |14487 |14486 |
+ROW |14134 |14506 |14505 |
+ROW |14135 |14535 |14534 |
+ROW |14136 |14545 |14544 |
+ROW |14137 |14583 |14582 |
+ROW |14138 |14599 |14598 |
+ROW |14139 |14616 |14615 |
+ROW |14140 |14653 |14652 |
+ROW |14141 |14674 |14673 |
+ROW |14142 |14692 |14691 |
+ROW |14143 |14705 |14704 |
+ROW |14144 |14907 |14906 |
+ROW |14145 |14929 |14928 |
+ROW |14146 |15221 |15220 |
+ROW |14147 |15702 |15701 |
+ROW |14148 |15724 |15723 |
+ROW |14149 |15756 |15755 |
+ROW |14150 |15820 |15819 |
+ROW |14151 |15841 |15840 |
+ROW |14152 |15991 |15990 |
+ROW |14153 |16018 |16017 |
+ROW |14154 |16454 |16453 |
+ROW |14155 |14253 |14252 |
+ROW |14156 |14290 |14289 |
+ROW |14157 |14526 |14525 |
+ROW |14158 |14719 |14718 |
+ROW |14159 |15800 |15799 |
+ROW |14160 |14295 |14294 |
+ROW |14161 |14313 |14312 |
+ROW |14162 |14329 |14328 |
+ROW |14163 |14349 |14348 |
+ROW |14164 |14358 |14357 |
+ROW |14165 |14391 |14390 |
+ROW |14166 |14405 |14404 |
+ROW |14167 |14453 |14452 |
+ROW |14168 |14470 |14469 |
+ROW |14169 |14488 |14487 |
+ROW |14170 |14507 |14506 |
+ROW |14171 |14536 |14535 |
+ROW |14172 |14546 |14545 |
+ROW |14173 |14584 |14583 |
+ROW |14174 |14600 |14599 |
+ROW |14175 |14617 |14616 |
+ROW |14176 |14654 |14653 |
+ROW |14177 |14675 |14674 |
+ROW |14178 |14693 |14692 |
+ROW |14179 |14706 |14705 |
+ROW |14180 |14908 |14907 |
+ROW |14181 |14930 |14929 |
+ROW |14182 |15222 |15221 |
+ROW |14183 |15703 |15702 |
+ROW |14184 |15725 |15724 |
+ROW |14185 |15757 |15756 |
+ROW |14186 |15821 |15820 |
+ROW |14187 |15842 |15841 |
+ROW |14188 |15992 |15991 |
+ROW |14189 |16019 |16018 |
+ROW |14190 |16455 |16454 |
+ROW |14191 |14253 |14251 |
+ROW |14192 |14290 |14288 |
+ROW |14193 |14526 |14524 |
+ROW |14194 |14719 |14717 |
+ROW |14195 |15800 |15798 |
+ROW |14196 |14295 |14293 |
+ROW |14197 |14313 |14311 |
+ROW |14198 |14329 |14327 |
+ROW |14199 |14349 |14347 |
+ROW |14200 |14358 |14356 |
+ROW |14201 |14391 |14389 |
+ROW |14202 |14405 |14403 |
+ROW |14203 |14453 |14451 |
+ROW |14204 |14470 |14468 |
+ROW |14205 |14488 |14486 |
+ROW |14206 |14507 |14505 |
+ROW |14207 |14536 |14534 |
+ROW |14208 |14546 |14544 |
+ROW |14209 |14584 |14582 |
+ROW |14210 |14600 |14598 |
+ROW |14211 |14617 |14615 |
+ROW |14212 |14654 |14652 |
+ROW |14213 |14675 |14673 |
+ROW |14214 |14693 |14691 |
+ROW |14215 |14706 |14704 |
+ROW |14216 |14908 |14906 |
+ROW |14217 |14930 |14928 |
+ROW |14218 |15222 |15220 |
+ROW |14219 |15703 |15701 |
+ROW |14220 |15725 |15723 |
+ROW |14221 |15757 |15755 |
+ROW |14222 |15821 |15819 |
+ROW |14223 |15842 |15840 |
+ROW |14224 |15992 |15990 |
+ROW |14225 |16019 |16017 |
+ROW |14226 |16455 |16453 |
+ROW |14227 |16275 |16277 |
+ROW |14228 |16278 |16284 |
+ROW |14229 |16279 |16285 |
+ROW |14230 |16280 |16286 |
+ROW |14231 |16277 |14288 |
+ROW |14232 |16284 |14524 |
+ROW |14233 |16285 |14717 |
+ROW |14234 |16286 |15798 |
+ROW |14235 |16287 |16289 |
+ROW |14236 |16290 |16348 |
+ROW |14237 |16291 |16349 |
+ROW |14238 |16292 |16350 |
+ROW |14239 |16293 |16351 |
+ROW |14240 |16294 |16352 |
+ROW |14241 |16295 |16353 |
+ROW |14242 |16296 |16354 |
+ROW |14243 |16297 |16355 |
+ROW |14244 |16298 |16356 |
+ROW |14245 |16299 |16357 |
+ROW |14246 |16300 |16358 |
+ROW |14247 |16301 |16359 |
+ROW |14248 |16302 |16360 |
+ROW |14249 |16303 |16361 |
+ROW |14250 |16304 |16362 |
+ROW |14251 |16305 |16363 |
+ROW |14252 |16306 |16364 |
+ROW |14253 |16307 |16365 |
+ROW |14254 |16308 |16366 |
+ROW |14255 |16309 |16367 |
+ROW |14256 |16310 |16368 |
+ROW |14257 |16311 |16369 |
+ROW |14258 |16312 |16370 |
+ROW |14259 |16313 |16371 |
+ROW |14260 |16314 |16372 |
+ROW |14261 |16315 |16373 |
+ROW |14262 |16316 |16374 |
+ROW |14263 |16317 |16375 |
+ROW |14264 |16318 |16376 |
+ROW |14265 |16457 |16458 |
+ROW |14266 |16289 |14293 |
+ROW |14267 |16348 |14311 |
+ROW |14268 |16349 |14327 |
+ROW |14269 |16350 |14347 |
+ROW |14270 |16351 |14356 |
+ROW |14271 |16352 |14389 |
+ROW |14272 |16353 |14403 |
+ROW |14273 |16354 |14451 |
+ROW |14274 |16355 |14468 |
+ROW |14275 |16356 |14486 |
+ROW |14276 |16357 |14505 |
+ROW |14277 |16358 |14534 |
+ROW |14278 |16359 |14544 |
+ROW |14279 |16360 |14582 |
+ROW |14280 |16361 |14598 |
+ROW |14281 |16362 |14615 |
+ROW |14282 |16363 |14652 |
+ROW |14283 |16364 |14673 |
+ROW |14284 |16365 |14691 |
+ROW |14285 |16366 |14704 |
+ROW |14286 |16367 |14906 |
+ROW |14287 |16368 |14928 |
+ROW |14288 |16369 |15220 |
+ROW |14289 |16370 |15701 |
+ROW |14290 |16371 |15723 |
+ROW |14291 |16372 |15755 |
+ROW |14292 |16373 |15819 |
+ROW |14293 |16374 |15840 |
+ROW |14294 |16375 |15990 |
+ROW |14295 |16376 |16017 |
+ROW |14296 |16458 |16453 |
+ROW |14297 |16701 |16700 |
+ROW |14298 |16704 |16703 |
+ROW |14299 |16631 |16630 |
+ROW |14300 |16640 |16636 |
+ROW |14301 |16641 |16637 |
+ROW |14302 |16642 |16638 |
+ROW |14303 |16643 |16639 |
+ROW |14304 |15692 |15490 |
+ROW |14305 |16423 |15490 |
+ROW |14306 |16424 |15490 |
+ROW |14307 |15693 |15492 |
+ROW |14308 |15694 |15493 |
+ROW |14309 |16425 |15492 |
+ROW |14310 |16426 |15493 |
+ROW |14311 |16427 |15492 |
+ROW |14312 |16428 |15493 |
+ROW |14313 |15695 |15496 |
+ROW |14314 |16429 |15496 |
+ROW |14315 |16430 |15496 |
+ROW |14316 |15696 |15498 |
+ROW |14317 |15697 |15499 |
+ROW |14318 |16431 |15498 |
+ROW |14319 |16432 |15499 |
+ROW |14320 |16433 |15498 |
+ROW |14321 |16434 |15499 |
+ROW |14322 |15670 |15506 |
+ROW |14323 |16377 |15506 |
+ROW |14324 |16378 |15506 |
+ROW |14325 |15671 |15508 |
+ROW |14326 |16379 |15508 |
+ROW |14327 |16380 |15508 |
+ROW |14328 |15672 |15510 |
+ROW |14329 |15673 |15511 |
+ROW |14330 |15674 |15512 |
+ROW |14331 |15675 |15513 |
+ROW |14332 |15676 |15514 |
+ROW |14333 |15677 |15515 |
+ROW |14334 |15678 |15516 |
+ROW |14335 |15679 |15517 |
+ROW |14336 |15680 |15518 |
+ROW |14337 |15681 |15519 |
+ROW |14338 |15682 |15520 |
+ROW |14339 |15683 |15521 |
+ROW |14340 |15684 |15522 |
+ROW |14341 |15685 |15523 |
+ROW |14342 |15686 |15524 |
+ROW |14343 |15687 |15525 |
+ROW |14344 |15689 |15527 |
+ROW |14345 |15690 |15528 |
+ROW |14346 |15691 |15529 |
+ROW |14347 |15708 |15709 |
+ROW |14348 |15997 |15998 |
+ROW |14349 |16381 |15510 |
+ROW |14350 |16382 |15511 |
+ROW |14351 |16383 |15512 |
+ROW |14352 |16384 |15513 |
+ROW |14353 |16385 |15514 |
+ROW |14354 |16386 |15515 |
+ROW |14355 |16387 |15516 |
+ROW |14356 |16388 |15517 |
+ROW |14357 |16389 |15518 |
+ROW |14358 |16390 |15519 |
+ROW |14359 |16391 |15520 |
+ROW |14360 |16392 |15521 |
+ROW |14361 |16393 |15522 |
+ROW |14362 |16394 |15523 |
+ROW |14363 |16395 |15524 |
+ROW |14364 |16396 |15525 |
+ROW |14365 |16397 |15527 |
+ROW |14366 |16398 |15528 |
+ROW |14367 |16399 |15529 |
+ROW |14368 |16400 |15709 |
+ROW |14369 |16401 |15998 |
+ROW |14370 |16402 |15510 |
+ROW |14371 |16403 |15511 |
+ROW |14372 |16404 |15512 |
+ROW |14373 |16405 |15513 |
+ROW |14374 |16406 |15514 |
+ROW |14375 |16407 |15515 |
+ROW |14376 |16408 |15516 |
+ROW |14377 |16409 |15517 |
+ROW |14378 |16410 |15518 |
+ROW |14379 |16411 |15519 |
+ROW |14380 |16412 |15520 |
+ROW |14381 |16413 |15521 |
+ROW |14382 |16414 |15522 |
+ROW |14383 |16415 |15523 |
+ROW |14384 |16416 |15524 |
+ROW |14385 |16417 |15525 |
+ROW |14386 |16418 |15527 |
+ROW |14387 |16419 |15528 |
+ROW |14388 |16420 |15529 |
+ROW |14389 |16421 |15709 |
+ROW |14390 |16422 |15998 |
+ROW |14391 |15698 |15502 |
+ROW |14392 |16435 |15502 |
+ROW |14393 |16436 |15502 |
+ROW |14394 |16028 |16029 |
+ROW |14395 |16437 |16029 |
+ROW |14396 |16438 |16029 |
+ROW |14397 |14318 |14319 |
+ROW |14398 |15714 |15715 |
+ROW |14399 |15721 |15720 |
+ROW |14400 |15394 |15393 |
+ROW |14401 |15392 |15391 |
+ROW |14402 |15390 |14339 |
+ROW |14403 |15382 |15381 |
+ROW |14404 |15380 |15379 |
+ROW |14405 |16504 |16505 |
+ROW |14406 |14372 |14373 |
+ROW |14407 |15386 |15385 |
+ROW |14408 |15384 |15383 |
+ROW |14409 |14380 |14381 |
+ROW |14410 |15347 |15346 |
+ROW |14411 |15345 |15344 |
+ROW |14412 |15342 |15343 |
+ROW |14413 |15363 |15360 |
+ROW |14414 |15364 |15361 |
+ROW |14415 |15365 |15362 |
+ROW |14416 |15357 |15354 |
+ROW |14417 |15358 |15355 |
+ROW |14418 |15359 |15356 |
+ROW |14419 |15348 |15351 |
+ROW |14420 |15349 |15352 |
+ROW |14421 |15350 |15353 |
+ROW |14422 |15334 |15333 |
+ROW |14423 |15332 |15331 |
+ROW |14424 |14460 |14461 |
+ROW |14425 |14476 |14477 |
+ROW |14426 |14495 |14496 |
+ROW |14427 |14511 |15368 |
+ROW |14428 |14551 |14552 |
+ROW |14429 |15374 |15373 |
+ROW |14430 |15376 |15375 |
+ROW |14431 |14914 |14915 |
+ROW |14432 |14589 |14590 |
+ROW |14433 |15338 |15337 |
+ROW |14434 |15335 |15336 |
+ROW |14435 |14624 |14625 |
+ROW |14436 |15387 |14934 |
+ROW |14437 |14658 |14659 |
+ROW |14438 |14664 |14665 |
+ROW |14439 |16547 |16546 |
+ROW |14440 |15396 |15397 |
+ROW |14441 |16551 |16552 |
+ROW |14442 |16034 |16032 |
+ROW |14443 |16051 |16047 |
+ROW |14444 |16052 |16048 |
+ROW |14445 |16034 |16033 |
+ROW |14446 |16051 |16049 |
+ROW |14447 |16052 |16050 |
+ROW |14448 |16031 |16563 |
+ROW |14449 |16045 |16564 |
+ROW |14450 |16046 |16565 |
+ROW |14451 |16039 |16040 |
+ROW |14452 |16061 |16063 |
+ROW |14453 |16062 |16064 |
+ROW |14454 |16042 |16579 |
+ROW |14455 |16067 |16580 |
+ROW |14456 |16068 |16581 |
+ROW |14457 |16041 |16042 |
+ROW |14458 |16065 |16067 |
+ROW |14459 |16066 |16068 |
+ROW |14460 |16041 |16579 |
+ROW |14461 |16065 |16580 |
+ROW |14462 |16066 |16581 |
+ROW |14463 |16032 |16033 |
+ROW |14464 |16047 |16049 |
+ROW |14465 |16048 |16050 |
+ROW |14466 |16070 |16069 |
+ROW |14467 |16072 |16071 |
+ROW |14468 |16076 |16075 |
+ROW |14469 |16074 |16075 |
+ROW |14470 |16079 |16077 |
+ROW |14471 |16080 |16078 |
+ROW |14472 |16083 |16081 |
+ROW |14473 |16084 |16082 |
+ROW |14474 |16091 |16089 |
+ROW |14475 |16092 |16090 |
+ROW |14476 |16087 |16089 |
+ROW |14477 |16088 |16090 |
+ROW |14478 |16100 |16098 |
+ROW |14479 |16113 |16111 |
+ROW |14480 |16100 |16099 |
+ROW |14481 |16113 |16112 |
+ROW |14482 |16097 |16569 |
+ROW |14483 |16110 |16570 |
+ROW |14484 |16105 |16106 |
+ROW |14485 |16118 |16119 |
+ROW |14486 |16108 |16582 |
+ROW |14487 |16121 |16583 |
+ROW |14488 |16107 |16108 |
+ROW |14489 |16120 |16121 |
+ROW |14490 |16107 |16582 |
+ROW |14491 |16120 |16583 |
+ROW |14492 |16098 |16099 |
+ROW |14493 |16111 |16112 |
+ROW |14494 |16123 |16122 |
+ROW |14495 |16125 |16124 |
+ROW |14496 |16129 |16128 |
+ROW |14497 |16127 |16128 |
+ROW |14498 |16131 |16130 |
+ROW |14499 |16133 |16132 |
+ROW |14500 |16137 |16136 |
+ROW |14501 |16135 |16136 |
+ROW |14502 |16149 |16147 |
+ROW |14503 |16149 |16148 |
+ROW |14504 |16141 |16142 |
+ROW |14505 |16146 |16573 |
+ROW |14506 |16143 |16584 |
+ROW |14507 |16147 |16148 |
+ROW |14508 |16152 |16154 |
+ROW |14509 |16153 |16154 |
+ROW |14510 |16150 |16154 |
+ROW |14511 |16151 |16154 |
+ROW |14512 |16156 |16155 |
+ROW |14513 |16158 |16157 |
+ROW |14514 |16001 |15999 |
+ROW |14515 |16005 |16003 |
+ROW |14516 |16001 |16000 |
+ROW |14517 |16005 |16004 |
+ROW |14518 |15999 |16000 |
+ROW |14519 |16003 |16004 |
+ROW |14520 |16009 |16008 |
+ROW |14521 |16011 |16010 |
+ROW |14522 |16014 |16013 |
+ROW |14523 |16016 |16015 |
+ROW |14524 |16165 |16164 |
+ROW |14525 |16176 |16175 |
+ROW |14526 |16161 |16160 |
+ROW |14527 |16172 |16171 |
+ROW |14528 |16162 |16161 |
+ROW |14529 |16173 |16172 |
+ROW |14530 |16162 |16160 |
+ROW |14531 |16173 |16171 |
+ROW |14532 |16711 |16160 |
+ROW |14533 |16712 |16171 |
+ROW |14534 |16166 |16164 |
+ROW |14535 |16177 |16175 |
+ROW |14536 |16167 |16164 |
+ROW |14537 |16178 |16175 |
+ROW |14538 |16183 |16182 |
+ROW |14539 |16187 |16188 |
+ROW |14540 |16185 |16188 |
+ROW |14541 |16186 |16188 |
+ROW |14542 |16190 |16189 |
+ROW |14543 |16194 |16195 |
+ROW |14544 |16192 |16195 |
+ROW |14545 |16193 |16195 |
+ROW |14546 |16214 |16213 |
+ROW |14547 |16225 |16224 |
+ROW |14548 |16210 |16209 |
+ROW |14549 |16221 |16220 |
+ROW |14550 |16211 |16210 |
+ROW |14551 |16222 |16221 |
+ROW |14552 |16211 |16209 |
+ROW |14553 |16222 |16220 |
+ROW |14554 |16715 |16209 |
+ROW |14555 |16716 |16220 |
+ROW |14556 |16215 |16213 |
+ROW |14557 |16226 |16224 |
+ROW |14558 |16216 |16213 |
+ROW |14559 |16227 |16224 |
+ROW |14560 |16232 |16231 |
+ROW |14561 |16236 |16237 |
+ROW |14562 |16234 |16237 |
+ROW |14563 |16235 |16237 |
+ROW |14564 |16239 |16238 |
+ROW |14565 |16243 |16244 |
+ROW |14566 |16241 |16244 |
+ROW |14567 |16242 |16244 |
+ROW |14568 |16768 |16769 |
+ROW |14569 |16768 |16770 |
+ROW |14570 |16769 |16770 |
+ROW |14571 |16771 |16772 |
+ROW |14572 |16771 |16773 |
+ROW |14573 |16772 |16773 |
+ROW |14574 |16488 |16487 |
+ROW |14575 |16485 |16484 |
+ROW |14576 |16486 |16484 |
+ROW |14577 |16486 |16485 |
+ROW |14578 |16480 |16479 |
+ROW |14579 |16482 |16481 |
+ROW |14580 |16475 |16474 |
+ROW |14581 |16471 |16472 |
+ROW |14582 |16468 |16469 |
+ROW |14583 |16459 |16460 |
+ROW |14584 |16462 |16463 |
+ROW |14585 |16465 |16466 |
+ROW |14586 |16477 |16476 |
+ROW |14587 |15729 |15728 |
+ROW |14588 |15730 |15728 |
+ROW |14589 |15730 |15729 |
+ROW |14590 |15752 |15754 |
+ROW |14591 |15753 |15754 |
+ROW |14592 |15753 |15752 |
+ROW |14593 |15742 |15741 |
+ROW |14594 |15750 |15749 |
+ROW |14595 |15751 |15750 |
+ROW |14596 |15751 |15749 |
+ROW |14597 |15746 |15743 |
+ROW |14598 |15744 |15743 |
+ROW |14599 |15740 |15739 |
+ROW |14600 |15736 |15737 |
+ROW |14601 |15733 |15734 |
+ROW |14602 |15748 |15747 |
+ROW |14603 |16440 |16439 |
+ROW |14604 |15791 |15790 |
+ROW |14605 |15788 |15787 |
+ROW |14606 |15789 |15787 |
+ROW |14607 |15789 |15788 |
+ROW |14608 |15786 |15785 |
+ROW |14609 |15784 |15783 |
+ROW |14610 |15794 |15792 |
+ROW |14611 |15793 |15792 |
+ROW |14612 |15782 |15781 |
+ROW |14613 |15763 |15764 |
+ROW |14614 |15766 |15767 |
+ROW |14615 |15769 |15770 |
+ROW |14616 |15778 |15779 |
+ROW |14617 |15772 |15773 |
+ROW |14618 |15775 |15776 |
+ROW |14619 |15797 |15796 |
+ROW |14620 |15804 |15803 |
+ROW |14621 |15805 |15803 |
+ROW |14622 |15805 |15804 |
+ROW |14623 |15807 |15808 |
+ROW |14624 |15810 |15811 |
+ROW |14625 |15813 |15814 |
+ROW |14626 |15825 |15824 |
+ROW |14627 |15826 |15824 |
+ROW |14628 |15826 |15825 |
+ROW |14629 |15828 |15829 |
+ROW |14630 |15831 |15832 |
+ROW |14631 |15834 |15835 |
+ROW |14632 |15845 |15846 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -9326,481 +9326,481 @@ ROW |19692 |30885 |16839 |min |5m
ROW |19693 |30890 |16840 |min |5m |
TABLE |graphs
-FIELDS|graphid|name |width|height|yaxismin|yaxismax|templateid|show_work_period|show_triggers|graphtype|show_legend|show_3d|percent_left|percent_right|ymin_type|ymax_type|ymin_itemid|ymax_itemid|flags|
-ROW |1000 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1001 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1007 |RabbitMQ: File descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1008 |RabbitMQ: Disk free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1009 |RabbitMQ: Memory used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1010 |RabbitMQ: Sockets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1011 |RabbitMQ: Node status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1012 |RabbitMQ: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1013 |RabbitMQ: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1014 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1015 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1016 |RabbitMQ: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1017 |RabbitMQ: Queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1018 |RabbitMQ: Messages |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1019 |RabbitMQ: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1020 |RabbitMQ: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1021 |RabbitMQ: File descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1022 |RabbitMQ: Disk free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1023 |RabbitMQ: Memory used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1024 |RabbitMQ: Sockets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1025 |RabbitMQ: Node status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1026 |RabbitMQ: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1027 |RabbitMQ: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1028 |RabbitMQ: Queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1029 |RabbitMQ: Messages |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1030 |RabbitMQ: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1031 |RabbitMQ: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1032 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |1033 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1034 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1035 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1038 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1042 |#{#SNMPINDEX}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1043 |{#SNMPINDEX}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1044 |#{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1045 |#{#SNMPVALUE}: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |1046 |#{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1047 |{#MODULE_NAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1048 |#{#SNMPVALUE}: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |1049 |#{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1050 |{#ENT_NAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1051 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1052 |Disk-{#SNMPINDEX}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1053 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1054 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |1055 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1056 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1057 |#{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1058 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1060 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1065 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1070 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1075 |HAProxy: Backend {#PXNAME} Redispatched requests and retried connections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1076 |HAProxy: Frontend {#PXNAME} Errors and denials per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1077 |HAProxy: Frontend {#PXNAME} In/Out traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1078 |HAProxy: Frontend {#PXNAME} Requests and sessions per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1079 |HAProxy: Frontend {#PXNAME} Responses by HTTP code |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1080 |HAProxy: {#PXNAME} {#SVNAME} Response time and time in queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1081 |HAProxy: Backend {#PXNAME} Redispatched requests and retried connections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1082 |HAProxy: Frontend {#PXNAME} Errors and denials per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1083 |HAProxy: Frontend {#PXNAME} In/Out traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1084 |HAProxy: Frontend {#PXNAME} Requests and sessions per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1085 |HAProxy: Frontend {#PXNAME} Responses by HTTP code |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1086 |HAProxy: {#PXNAME} {#SVNAME} Response time and time in queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1087 |Redis: Memory usage{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1088 |DB {#DB}: Keys |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1089 |Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag bytes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1090 |Redis: Replication lag time{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1091 |Redis: Clients |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1092 |Redis: Commands |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1093 |Redis: CPU |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1094 |Redis: Expired keys |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1095 |Redis: Keyspace |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1096 |Redis: Memory |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1097 |Redis: Memory fragmentation |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1098 |Redis: Network |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1099 |Redis: Persistence |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1100 |Redis: Slaves |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1101 |Redis: Slowlog |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1102 |Redis: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1103 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1105 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1107 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1109 |MySQL: Bandwidth |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1110 |MySQL: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1111 |MySQL: InnoDB buffer pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1112 |MySQL: Operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1113 |MySQL: Queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1114 |MySQL: Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1115 |MySQL: Bandwidth |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1116 |MySQL: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1117 |MySQL: InnoDB buffer pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1118 |MySQL: Operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1119 |MySQL: Queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1120 |MySQL: Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1121 |Container {#NAME}: CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1122 |Container {#NAME}: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1123 |Container {#NAME}: Network packets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1124 |Container {#NAME}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1125 |Docker: Containers |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1126 |Docker: Goroutines |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1127 |Docker: Images |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1128 |Docker: Memory total |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1129 |Docker: Size |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1130 |Memcached: Commands |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1131 |Memcached: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1132 |Memcached: Connections rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1133 |Memcached: Keyspace |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1134 |Memcached: Network |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1135 |Memcached: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1136 |MySQL: Bandwidth |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1137 |MySQL: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1138 |MySQL: InnoDB buffer pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1139 |MySQL: Operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1140 |MySQL: Queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1141 |MySQL: Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1142 |IPMI: {#SENSOR_ID} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1143 |ES {#ES.NODE}: Latency |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1144 |ES {#ES.NODE}: Query load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1145 |ES {#ES.NODE}: Refresh thread pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1146 |ES {#ES.NODE}: Search thread pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1147 |ES {#ES.NODE}: Write thread pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1148 |ES: Cluster health |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1149 |HAProxy: TCP Backend {#PXNAME} Redispatched requests and retried connections per second|900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1150 |HAProxy: TCP Frontend {#PXNAME} Errors and denials per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1151 |HAProxy: TCP Frontend {#PXNAME} In/Out traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1152 |HAProxy: TCP Frontend {#PXNAME} Requests and sessions per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1153 |HAProxy: TCP {#PXNAME} {#SVNAME} Response time and time in queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1154 |HAProxy: TCP Backend {#PXNAME} Redispatched requests and retried connections per second|900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1155 |HAProxy: TCP Frontend {#PXNAME} Errors and denials per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1156 |HAProxy: TCP Frontend {#PXNAME} In/Out traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1157 |HAProxy: TCP Frontend {#PXNAME} Requests and sessions per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1158 |HAProxy: TCP {#PXNAME} {#SVNAME} Response time and time in queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1159 |ClickHouse: {#DB}.{#TABLE}: Replica log activity |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1160 |ClickHouse: {#DB}.{#TABLE}: Replica queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1161 |ClickHouse: Current activity |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1162 |ClickHouse: Current connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1163 |ClickHouse: Distributed |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1164 |ClickHouse: Insert/Merge bytes rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1165 |ClickHouse: Insert/Merge rows rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1166 |ClickHouse: Memory Usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1167 |ClickHouse: Memory Utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1168 |ClickHouse: Queries rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1169 |ClickHouse: Syscalls in fly |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1170 |ClickHouse: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1171 |ClickHouse: Zookeeper exeptions rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |392 |Zabbix server performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |404 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |406 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |410 |Zabbix cache usage, % used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |456 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |457 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |458 |Swap usage |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |459 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |461 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |462 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |463 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |464 |Swap usage |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |465 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |467 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |469 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |471 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |472 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |473 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |474 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |475 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |478 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |479 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |480 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |481 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |482 |Swap usage |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |483 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |484 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |485 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |487 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |491 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |492 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |493 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |494 |Network traffic on en0 |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |498 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |527 |Value cache effectiveness |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |529 |Zabbix cache usage, % used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |530 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |531 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |532 |Zabbix proxy performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |540 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22943 |0 |
-ROW |541 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22903 |0 |
-ROW |542 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22983 |0 |
-ROW |543 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |23063 |0 |
-ROW |544 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22863 |0 |
-ROW |545 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |23023 |0 |
-ROW |638 |Class Loader |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |639 |File Descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |640 |Garbage Collector collections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |641 |Memory Pool CMS Old Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |642 |Memory Pool CMS Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |643 |Memory Pool Code Cache |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |644 |Memory Pool Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |645 |Memory Pool PS Old Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |646 |Memory Pool PS Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |647 |Memory Pool Tenured Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |648 |Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |651 |Fan speed and ambient temperature |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |652 |Voltage |900 |200 |0 |5.5 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |653 |Fan speed and temperature |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |654 |Voltage |900 |200 |0 |5.5 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |668 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |671 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |675 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |687 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |691 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |694 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |698 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |701 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |704 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |708 |{#MODULE_NAME}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |714 |{#ENT_NAME}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |724 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |727 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |730 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |733 |#{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |736 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |738 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |741 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |744 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |745 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |766 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |775 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |786 |{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |788 |Zabbix internal queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |793 |http-8080 worker threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |794 |http-8443 worker threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |795 |jk-8009 worker threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |796 |sessions / |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |797 |Value cache effectiveness |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |798 |Zabbix cache usage, % free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |799 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |800 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |801 |Zabbix internal queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |802 |Zabbix server performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |803 |Zabbix cache usage, % free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |804 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |805 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |806 |Zabbix proxy performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |807 |Zabbix internal queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |814 |DB {#DBNAME}: Block hit/read |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |815 |DB {#DBNAME}: Database size |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |816 |DB {#DBNAME}: Events |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |817 |DB {#DBNAME}: Locks |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |818 |DB {#DBNAME}: Queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |819 |DB {#DBNAME}: Slow queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |820 |DB {#DBNAME}: Temp files |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |821 |DB {#DBNAME}: Tuples |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |
-ROW |822 |PostgreSQL bgwriter |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |823 |PostgreSQL checkpoints |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |824 |PostgreSQL connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |825 |PostgreSQL ping |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |826 |PostgreSQL replication lag |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |827 |PostgreSQL transactions |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |828 |PostgreSQL uptime |900 |200 |0 |100 |NULL |1 |0 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |829 |PostgreSQL WAL |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |830 |Apache: Current async connections{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |831 |Apache: Current async processes{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |832 |Apache: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |833 |Apache: Workers total |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |834 |Apache: Worker states |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |835 |Apache: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |836 |Apache: Current async connections{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |837 |Apache: Current async processes{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |838 |Apache: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |839 |Apache: Workers total |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |840 |Apache: Worker states |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |841 |Nginx: Connections by state |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |842 |Nginx: Connections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |843 |Nginx: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |844 |Nginx: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |845 |Nginx: Connections by state |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |846 |Nginx: Connections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |847 |Nginx: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |856 |{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |859 |MySQL bandwidth |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |860 |MySQL connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |861 |MySQL InnoDB buffer pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |862 |MySQL operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |863 |MySQL queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |864 |MySQL threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |866 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |868 |CPU usage{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |870 |CPU utilization{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |872 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |874 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |876 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |878 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |880 |System load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |882 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |887 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |890 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |893 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |896 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |899 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |902 |System load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |905 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |908 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |911 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |914 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |917 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |920 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |923 |Processes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |926 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |928 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |930 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |932 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |934 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |936 |System load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |938 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |940 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |942 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |944 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |946 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |948 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |950 |Processes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |952 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |953 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |954 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |955 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |956 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |957 |System load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |958 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |959 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |960 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |961 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |962 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |963 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |964 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |966 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |968 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |970 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |972 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |974 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |976 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |978 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |980 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |982 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |984 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |986 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |988 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |990 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |992 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |994 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |996 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |998 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |1036 |Memory utilization |900 |200 |0 |100 |1035 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1037 |Memory utilization |900 |200 |0 |100 |1035 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1039 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |1038 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1040 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |1038 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1041 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |1038 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1061 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1060 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1062 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1063 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1064 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1066 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1065 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1067 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1068 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1069 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1071 |CPU utilization |900 |200 |0 |100 |1070 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1072 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1073 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1074 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |1104 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1103 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |1106 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1105 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |1108 |CPU utilization |900 |200 |0 |100 |1107 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |517 |Zabbix internal process busy % |900 |200 |0 |100 |406 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |518 |Zabbix data gathering process busy % |900 |200 |0 |100 |404 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |519 |Zabbix server performance |900 |200 |0 |100 |392 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |520 |Zabbix cache usage, % used |900 |200 |0 |100 |410 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |528 |Value cache effectiveness |900 |200 |0 |100 |527 |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |676 |CPU utilization |900 |200 |0 |100 |675 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |677 |CPU utilization |900 |200 |0 |100 |675 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |688 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |687 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |692 |CPU utilization |900 |200 |0 |100 |691 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |739 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |738 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |740 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |738 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |742 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |741 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |743 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |741 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |746 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |747 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |748 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |749 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |750 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |752 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |753 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |754 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |755 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |756 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |758 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |759 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |760 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |762 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |763 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |764 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |773 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |778 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |785 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |787 |{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |786 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |789 |Zabbix internal queues |900 |200 |0 |100 |788 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |790 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |865 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |867 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |866 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |869 |CPU usage{#SINGLETON} |900 |200 |0 |100 |868 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |871 |CPU utilization{#SINGLETON} |900 |200 |0 |100 |870 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |
-ROW |873 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |872 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |875 |Memory utilization |900 |200 |0 |100 |874 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |877 |Memory usage |900 |200 |0 |100 |876 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |879 |Swap usage |900 |200 |0 |100 |878 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |881 |System load |900 |200 |0 |100 |880 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |883 |CPU jumps |900 |200 |0 |100 |882 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |886 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |766 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |888 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |887 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |889 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |888 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |891 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |890 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |892 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |891 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |894 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |893 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |895 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |894 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |897 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |896 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |898 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |897 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |900 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |899 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |901 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |900 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |903 |System load |900 |200 |0 |100 |902 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |904 |System load |900 |200 |0 |100 |903 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |906 |CPU utilization |900 |200 |0 |100 |905 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |907 |CPU utilization |900 |200 |0 |100 |906 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |909 |CPU usage |900 |200 |0 |100 |908 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |910 |CPU usage |900 |200 |0 |100 |909 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |912 |CPU jumps |900 |200 |0 |100 |911 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |913 |CPU jumps |900 |200 |0 |100 |912 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |915 |Memory utilization |900 |200 |0 |100 |914 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |916 |Memory utilization |900 |200 |0 |100 |915 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |918 |Memory usage |900 |200 |0 |100 |917 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |919 |Memory usage |900 |200 |0 |100 |918 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |921 |Swap usage |900 |200 |0 |100 |920 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |922 |Swap usage |900 |200 |0 |100 |921 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |924 |Processes |900 |200 |0 |100 |923 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |925 |Processes |900 |200 |0 |100 |924 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |927 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |926 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |929 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |928 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |931 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |930 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |933 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |932 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |935 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |934 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |937 |System load |900 |200 |0 |100 |936 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |939 |CPU utilization |900 |200 |0 |100 |938 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |941 |CPU usage |900 |200 |0 |100 |940 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |943 |CPU jumps |900 |200 |0 |100 |942 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |945 |Memory utilization |900 |200 |0 |100 |944 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |947 |Memory usage |900 |200 |0 |100 |946 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |
-ROW |949 |Swap usage |900 |200 |0 |100 |948 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |951 |Processes |900 |200 |0 |100 |950 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |965 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |964 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |967 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |966 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |969 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |968 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |971 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |970 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |973 |CPU utilization |900 |200 |0 |100 |972 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |975 |CPU jumps |900 |200 |0 |100 |974 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |977 |CPU usage |900 |200 |0 |100 |976 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |979 |Memory utilization |900 |200 |0 |100 |978 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |981 |Swap usage |900 |200 |0 |100 |980 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |983 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |982 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |985 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |984 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |987 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |986 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |989 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |988 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |
-ROW |991 |CPU utilization |900 |200 |0 |100 |990 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |993 |CPU jumps |900 |200 |0 |100 |992 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
-ROW |995 |CPU usage |900 |200 |0 |100 |994 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |997 |Memory utilization |900 |200 |0 |100 |996 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |
-ROW |999 |Swap usage |900 |200 |0 |100 |998 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |
+FIELDS|graphid|name |width|height|yaxismin|yaxismax|templateid|show_work_period|show_triggers|graphtype|show_legend|show_3d|percent_left|percent_right|ymin_type|ymax_type|ymin_itemid|ymax_itemid|flags|discover|
+ROW |1000 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1001 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1007 |RabbitMQ: File descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1008 |RabbitMQ: Disk free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1009 |RabbitMQ: Memory used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1010 |RabbitMQ: Sockets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1011 |RabbitMQ: Node status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1012 |RabbitMQ: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1013 |RabbitMQ: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1014 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1015 |RabbitMQ: Queue {#VHOST}/{#QUEUE}: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1016 |RabbitMQ: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1017 |RabbitMQ: Queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1018 |RabbitMQ: Messages |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1019 |RabbitMQ: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1020 |RabbitMQ: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1021 |RabbitMQ: File descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1022 |RabbitMQ: Disk free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1023 |RabbitMQ: Memory used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1024 |RabbitMQ: Sockets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1025 |RabbitMQ: Node status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1026 |RabbitMQ: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1027 |RabbitMQ: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1028 |RabbitMQ: Queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1029 |RabbitMQ: Messages |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1030 |RabbitMQ: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1031 |RabbitMQ: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1032 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |1033 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1034 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1035 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1038 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1042 |#{#SNMPINDEX}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1043 |{#SNMPINDEX}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1044 |#{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1045 |#{#SNMPVALUE}: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |1046 |#{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1047 |{#MODULE_NAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1048 |#{#SNMPVALUE}: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |1049 |#{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1050 |{#ENT_NAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1051 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1052 |Disk-{#SNMPINDEX}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1053 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1054 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |1055 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1056 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1057 |#{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1058 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1060 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1065 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1070 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1075 |HAProxy: Backend {#PXNAME} Redispatched requests and retried connections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1076 |HAProxy: Frontend {#PXNAME} Errors and denials per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1077 |HAProxy: Frontend {#PXNAME} In/Out traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1078 |HAProxy: Frontend {#PXNAME} Requests and sessions per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1079 |HAProxy: Frontend {#PXNAME} Responses by HTTP code |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1080 |HAProxy: {#PXNAME} {#SVNAME} Response time and time in queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1081 |HAProxy: Backend {#PXNAME} Redispatched requests and retried connections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1082 |HAProxy: Frontend {#PXNAME} Errors and denials per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1083 |HAProxy: Frontend {#PXNAME} In/Out traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1084 |HAProxy: Frontend {#PXNAME} Requests and sessions per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1085 |HAProxy: Frontend {#PXNAME} Responses by HTTP code |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1086 |HAProxy: {#PXNAME} {#SVNAME} Response time and time in queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1087 |Redis: Memory usage{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1088 |DB {#DB}: Keys |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1089 |Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag bytes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1090 |Redis: Replication lag time{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1091 |Redis: Clients |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1092 |Redis: Commands |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1093 |Redis: CPU |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1094 |Redis: Expired keys |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1095 |Redis: Keyspace |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1096 |Redis: Memory |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1097 |Redis: Memory fragmentation |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1098 |Redis: Network |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1099 |Redis: Persistence |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1100 |Redis: Slaves |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1101 |Redis: Slowlog |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1102 |Redis: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1103 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1105 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1107 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1109 |MySQL: Bandwidth |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1110 |MySQL: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1111 |MySQL: InnoDB buffer pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1112 |MySQL: Operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1113 |MySQL: Queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1114 |MySQL: Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1115 |MySQL: Bandwidth |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1116 |MySQL: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1117 |MySQL: InnoDB buffer pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1118 |MySQL: Operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1119 |MySQL: Queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1120 |MySQL: Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1121 |Container {#NAME}: CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1122 |Container {#NAME}: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1123 |Container {#NAME}: Network packets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1124 |Container {#NAME}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1125 |Docker: Containers |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1126 |Docker: Goroutines |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1127 |Docker: Images |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1128 |Docker: Memory total |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1129 |Docker: Size |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1130 |Memcached: Commands |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1131 |Memcached: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1132 |Memcached: Connections rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1133 |Memcached: Keyspace |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1134 |Memcached: Network |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1135 |Memcached: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1136 |MySQL: Bandwidth |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1137 |MySQL: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1138 |MySQL: InnoDB buffer pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1139 |MySQL: Operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1140 |MySQL: Queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1141 |MySQL: Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1142 |IPMI: {#SENSOR_ID} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1143 |ES {#ES.NODE}: Latency |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1144 |ES {#ES.NODE}: Query load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1145 |ES {#ES.NODE}: Refresh thread pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1146 |ES {#ES.NODE}: Search thread pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1147 |ES {#ES.NODE}: Write thread pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1148 |ES: Cluster health |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1149 |HAProxy: TCP Backend {#PXNAME} Redispatched requests and retried connections per second|900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1150 |HAProxy: TCP Frontend {#PXNAME} Errors and denials per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1151 |HAProxy: TCP Frontend {#PXNAME} In/Out traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1152 |HAProxy: TCP Frontend {#PXNAME} Requests and sessions per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1153 |HAProxy: TCP {#PXNAME} {#SVNAME} Response time and time in queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1154 |HAProxy: TCP Backend {#PXNAME} Redispatched requests and retried connections per second|900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1155 |HAProxy: TCP Frontend {#PXNAME} Errors and denials per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1156 |HAProxy: TCP Frontend {#PXNAME} In/Out traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1157 |HAProxy: TCP Frontend {#PXNAME} Requests and sessions per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1158 |HAProxy: TCP {#PXNAME} {#SVNAME} Response time and time in queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1159 |ClickHouse: {#DB}.{#TABLE}: Replica log activity |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1160 |ClickHouse: {#DB}.{#TABLE}: Replica queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1161 |ClickHouse: Current activity |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1162 |ClickHouse: Current connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1163 |ClickHouse: Distributed |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1164 |ClickHouse: Insert/Merge bytes rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1165 |ClickHouse: Insert/Merge rows rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1166 |ClickHouse: Memory Usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1167 |ClickHouse: Memory Utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1168 |ClickHouse: Queries rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1169 |ClickHouse: Syscalls in fly |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1170 |ClickHouse: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1171 |ClickHouse: Zookeeper exeptions rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |392 |Zabbix server performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |404 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |406 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |410 |Zabbix cache usage, % used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |456 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |457 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |458 |Swap usage |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |459 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |461 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |462 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |463 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |464 |Swap usage |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |465 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |467 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |469 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |471 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |472 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |473 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |474 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |475 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |478 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |479 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |480 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |481 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |482 |Swap usage |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |483 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |484 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |485 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |487 |CPU load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |491 |Disk space usage {#FSNAME} |600 |340 |0 |100 |NULL |0 |0 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |492 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |493 |Network traffic on {#IFNAME} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |494 |Network traffic on en0 |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |498 |CPU utilization |900 |200 |0 |100 |NULL |1 |0 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |527 |Value cache effectiveness |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |529 |Zabbix cache usage, % used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |530 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |531 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |532 |Zabbix proxy performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |540 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22943 |0 |0 |
+ROW |541 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22903 |0 |0 |
+ROW |542 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22983 |0 |0 |
+ROW |543 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |23063 |0 |0 |
+ROW |544 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |22863 |0 |0 |
+ROW |545 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |2 |NULL |23023 |0 |0 |
+ROW |638 |Class Loader |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |639 |File Descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |640 |Garbage Collector collections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |641 |Memory Pool CMS Old Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |642 |Memory Pool CMS Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |643 |Memory Pool Code Cache |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |644 |Memory Pool Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |645 |Memory Pool PS Old Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |646 |Memory Pool PS Perm Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |647 |Memory Pool Tenured Gen |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |648 |Threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |651 |Fan speed and ambient temperature |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |652 |Voltage |900 |200 |0 |5.5 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |653 |Fan speed and temperature |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |654 |Voltage |900 |200 |0 |5.5 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |668 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |671 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |675 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |687 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |691 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |694 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |698 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |701 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |704 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |708 |{#MODULE_NAME}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |714 |{#ENT_NAME}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |724 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |727 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |730 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |733 |#{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |736 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |738 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |741 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |744 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |745 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |766 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |775 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |786 |{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |788 |Zabbix internal queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |793 |http-8080 worker threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |794 |http-8443 worker threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |795 |jk-8009 worker threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |796 |sessions / |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |797 |Value cache effectiveness |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |798 |Zabbix cache usage, % free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |799 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |800 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |801 |Zabbix internal queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |802 |Zabbix server performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |803 |Zabbix cache usage, % free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |804 |Zabbix data gathering process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |805 |Zabbix internal process busy % |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |806 |Zabbix proxy performance |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |807 |Zabbix internal queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |814 |DB {#DBNAME}: Block hit/read |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |815 |DB {#DBNAME}: Database size |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |816 |DB {#DBNAME}: Events |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |817 |DB {#DBNAME}: Locks |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |818 |DB {#DBNAME}: Queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |819 |DB {#DBNAME}: Slow queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |820 |DB {#DBNAME}: Temp files |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |821 |DB {#DBNAME}: Tuples |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |2 |0 |
+ROW |822 |PostgreSQL bgwriter |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |823 |PostgreSQL checkpoints |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |824 |PostgreSQL connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |825 |PostgreSQL ping |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |826 |PostgreSQL replication lag |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |827 |PostgreSQL transactions |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |828 |PostgreSQL uptime |900 |200 |0 |100 |NULL |1 |0 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |829 |PostgreSQL WAL |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |830 |Apache: Current async connections{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |831 |Apache: Current async processes{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |832 |Apache: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |833 |Apache: Workers total |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |834 |Apache: Worker states |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |835 |Apache: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |836 |Apache: Current async connections{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |837 |Apache: Current async processes{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |838 |Apache: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |839 |Apache: Workers total |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |840 |Apache: Worker states |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |841 |Nginx: Connections by state |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |842 |Nginx: Connections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |843 |Nginx: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |844 |Nginx: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |845 |Nginx: Connections by state |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |846 |Nginx: Connections per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |847 |Nginx: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |856 |{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |859 |MySQL bandwidth |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |860 |MySQL connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |861 |MySQL InnoDB buffer pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |862 |MySQL operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |863 |MySQL queries |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |864 |MySQL threads |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |866 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |868 |CPU usage{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |870 |CPU utilization{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |872 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |874 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |876 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |878 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |880 |System load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |882 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |887 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |890 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |893 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |896 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |899 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |902 |System load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |905 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |908 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |911 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |914 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |917 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |920 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |923 |Processes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |926 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |928 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |930 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |932 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |934 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |936 |System load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |938 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |940 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |942 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |944 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |946 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |948 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |950 |Processes |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |952 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |953 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |954 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |955 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |956 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |957 |System load |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |958 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |959 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |960 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |961 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |962 |Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |963 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |964 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |966 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |968 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |970 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |972 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |974 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |976 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |978 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |980 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |982 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |984 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |986 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |988 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |990 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |992 |CPU jumps |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |994 |CPU usage |900 |200 |0 |100 |NULL |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |996 |Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |998 |Swap usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1036 |Memory utilization |900 |200 |0 |100 |1035 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1037 |Memory utilization |900 |200 |0 |100 |1035 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1039 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |1038 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1040 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |1038 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1041 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |1038 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1061 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1060 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1062 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1063 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1064 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1066 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1065 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1067 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1068 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1069 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1071 |CPU utilization |900 |200 |0 |100 |1070 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1072 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1073 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1074 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1104 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1103 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1106 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1105 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1108 |CPU utilization |900 |200 |0 |100 |1107 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |517 |Zabbix internal process busy % |900 |200 |0 |100 |406 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |518 |Zabbix data gathering process busy % |900 |200 |0 |100 |404 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |519 |Zabbix server performance |900 |200 |0 |100 |392 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |520 |Zabbix cache usage, % used |900 |200 |0 |100 |410 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |528 |Value cache effectiveness |900 |200 |0 |100 |527 |1 |1 |1 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |676 |CPU utilization |900 |200 |0 |100 |675 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |677 |CPU utilization |900 |200 |0 |100 |675 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |688 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |687 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |692 |CPU utilization |900 |200 |0 |100 |691 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |739 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |738 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |740 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |738 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |742 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |741 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |743 |Interface {#IFDESCR}: Network traffic |900 |200 |0 |100 |741 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |746 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |747 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |748 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |749 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |750 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |752 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |753 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |754 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |755 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |756 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |758 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |759 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |760 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |762 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |763 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |764 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |773 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |778 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |785 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |787 |{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |786 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |789 |Zabbix internal queues |900 |200 |0 |100 |788 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |790 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |865 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |867 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |866 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |869 |CPU usage{#SINGLETON} |900 |200 |0 |100 |868 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |871 |CPU utilization{#SINGLETON} |900 |200 |0 |100 |870 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |873 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |872 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |875 |Memory utilization |900 |200 |0 |100 |874 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |877 |Memory usage |900 |200 |0 |100 |876 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |879 |Swap usage |900 |200 |0 |100 |878 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |881 |System load |900 |200 |0 |100 |880 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |883 |CPU jumps |900 |200 |0 |100 |882 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |886 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |766 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |888 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |887 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |889 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |888 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |891 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |890 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |892 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |891 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |894 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |893 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |895 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |894 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |897 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |896 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |898 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |897 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |900 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |899 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |901 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |900 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |903 |System load |900 |200 |0 |100 |902 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |904 |System load |900 |200 |0 |100 |903 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |906 |CPU utilization |900 |200 |0 |100 |905 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |907 |CPU utilization |900 |200 |0 |100 |906 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |909 |CPU usage |900 |200 |0 |100 |908 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |910 |CPU usage |900 |200 |0 |100 |909 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |912 |CPU jumps |900 |200 |0 |100 |911 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |913 |CPU jumps |900 |200 |0 |100 |912 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |915 |Memory utilization |900 |200 |0 |100 |914 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |916 |Memory utilization |900 |200 |0 |100 |915 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |918 |Memory usage |900 |200 |0 |100 |917 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |919 |Memory usage |900 |200 |0 |100 |918 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |921 |Swap usage |900 |200 |0 |100 |920 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |922 |Swap usage |900 |200 |0 |100 |921 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |924 |Processes |900 |200 |0 |100 |923 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |925 |Processes |900 |200 |0 |100 |924 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |927 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |926 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |929 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |928 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |931 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |930 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |933 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |932 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |935 |Interface {#IFNAME}: Network traffic |900 |200 |0 |100 |934 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |937 |System load |900 |200 |0 |100 |936 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |939 |CPU utilization |900 |200 |0 |100 |938 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |941 |CPU usage |900 |200 |0 |100 |940 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |943 |CPU jumps |900 |200 |0 |100 |942 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |945 |Memory utilization |900 |200 |0 |100 |944 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |947 |Memory usage |900 |200 |0 |100 |946 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |949 |Swap usage |900 |200 |0 |100 |948 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |951 |Processes |900 |200 |0 |100 |950 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |965 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |964 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |967 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |966 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |969 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |968 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |971 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |970 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |973 |CPU utilization |900 |200 |0 |100 |972 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |975 |CPU jumps |900 |200 |0 |100 |974 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |977 |CPU usage |900 |200 |0 |100 |976 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |979 |Memory utilization |900 |200 |0 |100 |978 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |981 |Swap usage |900 |200 |0 |100 |980 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |983 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |982 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |985 |{#DEVNAME}: Disk read/write rates |900 |200 |0 |100 |984 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |987 |{#DEVNAME}: Disk utilization and queue |900 |200 |0 |100 |986 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |989 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |988 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |991 |CPU utilization |900 |200 |0 |100 |990 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |993 |CPU jumps |900 |200 |0 |100 |992 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |995 |CPU usage |900 |200 |0 |100 |994 |1 |1 |1 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |997 |Memory utilization |900 |200 |0 |100 |996 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |999 |Swap usage |900 |200 |0 |100 |998 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
TABLE |graphs_items
FIELDS|gitemid|graphid|itemid|drawtype|sortorder|color |yaxisside|calc_fnc|type|
@@ -9825,1401 +9825,1401 @@ 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 |24678 |830 |28769 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24679 |830 |28770 |0 |1 |2774A4|0 |2 |0 |
-ROW |24680 |830 |28771 |0 |2 |F63100|0 |2 |0 |
-ROW |24681 |830 |28772 |2 |3 |A54F10|0 |2 |0 |
-ROW |24682 |831 |28774 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24683 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24684 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |24685 |832 |28761 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24686 |834 |28762 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24687 |834 |28760 |0 |1 |2774A4|0 |2 |0 |
-ROW |24688 |834 |28757 |0 |2 |F63100|0 |2 |0 |
-ROW |24689 |834 |28750 |0 |3 |A54F10|0 |2 |0 |
-ROW |24690 |834 |28756 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24691 |834 |28754 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24692 |834 |28763 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24693 |834 |28767 |0 |7 |611F27|0 |2 |0 |
-ROW |24694 |834 |28759 |0 |8 |F230E0|0 |2 |0 |
-ROW |24695 |834 |28755 |0 |9 |FFAD40|0 |2 |0 |
-ROW |24696 |834 |28753 |0 |10 |40CDFF|0 |2 |0 |
-ROW |24697 |833 |28765 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24698 |833 |28764 |0 |1 |2774A4|0 |2 |0 |
-ROW |24699 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24700 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |24701 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |24702 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |24703 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24704 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24705 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24706 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |24707 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |24708 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |24709 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24710 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24711 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24712 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |24713 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |24714 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |24715 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |24716 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24717 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |24718 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24719 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |24720 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |24721 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24722 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |24723 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24724 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |24725 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |24726 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |24727 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |24728 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |24729 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24730 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |24731 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24732 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |24733 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |24734 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |24735 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24736 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24737 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |24738 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24739 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24740 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |24741 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |24742 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |24743 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24744 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |24745 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |24746 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |24747 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24748 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |24749 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24750 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |24751 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |24752 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |24753 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24754 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |24755 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |24756 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |24757 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24758 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |24759 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |24760 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |24761 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24762 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |24763 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |24764 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |24765 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24766 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24767 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24768 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24769 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
-ROW |24770 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24771 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
-ROW |24772 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24773 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
-ROW |24774 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24775 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
-ROW |24776 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24777 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
-ROW |24778 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24779 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |24780 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24781 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |24782 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24783 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |24784 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24785 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |24786 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24787 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |24788 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |24789 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |24790 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24791 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24792 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |24793 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24794 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
-ROW |24795 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24796 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
-ROW |24797 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24798 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
-ROW |24799 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24800 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
-ROW |24801 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24802 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
-ROW |24803 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24804 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |24805 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24806 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |24807 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24808 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |24809 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24810 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |24811 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24812 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |24813 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |24814 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |24815 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24816 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24817 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |24818 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24819 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |24820 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |24821 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24822 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |24823 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |24824 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24825 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |24826 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |24827 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24828 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |24829 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24830 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |24831 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24832 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24833 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |24834 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |24835 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |24836 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24837 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |24838 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |24839 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24840 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |24841 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24842 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24843 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |24844 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |24845 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |24846 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24847 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |24848 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |24849 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24850 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24851 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
-ROW |24852 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
-ROW |24853 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
-ROW |24854 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24855 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24856 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24857 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
-ROW |24858 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24859 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
-ROW |24860 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
-ROW |24861 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
-ROW |24862 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24863 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24864 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24865 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
-ROW |24866 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24867 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
-ROW |24868 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
-ROW |24869 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24870 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
-ROW |24871 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24872 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24873 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
-ROW |24874 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24875 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
-ROW |24876 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24877 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
-ROW |24878 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
-ROW |24879 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24880 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
-ROW |24881 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
-ROW |24882 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
-ROW |24883 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24884 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24885 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24886 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
-ROW |24887 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24888 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
-ROW |24889 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
-ROW |24890 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
-ROW |24891 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24892 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24893 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24894 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
-ROW |24895 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24896 |1011 |29662 |2 |1 |2774A4|0 |2 |0 |
-ROW |24897 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24898 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24899 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
-ROW |24900 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24901 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24902 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
-ROW |24903 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
-ROW |24904 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
-ROW |24905 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24906 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24907 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24908 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
-ROW |24909 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24910 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
-ROW |24911 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
-ROW |24912 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
-ROW |24913 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24914 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24915 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24916 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
-ROW |24917 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24918 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
-ROW |24919 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
-ROW |24920 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24921 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
-ROW |24922 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24923 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24924 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
-ROW |24925 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24926 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
-ROW |24927 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
-ROW |24928 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24929 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
-ROW |24930 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
-ROW |24931 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
-ROW |24932 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24933 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24934 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24935 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
-ROW |24936 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24937 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
-ROW |24938 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
-ROW |24939 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
-ROW |24940 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |24941 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
-ROW |24942 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
-ROW |24943 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
-ROW |24944 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
-ROW |24945 |1025 |29744 |2 |1 |2774A4|0 |2 |0 |
-ROW |24946 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24947 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
-ROW |24948 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
-ROW |24949 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |24950 |793 |28532 |0 |0 |C80000|0 |2 |0 |
-ROW |24951 |793 |28503 |0 |1 |00C800|0 |2 |0 |
-ROW |24952 |793 |28504 |0 |2 |0000C8|0 |2 |0 |
-ROW |24953 |794 |28505 |0 |0 |C80000|0 |2 |0 |
-ROW |24954 |794 |28506 |0 |1 |00C800|0 |2 |0 |
-ROW |24955 |794 |28507 |0 |2 |0000C8|0 |2 |0 |
-ROW |24956 |795 |28508 |0 |0 |C80000|0 |2 |0 |
-ROW |24957 |795 |28509 |0 |1 |00C800|0 |2 |0 |
-ROW |24958 |795 |28510 |0 |2 |0000C8|0 |2 |0 |
-ROW |24959 |796 |28515 |0 |0 |C80000|0 |2 |0 |
-ROW |24960 |796 |28518 |0 |1 |00C800|0 |2 |0 |
-ROW |24961 |796 |28516 |0 |2 |0000C8|0 |2 |0 |
-ROW |24962 |638 |26892 |0 |0 |C80000|0 |2 |0 |
-ROW |24963 |638 |26891 |0 |1 |00C800|0 |2 |0 |
-ROW |24964 |638 |26910 |0 |2 |0000C8|0 |2 |0 |
-ROW |24965 |639 |26879 |0 |0 |C80000|0 |2 |0 |
-ROW |24966 |639 |26880 |0 |1 |00C800|0 |2 |0 |
-ROW |24967 |640 |26906 |0 |0 |C80000|0 |2 |0 |
-ROW |24968 |640 |26895 |0 |1 |00C800|0 |2 |0 |
-ROW |24969 |640 |26889 |0 |2 |0000C8|0 |2 |0 |
-ROW |24970 |640 |26884 |0 |3 |C8C800|0 |2 |0 |
-ROW |24971 |640 |26896 |0 |4 |00C8C9|0 |2 |0 |
-ROW |24972 |640 |26887 |0 |5 |C800C8|0 |2 |0 |
-ROW |24973 |641 |26900 |0 |0 |C80000|0 |2 |0 |
-ROW |24974 |641 |26901 |0 |1 |00C800|0 |2 |0 |
-ROW |24975 |641 |26902 |0 |2 |0000C8|0 |2 |0 |
-ROW |24976 |642 |26883 |0 |0 |C80000|0 |2 |0 |
-ROW |24977 |642 |26882 |0 |1 |00C800|0 |2 |0 |
-ROW |24978 |642 |26864 |0 |2 |0000C8|0 |2 |0 |
-ROW |24979 |643 |26863 |0 |0 |C80000|0 |2 |0 |
-ROW |24980 |643 |26865 |0 |1 |00C800|0 |2 |0 |
-ROW |24981 |643 |26866 |0 |2 |0000C8|0 |2 |0 |
-ROW |24982 |644 |26867 |0 |0 |C80000|0 |2 |0 |
-ROW |24983 |644 |26862 |0 |1 |00C800|0 |2 |0 |
-ROW |24984 |644 |26861 |0 |2 |0000C8|0 |2 |0 |
-ROW |24985 |645 |26857 |0 |0 |C80000|0 |2 |0 |
-ROW |24986 |645 |26856 |0 |1 |00C800|0 |2 |0 |
-ROW |24987 |645 |26858 |0 |2 |0000C8|0 |2 |0 |
-ROW |24988 |646 |26859 |0 |0 |0000C8|0 |2 |0 |
-ROW |24989 |646 |26860 |0 |1 |C80000|0 |2 |0 |
-ROW |24990 |646 |26868 |0 |2 |00C800|0 |2 |0 |
-ROW |24991 |647 |26869 |0 |0 |C80000|0 |2 |0 |
-ROW |24992 |647 |26878 |0 |1 |00C800|0 |2 |0 |
-ROW |24993 |647 |26877 |0 |2 |0000C8|0 |2 |0 |
-ROW |24994 |648 |26872 |0 |0 |C80000|0 |2 |0 |
-ROW |24995 |648 |26870 |0 |1 |00C800|0 |2 |0 |
-ROW |24996 |648 |26873 |0 |2 |0000C8|0 |2 |0 |
-ROW |24997 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |24998 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |24999 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |25000 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |25001 |804 |28602 |0 |0 |990099|0 |2 |0 |
-ROW |25002 |804 |28606 |0 |1 |990000|0 |2 |0 |
-ROW |25003 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
-ROW |25004 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
-ROW |25005 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
-ROW |25006 |804 |28611 |0 |5 |003300|0 |2 |0 |
-ROW |25007 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
-ROW |25008 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
-ROW |25009 |804 |28604 |0 |8 |000099|0 |2 |0 |
-ROW |25010 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
-ROW |25011 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
-ROW |25012 |805 |28600 |0 |1 |990099|0 |2 |0 |
-ROW |25013 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
-ROW |25014 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
-ROW |25015 |805 |28614 |0 |4 |960000|0 |2 |0 |
-ROW |25016 |805 |28601 |0 |5 |009600|0 |2 |0 |
-ROW |25017 |805 |28603 |0 |6 |009999|0 |2 |0 |
-ROW |25018 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
-ROW |25019 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |25020 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |25021 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |25022 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |25023 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |25024 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |25025 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |25026 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |25027 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |25028 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |25029 |799 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |25030 |799 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |25031 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |25032 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |25033 |799 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |25034 |799 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |25035 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |25036 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |25037 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |25038 |799 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |25039 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |25040 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |25041 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |25042 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |25043 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |25044 |800 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |25045 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |25046 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |25047 |800 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |25048 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |25049 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |25050 |800 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |25051 |800 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |25052 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |25053 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |25054 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |25055 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |25056 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |25057 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |25058 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |25059 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |25060 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |25061 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |25062 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |25063 |530 |23345 |0 |0 |990099|0 |2 |0 |
-ROW |25064 |530 |23348 |0 |1 |990000|0 |2 |0 |
-ROW |25065 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
-ROW |25066 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
-ROW |25067 |530 |23356 |0 |4 |007700|0 |2 |0 |
-ROW |25068 |530 |23354 |0 |5 |003300|0 |2 |0 |
-ROW |25069 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
-ROW |25070 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
-ROW |25071 |530 |23344 |0 |8 |000099|0 |7 |0 |
-ROW |25072 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
-ROW |25073 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
-ROW |25074 |531 |23347 |0 |1 |990099|0 |2 |0 |
-ROW |25075 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
-ROW |25076 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
-ROW |25077 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
-ROW |25078 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
-ROW |25079 |531 |25369 |0 |6 |009999|0 |2 |0 |
-ROW |25080 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
-ROW |25081 |531 |28618 |0 |8 |990000|0 |2 |0 |
-ROW |25082 |531 |28619 |0 |9 |008800|0 |2 |0 |
-ROW |25083 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |25084 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |25085 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |25086 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |25087 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |25088 |528 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |25089 |528 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |25090 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |25091 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |25092 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |25093 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |25094 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |25095 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |25096 |520 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |25097 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |25098 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |25099 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |25100 |520 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |25101 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |25102 |404 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |25103 |404 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |25104 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |25105 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |25106 |404 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |25107 |404 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |25108 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |25109 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |25110 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |25111 |404 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |25112 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |25113 |518 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |25114 |518 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |25115 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |25116 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
-ROW |25117 |518 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |25118 |518 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |25119 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
-ROW |25120 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
-ROW |25121 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
-ROW |25122 |518 |23267 |0 |9 |000099|0 |2 |0 |
-ROW |25123 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
-ROW |25124 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |25125 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |25126 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |25127 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |25128 |406 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |25129 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |25130 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |25131 |406 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |25132 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |25133 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |25134 |406 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |25135 |406 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |25136 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |25137 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |25138 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |25139 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |25140 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
-ROW |25141 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
-ROW |25142 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
-ROW |25143 |517 |23253 |0 |4 |990099|0 |2 |0 |
-ROW |25144 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
-ROW |25145 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
-ROW |25146 |517 |23664 |0 |7 |009999|0 |2 |0 |
-ROW |25147 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
-ROW |25148 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
-ROW |25149 |517 |25667 |0 |10 |990000|0 |2 |0 |
-ROW |25150 |517 |25668 |0 |11 |008800|0 |2 |0 |
-ROW |25151 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
-ROW |25152 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
-ROW |25153 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
-ROW |25154 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |25155 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |25156 |789 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |25157 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |25158 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |25159 |392 |23251 |5 |1 |C80000|1 |2 |0 |
-ROW |25160 |519 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |25161 |519 |23272 |5 |1 |C80000|1 |2 |0 |
-ROW |25162 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |25163 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |25164 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |25165 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |25166 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |25167 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |25168 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |25169 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |25170 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |25171 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |25172 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |25173 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |25174 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |25175 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |25176 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |25177 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |25178 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |25179 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |25180 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |25181 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |25182 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |25183 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |25184 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |25185 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |25186 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |25187 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |25188 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |25189 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |25190 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |25191 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |25192 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |25193 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |25194 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |25195 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |25196 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |25197 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |25198 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |25199 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |25200 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |25201 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |25202 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |25203 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |25204 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |25205 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |25206 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |25207 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |25208 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |25209 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |25210 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |25211 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |25212 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |25213 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |25214 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |25215 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |25216 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |25217 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |25218 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |25219 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |25220 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |25221 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |25222 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |25223 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |25224 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |25225 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |25226 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |25227 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |25228 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |25229 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |25230 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |25231 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |25232 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |25233 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |25234 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |25235 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |25236 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |25237 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |25238 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |25239 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |25240 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |25241 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |25242 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |25243 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |25244 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |25245 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |25246 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |25247 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |25248 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |25249 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |25250 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |25251 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |25252 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |25253 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |25254 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |25255 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |25256 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |25257 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |25258 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |25259 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |25260 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |25261 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |25262 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |25263 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |25264 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |25265 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25266 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |25267 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25268 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |25269 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |25270 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |25271 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25272 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25273 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |25274 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25275 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |25276 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |25277 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |25278 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |25279 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25280 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |25281 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |25282 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25283 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |25284 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25285 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |25286 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25287 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |25288 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |25289 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |25290 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25291 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25292 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |25293 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |25294 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25295 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |25296 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |25297 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25298 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |25299 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25300 |1171 |30840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25301 |1171 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |25302 |1171 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |25303 |1171 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |25304 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25305 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |25306 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25307 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |25308 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |25309 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |25310 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25311 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |25312 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |25313 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |25314 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25315 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |25316 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |25317 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |25318 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25319 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |25320 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |25321 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25322 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |25323 |1114 |30448 |0 |2 |F63100|0 |2 |0 |
-ROW |25324 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |25325 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25326 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |25327 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25328 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |25329 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |25330 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |25331 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25332 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |25333 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |25334 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |25335 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25336 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |25337 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |25338 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |25339 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25340 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |25341 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |25342 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25343 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |25344 |1141 |30654 |0 |2 |F63100|0 |2 |0 |
-ROW |25345 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |25346 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25347 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |25348 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25349 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |25350 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |25351 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |25352 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25353 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |25354 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |25355 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |25356 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25357 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |25358 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |25359 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |25360 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25361 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |25362 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |25363 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25364 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |25365 |1120 |30498 |0 |2 |F63100|0 |2 |0 |
-ROW |25366 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |25367 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
-ROW |25368 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
-ROW |25369 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
-ROW |25370 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25371 |816 |28715 |0 |1 |F63100|0 |2 |0 |
-ROW |25372 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
-ROW |25373 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
-ROW |25374 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
-ROW |25375 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
-ROW |25376 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
-ROW |25377 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
-ROW |25378 |818 |28725 |5 |3 |81C784|0 |2 |0 |
-ROW |25379 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
-ROW |25380 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
-ROW |25381 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25382 |819 |28724 |0 |1 |F63100|0 |2 |0 |
-ROW |25383 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
-ROW |25384 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
-ROW |25385 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
-ROW |25386 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25387 |821 |28737 |0 |1 |F63100|0 |2 |0 |
-ROW |25388 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
-ROW |25389 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
-ROW |25390 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25391 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
-ROW |25392 |822 |28698 |0 |1 |F63100|1 |2 |0 |
-ROW |25393 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
-ROW |25394 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
-ROW |25395 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25396 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25397 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25398 |823 |28699 |0 |1 |F63100|0 |2 |0 |
-ROW |25399 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
-ROW |25400 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
-ROW |25401 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
-ROW |25402 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
-ROW |25403 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
-ROW |25404 |824 |28705 |0 |3 |F63100|1 |2 |0 |
-ROW |25405 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
-ROW |25406 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
-ROW |25407 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
-ROW |25408 |825 |28674 |5 |0 |A5D6A7|0 |2 |0 |
-ROW |25409 |825 |28673 |0 |1 |039BE5|1 |2 |0 |
-ROW |25410 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
-ROW |25411 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
-ROW |25412 |827 |28688 |0 |1 |F63100|1 |2 |0 |
-ROW |25413 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
-ROW |25414 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
-ROW |25415 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
-ROW |25416 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
-ROW |25417 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
-ROW |25418 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
-ROW |25419 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25420 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |25421 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25422 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |25423 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25424 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25425 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25426 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |25427 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25428 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25429 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |25430 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |25431 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |25432 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25433 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |25434 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25435 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |25436 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25437 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |25438 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |25439 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25440 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25441 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |25442 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25443 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |25444 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25445 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25446 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25447 |1103 |30413 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25448 |1104 |30419 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25449 |1105 |30415 |0 |0 |969696|0 |9 |2 |
-ROW |25450 |1105 |30416 |0 |1 |C80000|0 |9 |0 |
-ROW |25451 |1106 |30421 |0 |0 |969696|0 |9 |2 |
-ROW |25452 |1106 |30422 |0 |1 |C80000|0 |9 |0 |
-ROW |25453 |1107 |30405 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25454 |1108 |30406 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25455 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25456 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25457 |1062 |30171 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25458 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25459 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25460 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |25461 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |25462 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |25463 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |25464 |1067 |30173 |0 |0 |969696|0 |9 |2 |
-ROW |25465 |1067 |30174 |0 |1 |C80000|0 |9 |0 |
-ROW |25466 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |25467 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |25468 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |25469 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |25470 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25471 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25472 |1072 |30144 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25473 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25474 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25475 |738 |27074 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25476 |738 |27075 |2 |1 |2774A4|0 |2 |0 |
-ROW |25477 |738 |27073 |0 |2 |F63100|1 |2 |0 |
-ROW |25478 |738 |27076 |0 |3 |A54F10|1 |2 |0 |
-ROW |25479 |738 |27072 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25480 |738 |27069 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25481 |739 |27599 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25482 |739 |27602 |2 |1 |2774A4|0 |2 |0 |
-ROW |25483 |739 |27601 |0 |2 |F63100|1 |2 |0 |
-ROW |25484 |739 |27598 |0 |3 |A54F10|1 |2 |0 |
-ROW |25485 |739 |27600 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25486 |739 |27597 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25487 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25488 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |25489 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |25490 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |25491 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25492 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25493 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25494 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |25495 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |25496 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |25497 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25498 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25499 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25500 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |25501 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |25502 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |25503 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25504 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25505 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25506 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |25507 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |25508 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |25509 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25510 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25511 |744 |27094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25512 |744 |27095 |2 |1 |2774A4|0 |2 |0 |
-ROW |25513 |744 |27093 |0 |2 |F63100|1 |2 |0 |
-ROW |25514 |744 |27096 |0 |3 |A54F10|1 |2 |0 |
-ROW |25515 |744 |27092 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25516 |744 |27089 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25517 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25518 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |25519 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |25520 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |25521 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25522 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25523 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25524 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |25525 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |25526 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |25527 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25528 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25529 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25530 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |25531 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |25532 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |25533 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25534 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25535 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25536 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |25537 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |25538 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |25539 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25540 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25541 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25542 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |25543 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |25544 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |25545 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25546 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25547 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25548 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |25549 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |25550 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |25551 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25552 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25553 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25554 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |25555 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |25556 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |25557 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25558 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25559 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25560 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |25561 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |25562 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |25563 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25564 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25565 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25566 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |25567 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |25568 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |25569 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25570 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25571 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25572 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |25573 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |25574 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |25575 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25576 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25577 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25578 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |25579 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |25580 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |25581 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25582 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25583 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25584 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |25585 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |25586 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |25587 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25588 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25589 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25590 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |25591 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |25592 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |25593 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25594 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25595 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25596 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |25597 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |25598 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |25599 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25600 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25601 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25602 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |25603 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |25604 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |25605 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25606 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25607 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25608 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |25609 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |25610 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |25611 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25612 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25613 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25614 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |25615 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |25616 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |25617 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25618 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25619 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25620 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |25621 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |25622 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |25623 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25624 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25625 |778 |28178 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25626 |778 |28181 |2 |1 |2774A4|0 |2 |0 |
-ROW |25627 |778 |28180 |0 |2 |F63100|1 |2 |0 |
-ROW |25628 |778 |28177 |0 |3 |A54F10|1 |2 |0 |
-ROW |25629 |778 |28179 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25630 |778 |28176 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25631 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25632 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |25633 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |25634 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |25635 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25636 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25637 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25638 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |25639 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |25640 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |25641 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25642 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25643 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25644 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |25645 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |25646 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |25647 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25648 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25649 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25650 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |25651 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |25652 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |25653 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25654 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25655 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25656 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |25657 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |25658 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |25659 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25660 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25661 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25662 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25663 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |25664 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25665 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25666 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25667 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25668 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25669 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25670 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25671 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25672 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25673 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25674 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25675 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25676 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25677 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25678 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25679 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25680 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25681 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25682 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25683 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25684 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25685 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25686 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25687 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25688 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25689 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25690 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |25691 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25692 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25693 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25694 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25695 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25696 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |25697 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25698 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25699 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25700 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25701 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25702 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25703 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25704 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |25705 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |25706 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25707 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25708 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25709 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |25710 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25711 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25712 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25713 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25714 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25715 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25716 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25717 |893 |29214 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25718 |893 |29215 |5 |1 |2774A4|0 |2 |0 |
-ROW |25719 |894 |29228 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25720 |894 |29229 |5 |1 |2774A4|0 |2 |0 |
-ROW |25721 |895 |29242 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25722 |895 |29243 |5 |1 |2774A4|0 |2 |0 |
-ROW |25723 |890 |29252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25724 |890 |29253 |5 |1 |2774A4|0 |2 |0 |
-ROW |25725 |891 |29258 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25726 |891 |29259 |5 |1 |2774A4|0 |2 |0 |
-ROW |25727 |892 |29264 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25728 |892 |29265 |5 |1 |2774A4|0 |2 |0 |
-ROW |25729 |896 |29256 |0 |0 |1A7C11|1 |2 |0 |
-ROW |25730 |896 |29257 |5 |1 |2774A4|0 |2 |0 |
-ROW |25731 |897 |29262 |0 |0 |1A7C11|1 |2 |0 |
-ROW |25732 |897 |29263 |5 |1 |2774A4|0 |2 |0 |
-ROW |25733 |898 |29268 |0 |0 |1A7C11|1 |2 |0 |
-ROW |25734 |898 |29269 |5 |1 |2774A4|0 |2 |0 |
-ROW |25735 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |25736 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |25737 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |25738 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |25739 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |25740 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |25741 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25742 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |25743 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |25744 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |25745 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25746 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25747 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25748 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |25749 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |25750 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |25751 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25752 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25753 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25754 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |25755 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |25756 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |25757 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25758 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25759 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25760 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |25761 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25762 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |25763 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25764 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |25765 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25766 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |25767 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |25768 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |25769 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25770 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25771 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |25772 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |25773 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |25774 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25775 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |25776 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |25777 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |25778 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25779 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25780 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |25781 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |25782 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |25783 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25784 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |25785 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |25786 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |25787 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25788 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25789 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |25790 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |25791 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |25792 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25793 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25794 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25795 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25796 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |25797 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25798 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |25799 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25800 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |25801 |914 |29103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25802 |915 |29140 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25803 |916 |29177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25804 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25805 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |25806 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |25807 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25808 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |25809 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |25810 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25811 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |25812 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |25813 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25814 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |25815 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25816 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |25817 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25818 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |25819 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25820 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |25821 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |25822 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |25823 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25824 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |25825 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |25826 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |25827 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25828 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |25829 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |25830 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |25831 |930 |29359 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25832 |930 |29360 |5 |1 |2774A4|0 |2 |0 |
-ROW |25833 |931 |29373 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25834 |931 |29374 |5 |1 |2774A4|0 |2 |0 |
-ROW |25835 |928 |29383 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25836 |928 |29384 |5 |1 |2774A4|0 |2 |0 |
-ROW |25837 |929 |29389 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25838 |929 |29390 |5 |1 |2774A4|0 |2 |0 |
-ROW |25839 |932 |29387 |0 |0 |1A7C11|1 |2 |0 |
-ROW |25840 |932 |29388 |5 |1 |2774A4|0 |2 |0 |
-ROW |25841 |933 |29393 |0 |0 |1A7C11|1 |2 |0 |
-ROW |25842 |933 |29394 |5 |1 |2774A4|0 |2 |0 |
-ROW |25843 |926 |29356 |0 |0 |969696|0 |9 |2 |
-ROW |25844 |926 |29355 |0 |1 |C80000|0 |9 |0 |
-ROW |25845 |927 |29370 |0 |0 |969696|0 |9 |2 |
-ROW |25846 |927 |29369 |0 |1 |C80000|0 |9 |0 |
-ROW |25847 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25848 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
-ROW |25849 |934 |29363 |0 |2 |F63100|1 |2 |0 |
-ROW |25850 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
-ROW |25851 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25852 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25853 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25854 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
-ROW |25855 |935 |29377 |0 |2 |F63100|1 |2 |0 |
-ROW |25856 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
-ROW |25857 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25858 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25859 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25860 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
-ROW |25861 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25862 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
-ROW |25863 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25864 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
-ROW |25865 |940 |29281 |0 |2 |F63100|0 |2 |0 |
-ROW |25866 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
-ROW |25867 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25868 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25869 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
-ROW |25870 |940 |29277 |0 |7 |611F27|0 |2 |0 |
-ROW |25871 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
-ROW |25872 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25873 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
-ROW |25874 |941 |29318 |0 |2 |F63100|0 |2 |0 |
-ROW |25875 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
-ROW |25876 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25877 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25878 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
-ROW |25879 |941 |29314 |0 |7 |611F27|0 |2 |0 |
-ROW |25880 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
-ROW |25881 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25882 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25883 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25884 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
-ROW |25885 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25886 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
-ROW |25887 |944 |29289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25888 |945 |29326 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25889 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25890 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
-ROW |25891 |950 |29303 |0 |2 |F63100|0 |2 |0 |
-ROW |25892 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25893 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
-ROW |25894 |951 |29340 |0 |2 |F63100|0 |2 |0 |
-ROW |25895 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25896 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
-ROW |25897 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25898 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
-ROW |25899 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25900 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
-ROW |25901 |936 |29286 |0 |2 |F63100|0 |2 |0 |
-ROW |25902 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
-ROW |25903 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25904 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
-ROW |25905 |937 |29323 |0 |2 |F63100|0 |2 |0 |
-ROW |25906 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
-ROW |25907 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25908 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |25909 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |25910 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |25911 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |25912 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |25913 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25914 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |25915 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25916 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |25917 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |25918 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |25919 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |25920 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |25921 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25922 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |25923 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25924 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |25925 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |25926 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |25927 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25928 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25929 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |25930 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |25931 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |25932 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25933 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25934 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |25935 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25936 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25937 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |25938 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25939 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |25940 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |25941 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |25942 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25943 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |25944 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25945 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |25946 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25947 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |25948 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |25949 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |25950 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25951 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25952 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |25953 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |25954 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |25955 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25956 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |25957 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |25958 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |25959 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |25960 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |25961 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |25962 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |25963 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |25964 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25965 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25966 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |25967 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |25968 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |25969 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |25970 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25971 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |25972 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25973 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |25974 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25975 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |25976 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |25977 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |25978 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25979 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25980 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25981 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |25982 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25983 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |25984 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25985 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |25986 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |25987 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |25988 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |25989 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |25990 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |25991 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |25992 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |25993 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |25994 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |25995 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |25996 |970 |29515 |5 |0 |1A7C11|0 |2 |0 |
-ROW |25997 |970 |29516 |2 |1 |2774A4|0 |2 |0 |
-ROW |25998 |970 |29520 |0 |2 |F63100|1 |2 |0 |
-ROW |25999 |970 |29519 |0 |3 |A54F10|1 |2 |0 |
-ROW |26000 |970 |29518 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |26001 |970 |29517 |0 |5 |6C59DC|1 |2 |0 |
-ROW |26002 |971 |29524 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26003 |971 |29525 |2 |1 |2774A4|0 |2 |0 |
-ROW |26004 |971 |29529 |0 |2 |F63100|1 |2 |0 |
-ROW |26005 |971 |29528 |0 |3 |A54F10|1 |2 |0 |
-ROW |26006 |971 |29527 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |26007 |971 |29526 |0 |5 |6C59DC|1 |2 |0 |
-ROW |26008 |966 |29530 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26009 |966 |29531 |5 |1 |2774A4|0 |2 |0 |
-ROW |26010 |967 |29537 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26011 |967 |29538 |5 |1 |2774A4|0 |2 |0 |
-ROW |26012 |968 |29532 |0 |0 |1A7C11|1 |2 |0 |
-ROW |26013 |968 |29533 |5 |1 |2774A4|0 |2 |0 |
-ROW |26014 |969 |29539 |0 |0 |1A7C11|1 |2 |0 |
-ROW |26015 |969 |29540 |5 |1 |2774A4|0 |2 |0 |
-ROW |26016 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26017 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |26018 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26019 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |26020 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26021 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |26022 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26023 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |26024 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26025 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26026 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26027 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26028 |980 |29464 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26029 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |26030 |981 |29490 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26031 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |26032 |982 |29620 |0 |0 |969696|0 |9 |2 |
-ROW |26033 |982 |29619 |0 |1 |C80000|0 |9 |0 |
-ROW |26034 |983 |29629 |0 |0 |969696|0 |9 |2 |
-ROW |26035 |983 |29628 |0 |1 |C80000|0 |9 |0 |
-ROW |26036 |988 |29622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26037 |988 |29623 |2 |1 |2774A4|0 |2 |0 |
-ROW |26038 |988 |29627 |0 |2 |F63100|1 |2 |0 |
-ROW |26039 |988 |29626 |0 |3 |A54F10|1 |2 |0 |
-ROW |26040 |988 |29625 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |26041 |988 |29624 |0 |5 |6C59DC|1 |2 |0 |
-ROW |26042 |989 |29631 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26043 |989 |29632 |2 |1 |2774A4|0 |2 |0 |
-ROW |26044 |989 |29636 |0 |2 |F63100|1 |2 |0 |
-ROW |26045 |989 |29635 |0 |3 |A54F10|1 |2 |0 |
-ROW |26046 |989 |29634 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |26047 |989 |29633 |0 |5 |6C59DC|1 |2 |0 |
-ROW |26048 |984 |29637 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26049 |984 |29638 |5 |1 |2774A4|0 |2 |0 |
-ROW |26050 |985 |29644 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26051 |985 |29645 |5 |1 |2774A4|0 |2 |0 |
-ROW |26052 |986 |29639 |0 |0 |1A7C11|1 |2 |0 |
-ROW |26053 |986 |29640 |5 |1 |2774A4|0 |2 |0 |
-ROW |26054 |987 |29646 |0 |0 |1A7C11|1 |2 |0 |
-ROW |26055 |987 |29647 |5 |1 |2774A4|0 |2 |0 |
-ROW |26056 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26057 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
-ROW |26058 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26059 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
-ROW |26060 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26061 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
-ROW |26062 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26063 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
-ROW |26064 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26065 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26066 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26067 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
-ROW |26068 |998 |29571 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26069 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
-ROW |26070 |999 |29597 |0 |0 |1A7C11|0 |2 |0 |
-ROW |26071 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
-ROW |26072 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26073 |830 |28769 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26074 |830 |28770 |0 |1 |2774A4|0 |2 |0 |
+ROW |26075 |830 |28771 |0 |2 |F63100|0 |2 |0 |
+ROW |26076 |830 |28772 |2 |3 |A54F10|0 |2 |0 |
+ROW |26077 |831 |28774 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26078 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26079 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |26080 |832 |28761 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26081 |834 |28762 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26082 |834 |28760 |0 |1 |2774A4|0 |2 |0 |
+ROW |26083 |834 |28757 |0 |2 |F63100|0 |2 |0 |
+ROW |26084 |834 |28750 |0 |3 |A54F10|0 |2 |0 |
+ROW |26085 |834 |28756 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26086 |834 |28754 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26087 |834 |28763 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26088 |834 |28767 |0 |7 |611F27|0 |2 |0 |
+ROW |26089 |834 |28759 |0 |8 |F230E0|0 |2 |0 |
+ROW |26090 |834 |28755 |0 |9 |FFAD40|0 |2 |0 |
+ROW |26091 |834 |28753 |0 |10 |40CDFF|0 |2 |0 |
+ROW |26092 |833 |28765 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26093 |833 |28764 |0 |1 |2774A4|0 |2 |0 |
+ROW |26094 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26095 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |26096 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |26097 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |26098 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26099 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26100 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26101 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |26102 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |26103 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |26104 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26105 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26106 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26107 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |26108 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |26109 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |26110 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |26111 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26112 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |26113 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26114 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |26115 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |26116 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26117 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |26118 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26119 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |26120 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |26121 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |26122 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |26123 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |26124 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26125 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |26126 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26127 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |26128 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |26129 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |26130 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26131 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26132 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |26133 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26134 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26135 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |26136 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |26137 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |26138 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26139 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |26140 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |26141 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |26142 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26143 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |26144 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26145 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |26146 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |26147 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |26148 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26149 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |26150 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |26151 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |26152 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26153 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |26154 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |26155 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |26156 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26157 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |26158 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |26159 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |26160 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26161 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26162 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26163 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26164 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
+ROW |26165 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26166 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |26167 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26168 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
+ROW |26169 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26170 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
+ROW |26171 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26172 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
+ROW |26173 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26174 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |26175 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26176 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |26177 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26178 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |26179 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26180 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |26181 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |26182 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |26183 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26184 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26185 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
+ROW |26186 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26187 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |26188 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26189 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
+ROW |26190 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26191 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |26192 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26193 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
+ROW |26194 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26195 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
+ROW |26196 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26197 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
+ROW |26198 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26199 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |26200 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26201 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |26202 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26203 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |26204 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26205 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |26206 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |26207 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |26208 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26209 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26210 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
+ROW |26211 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26212 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |26213 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26214 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |26215 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |26216 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26217 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |26218 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |26219 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26220 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |26221 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |26222 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26223 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |26224 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26225 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |26226 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26227 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26228 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |26229 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |26230 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |26231 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26232 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |26233 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |26234 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26235 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |26236 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26237 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26238 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |26239 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |26240 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |26241 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26242 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |26243 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |26244 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26245 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26246 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
+ROW |26247 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
+ROW |26248 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
+ROW |26249 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26250 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26251 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26252 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
+ROW |26253 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26254 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
+ROW |26255 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
+ROW |26256 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
+ROW |26257 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26258 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26259 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26260 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
+ROW |26261 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26262 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
+ROW |26263 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
+ROW |26264 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26265 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
+ROW |26266 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26267 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26268 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
+ROW |26269 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26270 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
+ROW |26271 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26272 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
+ROW |26273 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
+ROW |26274 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26275 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
+ROW |26276 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
+ROW |26277 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
+ROW |26278 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26279 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26280 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26281 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
+ROW |26282 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26283 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
+ROW |26284 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
+ROW |26285 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
+ROW |26286 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26287 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26288 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26289 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
+ROW |26290 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26291 |1011 |29662 |2 |1 |2774A4|0 |2 |0 |
+ROW |26292 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26293 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26294 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
+ROW |26295 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26296 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26297 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
+ROW |26298 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
+ROW |26299 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
+ROW |26300 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26301 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26302 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26303 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
+ROW |26304 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26305 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
+ROW |26306 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
+ROW |26307 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
+ROW |26308 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26309 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26310 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26311 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
+ROW |26312 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26313 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
+ROW |26314 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
+ROW |26315 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26316 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
+ROW |26317 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26318 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26319 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
+ROW |26320 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26321 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
+ROW |26322 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
+ROW |26323 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26324 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
+ROW |26325 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
+ROW |26326 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
+ROW |26327 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26328 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26329 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26330 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
+ROW |26331 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26332 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
+ROW |26333 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
+ROW |26334 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
+ROW |26335 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26336 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26337 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
+ROW |26338 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
+ROW |26339 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26340 |1025 |29744 |2 |1 |2774A4|0 |2 |0 |
+ROW |26341 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26342 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26343 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
+ROW |26344 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26345 |793 |28532 |0 |0 |C80000|0 |2 |0 |
+ROW |26346 |793 |28503 |0 |1 |00C800|0 |2 |0 |
+ROW |26347 |793 |28504 |0 |2 |0000C8|0 |2 |0 |
+ROW |26348 |794 |28505 |0 |0 |C80000|0 |2 |0 |
+ROW |26349 |794 |28506 |0 |1 |00C800|0 |2 |0 |
+ROW |26350 |794 |28507 |0 |2 |0000C8|0 |2 |0 |
+ROW |26351 |795 |28508 |0 |0 |C80000|0 |2 |0 |
+ROW |26352 |795 |28509 |0 |1 |00C800|0 |2 |0 |
+ROW |26353 |795 |28510 |0 |2 |0000C8|0 |2 |0 |
+ROW |26354 |796 |28515 |0 |0 |C80000|0 |2 |0 |
+ROW |26355 |796 |28518 |0 |1 |00C800|0 |2 |0 |
+ROW |26356 |796 |28516 |0 |2 |0000C8|0 |2 |0 |
+ROW |26357 |638 |26892 |0 |0 |C80000|0 |2 |0 |
+ROW |26358 |638 |26891 |0 |1 |00C800|0 |2 |0 |
+ROW |26359 |638 |26910 |0 |2 |0000C8|0 |2 |0 |
+ROW |26360 |639 |26879 |0 |0 |C80000|0 |2 |0 |
+ROW |26361 |639 |26880 |0 |1 |00C800|0 |2 |0 |
+ROW |26362 |640 |26906 |0 |0 |C80000|0 |2 |0 |
+ROW |26363 |640 |26895 |0 |1 |00C800|0 |2 |0 |
+ROW |26364 |640 |26889 |0 |2 |0000C8|0 |2 |0 |
+ROW |26365 |640 |26884 |0 |3 |C8C800|0 |2 |0 |
+ROW |26366 |640 |26896 |0 |4 |00C8C9|0 |2 |0 |
+ROW |26367 |640 |26887 |0 |5 |C800C8|0 |2 |0 |
+ROW |26368 |641 |26900 |0 |0 |C80000|0 |2 |0 |
+ROW |26369 |641 |26901 |0 |1 |00C800|0 |2 |0 |
+ROW |26370 |641 |26902 |0 |2 |0000C8|0 |2 |0 |
+ROW |26371 |642 |26883 |0 |0 |C80000|0 |2 |0 |
+ROW |26372 |642 |26882 |0 |1 |00C800|0 |2 |0 |
+ROW |26373 |642 |26864 |0 |2 |0000C8|0 |2 |0 |
+ROW |26374 |643 |26863 |0 |0 |C80000|0 |2 |0 |
+ROW |26375 |643 |26865 |0 |1 |00C800|0 |2 |0 |
+ROW |26376 |643 |26866 |0 |2 |0000C8|0 |2 |0 |
+ROW |26377 |644 |26867 |0 |0 |C80000|0 |2 |0 |
+ROW |26378 |644 |26862 |0 |1 |00C800|0 |2 |0 |
+ROW |26379 |644 |26861 |0 |2 |0000C8|0 |2 |0 |
+ROW |26380 |645 |26857 |0 |0 |C80000|0 |2 |0 |
+ROW |26381 |645 |26856 |0 |1 |00C800|0 |2 |0 |
+ROW |26382 |645 |26858 |0 |2 |0000C8|0 |2 |0 |
+ROW |26383 |646 |26859 |0 |0 |0000C8|0 |2 |0 |
+ROW |26384 |646 |26860 |0 |1 |C80000|0 |2 |0 |
+ROW |26385 |646 |26868 |0 |2 |00C800|0 |2 |0 |
+ROW |26386 |647 |26869 |0 |0 |C80000|0 |2 |0 |
+ROW |26387 |647 |26878 |0 |1 |00C800|0 |2 |0 |
+ROW |26388 |647 |26877 |0 |2 |0000C8|0 |2 |0 |
+ROW |26389 |648 |26872 |0 |0 |C80000|0 |2 |0 |
+ROW |26390 |648 |26870 |0 |1 |00C800|0 |2 |0 |
+ROW |26391 |648 |26873 |0 |2 |0000C8|0 |2 |0 |
+ROW |26392 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |26393 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |26394 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |26395 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |26396 |804 |28602 |0 |0 |990099|0 |2 |0 |
+ROW |26397 |804 |28606 |0 |1 |990000|0 |2 |0 |
+ROW |26398 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
+ROW |26399 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
+ROW |26400 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
+ROW |26401 |804 |28611 |0 |5 |003300|0 |2 |0 |
+ROW |26402 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
+ROW |26403 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
+ROW |26404 |804 |28604 |0 |8 |000099|0 |2 |0 |
+ROW |26405 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
+ROW |26406 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
+ROW |26407 |805 |28600 |0 |1 |990099|0 |2 |0 |
+ROW |26408 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
+ROW |26409 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
+ROW |26410 |805 |28614 |0 |4 |960000|0 |2 |0 |
+ROW |26411 |805 |28601 |0 |5 |009600|0 |2 |0 |
+ROW |26412 |805 |28603 |0 |6 |009999|0 |2 |0 |
+ROW |26413 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
+ROW |26414 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |26415 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |26416 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |26417 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |26418 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |26419 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |26420 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |26421 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |26422 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |26423 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |26424 |799 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |26425 |799 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |26426 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |26427 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |26428 |799 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |26429 |799 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |26430 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |26431 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |26432 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |26433 |799 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |26434 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |26435 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |26436 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |26437 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |26438 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |26439 |800 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |26440 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |26441 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |26442 |800 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |26443 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |26444 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |26445 |800 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |26446 |800 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |26447 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |26448 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |26449 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |26450 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |26451 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |26452 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |26453 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |26454 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |26455 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |26456 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |26457 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |26458 |530 |23345 |0 |0 |990099|0 |2 |0 |
+ROW |26459 |530 |23348 |0 |1 |990000|0 |2 |0 |
+ROW |26460 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
+ROW |26461 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
+ROW |26462 |530 |23356 |0 |4 |007700|0 |2 |0 |
+ROW |26463 |530 |23354 |0 |5 |003300|0 |2 |0 |
+ROW |26464 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
+ROW |26465 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
+ROW |26466 |530 |23344 |0 |8 |000099|0 |7 |0 |
+ROW |26467 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
+ROW |26468 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
+ROW |26469 |531 |23347 |0 |1 |990099|0 |2 |0 |
+ROW |26470 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
+ROW |26471 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
+ROW |26472 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
+ROW |26473 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
+ROW |26474 |531 |25369 |0 |6 |009999|0 |2 |0 |
+ROW |26475 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
+ROW |26476 |531 |28618 |0 |8 |990000|0 |2 |0 |
+ROW |26477 |531 |28619 |0 |9 |008800|0 |2 |0 |
+ROW |26478 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |26479 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |26480 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |26481 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |26482 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |26483 |528 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |26484 |528 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |26485 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |26486 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |26487 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |26488 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |26489 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |26490 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |26491 |520 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |26492 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |26493 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |26494 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |26495 |520 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |26496 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |26497 |404 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |26498 |404 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |26499 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |26500 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |26501 |404 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |26502 |404 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |26503 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |26504 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |26505 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |26506 |404 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |26507 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |26508 |518 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |26509 |518 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |26510 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |26511 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
+ROW |26512 |518 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |26513 |518 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |26514 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
+ROW |26515 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
+ROW |26516 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
+ROW |26517 |518 |23267 |0 |9 |000099|0 |2 |0 |
+ROW |26518 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
+ROW |26519 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |26520 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |26521 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |26522 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |26523 |406 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |26524 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |26525 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |26526 |406 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |26527 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |26528 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |26529 |406 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |26530 |406 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |26531 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |26532 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |26533 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |26534 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |26535 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
+ROW |26536 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
+ROW |26537 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
+ROW |26538 |517 |23253 |0 |4 |990099|0 |2 |0 |
+ROW |26539 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
+ROW |26540 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
+ROW |26541 |517 |23664 |0 |7 |009999|0 |2 |0 |
+ROW |26542 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
+ROW |26543 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
+ROW |26544 |517 |25667 |0 |10 |990000|0 |2 |0 |
+ROW |26545 |517 |25668 |0 |11 |008800|0 |2 |0 |
+ROW |26546 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
+ROW |26547 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
+ROW |26548 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
+ROW |26549 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |26550 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |26551 |789 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |26552 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |26553 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |26554 |392 |23251 |5 |1 |C80000|1 |2 |0 |
+ROW |26555 |519 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |26556 |519 |23272 |5 |1 |C80000|1 |2 |0 |
+ROW |26557 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |26558 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |26559 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |26560 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |26561 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |26562 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |26563 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |26564 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |26565 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |26566 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |26567 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |26568 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |26569 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |26570 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |26571 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |26572 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |26573 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |26574 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |26575 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |26576 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |26577 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |26578 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |26579 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |26580 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |26581 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |26582 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |26583 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |26584 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |26585 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |26586 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |26587 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |26588 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |26589 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |26590 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |26591 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |26592 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |26593 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |26594 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |26595 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |26596 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |26597 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |26598 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |26599 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |26600 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |26601 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |26602 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |26603 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |26604 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |26605 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |26606 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |26607 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |26608 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |26609 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |26610 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |26611 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |26612 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |26613 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |26614 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |26615 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |26616 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |26617 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |26618 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |26619 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |26620 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |26621 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |26622 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |26623 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |26624 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |26625 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |26626 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |26627 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |26628 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |26629 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |26630 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |26631 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |26632 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |26633 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |26634 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |26635 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |26636 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |26637 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |26638 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |26639 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |26640 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |26641 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |26642 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |26643 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |26644 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |26645 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |26646 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |26647 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |26648 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |26649 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |26650 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |26651 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |26652 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |26653 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |26654 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |26655 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |26656 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |26657 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |26658 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |26659 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |26660 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26661 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |26662 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26663 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |26664 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |26665 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |26666 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26667 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26668 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |26669 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26670 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |26671 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |26672 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |26673 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |26674 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26675 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |26676 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |26677 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26678 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |26679 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26680 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |26681 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26682 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |26683 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |26684 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |26685 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26686 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26687 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |26688 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |26689 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26690 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |26691 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |26692 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26693 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |26694 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26695 |1171 |30840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26696 |1171 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |26697 |1171 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |26698 |1171 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |26699 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26700 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |26701 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26702 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |26703 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |26704 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |26705 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26706 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |26707 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |26708 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |26709 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26710 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |26711 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |26712 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |26713 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26714 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |26715 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |26716 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26717 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |26718 |1114 |30448 |0 |2 |F63100|0 |2 |0 |
+ROW |26719 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |26720 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26721 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |26722 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26723 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |26724 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |26725 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |26726 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26727 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |26728 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |26729 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |26730 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26731 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |26732 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |26733 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |26734 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26735 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |26736 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |26737 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26738 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |26739 |1141 |30654 |0 |2 |F63100|0 |2 |0 |
+ROW |26740 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |26741 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26742 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |26743 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26744 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |26745 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |26746 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |26747 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26748 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |26749 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |26750 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |26751 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26752 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |26753 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |26754 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |26755 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26756 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |26757 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |26758 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26759 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |26760 |1120 |30498 |0 |2 |F63100|0 |2 |0 |
+ROW |26761 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |26762 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
+ROW |26763 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
+ROW |26764 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
+ROW |26765 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26766 |816 |28715 |0 |1 |F63100|0 |2 |0 |
+ROW |26767 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
+ROW |26768 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
+ROW |26769 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
+ROW |26770 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
+ROW |26771 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
+ROW |26772 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
+ROW |26773 |818 |28725 |5 |3 |81C784|0 |2 |0 |
+ROW |26774 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
+ROW |26775 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
+ROW |26776 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26777 |819 |28724 |0 |1 |F63100|0 |2 |0 |
+ROW |26778 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
+ROW |26779 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
+ROW |26780 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
+ROW |26781 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26782 |821 |28737 |0 |1 |F63100|0 |2 |0 |
+ROW |26783 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
+ROW |26784 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
+ROW |26785 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26786 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
+ROW |26787 |822 |28698 |0 |1 |F63100|1 |2 |0 |
+ROW |26788 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
+ROW |26789 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
+ROW |26790 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |26791 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
+ROW |26792 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26793 |823 |28699 |0 |1 |F63100|0 |2 |0 |
+ROW |26794 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
+ROW |26795 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
+ROW |26796 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
+ROW |26797 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
+ROW |26798 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
+ROW |26799 |824 |28705 |0 |3 |F63100|1 |2 |0 |
+ROW |26800 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
+ROW |26801 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
+ROW |26802 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
+ROW |26803 |825 |28674 |5 |0 |A5D6A7|0 |2 |0 |
+ROW |26804 |825 |28673 |0 |1 |039BE5|1 |2 |0 |
+ROW |26805 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
+ROW |26806 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
+ROW |26807 |827 |28688 |0 |1 |F63100|1 |2 |0 |
+ROW |26808 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
+ROW |26809 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
+ROW |26810 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
+ROW |26811 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
+ROW |26812 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
+ROW |26813 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
+ROW |26814 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26815 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |26816 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26817 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |26818 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26819 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26820 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26821 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |26822 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26823 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26824 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |26825 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |26826 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |26827 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26828 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |26829 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26830 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |26831 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26832 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |26833 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |26834 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26835 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26836 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |26837 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |26838 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |26839 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26840 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26841 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |26842 |1103 |30413 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26843 |1104 |30419 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26844 |1105 |30415 |0 |0 |969696|0 |9 |2 |
+ROW |26845 |1105 |30416 |0 |1 |C80000|0 |9 |0 |
+ROW |26846 |1106 |30421 |0 |0 |969696|0 |9 |2 |
+ROW |26847 |1106 |30422 |0 |1 |C80000|0 |9 |0 |
+ROW |26848 |1107 |30405 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26849 |1108 |30406 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26850 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26851 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26852 |1062 |30171 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26853 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26854 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26855 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |26856 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |26857 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |26858 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |26859 |1067 |30173 |0 |0 |969696|0 |9 |2 |
+ROW |26860 |1067 |30174 |0 |1 |C80000|0 |9 |0 |
+ROW |26861 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |26862 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |26863 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |26864 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |26865 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26866 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26867 |1072 |30144 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26868 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26869 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26870 |738 |27074 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26871 |738 |27075 |2 |1 |2774A4|0 |2 |0 |
+ROW |26872 |738 |27073 |0 |2 |F63100|1 |2 |0 |
+ROW |26873 |738 |27076 |0 |3 |A54F10|1 |2 |0 |
+ROW |26874 |738 |27072 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26875 |738 |27069 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26876 |739 |27599 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26877 |739 |27602 |2 |1 |2774A4|0 |2 |0 |
+ROW |26878 |739 |27601 |0 |2 |F63100|1 |2 |0 |
+ROW |26879 |739 |27598 |0 |3 |A54F10|1 |2 |0 |
+ROW |26880 |739 |27600 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26881 |739 |27597 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26882 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26883 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |26884 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |26885 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |26886 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26887 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26888 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26889 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |26890 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |26891 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |26892 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26893 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26894 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26895 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |26896 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |26897 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |26898 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26899 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26900 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26901 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |26902 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |26903 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |26904 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26905 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26906 |744 |27094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26907 |744 |27095 |2 |1 |2774A4|0 |2 |0 |
+ROW |26908 |744 |27093 |0 |2 |F63100|1 |2 |0 |
+ROW |26909 |744 |27096 |0 |3 |A54F10|1 |2 |0 |
+ROW |26910 |744 |27092 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26911 |744 |27089 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26912 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26913 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |26914 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |26915 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |26916 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26917 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26918 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26919 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |26920 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |26921 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |26922 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26923 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26924 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26925 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |26926 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |26927 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |26928 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26929 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26930 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26931 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |26932 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |26933 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |26934 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26935 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26936 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26937 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |26938 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |26939 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |26940 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26941 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26942 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26943 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |26944 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |26945 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |26946 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26947 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26948 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26949 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |26950 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |26951 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |26952 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26953 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26954 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26955 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |26956 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |26957 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |26958 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26959 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26960 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26961 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |26962 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |26963 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |26964 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26965 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26966 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26967 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |26968 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |26969 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |26970 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26971 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26972 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26973 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |26974 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |26975 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |26976 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26977 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26978 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26979 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |26980 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |26981 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |26982 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26983 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26984 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26985 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |26986 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |26987 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |26988 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26989 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26990 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26991 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |26992 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |26993 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |26994 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |26995 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |26996 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |26997 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |26998 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |26999 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |27000 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27001 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27002 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27003 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |27004 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |27005 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |27006 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27007 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27008 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27009 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |27010 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |27011 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |27012 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27013 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27014 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27015 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |27016 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |27017 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |27018 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27019 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27020 |778 |28178 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27021 |778 |28181 |2 |1 |2774A4|0 |2 |0 |
+ROW |27022 |778 |28180 |0 |2 |F63100|1 |2 |0 |
+ROW |27023 |778 |28177 |0 |3 |A54F10|1 |2 |0 |
+ROW |27024 |778 |28179 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27025 |778 |28176 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27026 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27027 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |27028 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |27029 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |27030 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27031 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27032 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27033 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |27034 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |27035 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |27036 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27037 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27038 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27039 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |27040 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |27041 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |27042 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27043 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27044 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27045 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |27046 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |27047 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |27048 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27049 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27050 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27051 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |27052 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |27053 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |27054 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27055 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27056 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27057 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27058 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |27059 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27060 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27061 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27062 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27063 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27064 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27065 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27066 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27067 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27068 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27069 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27070 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27071 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27072 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27073 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27074 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27075 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27076 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27077 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27078 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27079 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27080 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27081 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27082 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27083 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27084 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27085 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |27086 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27087 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27088 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27089 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27090 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27091 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |27092 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27093 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27094 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27095 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27096 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27097 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27098 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27099 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |27100 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |27101 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27102 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27103 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27104 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |27105 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27106 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27107 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27108 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27109 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27110 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27111 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27112 |893 |29214 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27113 |893 |29215 |5 |1 |2774A4|0 |2 |0 |
+ROW |27114 |894 |29228 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27115 |894 |29229 |5 |1 |2774A4|0 |2 |0 |
+ROW |27116 |895 |29242 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27117 |895 |29243 |5 |1 |2774A4|0 |2 |0 |
+ROW |27118 |890 |29252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27119 |890 |29253 |5 |1 |2774A4|0 |2 |0 |
+ROW |27120 |891 |29258 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27121 |891 |29259 |5 |1 |2774A4|0 |2 |0 |
+ROW |27122 |892 |29264 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27123 |892 |29265 |5 |1 |2774A4|0 |2 |0 |
+ROW |27124 |896 |29256 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27125 |896 |29257 |5 |1 |2774A4|0 |2 |0 |
+ROW |27126 |897 |29262 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27127 |897 |29263 |5 |1 |2774A4|0 |2 |0 |
+ROW |27128 |898 |29268 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27129 |898 |29269 |5 |1 |2774A4|0 |2 |0 |
+ROW |27130 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |27131 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |27132 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |27133 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |27134 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |27135 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |27136 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27137 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |27138 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |27139 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |27140 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27141 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27142 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27143 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |27144 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |27145 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |27146 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27147 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27148 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27149 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |27150 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |27151 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |27152 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27153 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27154 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27155 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |27156 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27157 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |27158 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27159 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |27160 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27161 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |27162 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |27163 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |27164 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |27165 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |27166 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |27167 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |27168 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |27169 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27170 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |27171 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |27172 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |27173 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |27174 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |27175 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |27176 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |27177 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |27178 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27179 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |27180 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |27181 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |27182 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |27183 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |27184 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |27185 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |27186 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |27187 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27188 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27189 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27190 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27191 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |27192 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27193 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |27194 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27195 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |27196 |914 |29103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27197 |915 |29140 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27198 |916 |29177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27199 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27200 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |27201 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |27202 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27203 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |27204 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |27205 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27206 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |27207 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |27208 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27209 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |27210 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27211 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |27212 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27213 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |27214 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27215 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |27216 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |27217 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |27218 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27219 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |27220 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |27221 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |27222 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27223 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |27224 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |27225 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |27226 |930 |29359 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27227 |930 |29360 |5 |1 |2774A4|0 |2 |0 |
+ROW |27228 |931 |29373 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27229 |931 |29374 |5 |1 |2774A4|0 |2 |0 |
+ROW |27230 |928 |29383 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27231 |928 |29384 |5 |1 |2774A4|0 |2 |0 |
+ROW |27232 |929 |29389 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27233 |929 |29390 |5 |1 |2774A4|0 |2 |0 |
+ROW |27234 |932 |29387 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27235 |932 |29388 |5 |1 |2774A4|0 |2 |0 |
+ROW |27236 |933 |29393 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27237 |933 |29394 |5 |1 |2774A4|0 |2 |0 |
+ROW |27238 |926 |29356 |0 |0 |969696|0 |9 |2 |
+ROW |27239 |926 |29355 |0 |1 |C80000|0 |9 |0 |
+ROW |27240 |927 |29370 |0 |0 |969696|0 |9 |2 |
+ROW |27241 |927 |29369 |0 |1 |C80000|0 |9 |0 |
+ROW |27242 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27243 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
+ROW |27244 |934 |29363 |0 |2 |F63100|1 |2 |0 |
+ROW |27245 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
+ROW |27246 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27247 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27248 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27249 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
+ROW |27250 |935 |29377 |0 |2 |F63100|1 |2 |0 |
+ROW |27251 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
+ROW |27252 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27253 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27254 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27255 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
+ROW |27256 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27257 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
+ROW |27258 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27259 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
+ROW |27260 |940 |29281 |0 |2 |F63100|0 |2 |0 |
+ROW |27261 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
+ROW |27262 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |27263 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
+ROW |27264 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
+ROW |27265 |940 |29277 |0 |7 |611F27|0 |2 |0 |
+ROW |27266 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
+ROW |27267 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27268 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
+ROW |27269 |941 |29318 |0 |2 |F63100|0 |2 |0 |
+ROW |27270 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
+ROW |27271 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |27272 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
+ROW |27273 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
+ROW |27274 |941 |29314 |0 |7 |611F27|0 |2 |0 |
+ROW |27275 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
+ROW |27276 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27277 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27278 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27279 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
+ROW |27280 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27281 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
+ROW |27282 |944 |29289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27283 |945 |29326 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27284 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27285 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
+ROW |27286 |950 |29303 |0 |2 |F63100|0 |2 |0 |
+ROW |27287 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27288 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
+ROW |27289 |951 |29340 |0 |2 |F63100|0 |2 |0 |
+ROW |27290 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27291 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
+ROW |27292 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27293 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
+ROW |27294 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27295 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
+ROW |27296 |936 |29286 |0 |2 |F63100|0 |2 |0 |
+ROW |27297 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
+ROW |27298 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27299 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
+ROW |27300 |937 |29323 |0 |2 |F63100|0 |2 |0 |
+ROW |27301 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
+ROW |27302 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27303 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |27304 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |27305 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |27306 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27307 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27308 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27309 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |27310 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27311 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |27312 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27313 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |27314 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |27315 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |27316 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27317 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |27318 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27319 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |27320 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |27321 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |27322 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |27323 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |27324 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |27325 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |27326 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |27327 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27328 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27329 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |27330 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27331 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27332 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |27333 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27334 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |27335 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |27336 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |27337 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27338 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |27339 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27340 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |27341 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27342 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |27343 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |27344 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |27345 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |27346 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |27347 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |27348 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |27349 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |27350 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27351 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |27352 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |27353 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |27354 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |27355 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |27356 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |27357 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |27358 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |27359 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27360 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27361 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |27362 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |27363 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |27364 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |27365 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27366 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |27367 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27368 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |27369 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27370 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |27371 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |27372 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |27373 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27374 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27375 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27376 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |27377 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27378 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |27379 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27380 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |27381 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |27382 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |27383 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27384 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |27385 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |27386 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |27387 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |27388 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |27389 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |27390 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |27391 |970 |29515 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27392 |970 |29516 |2 |1 |2774A4|0 |2 |0 |
+ROW |27393 |970 |29520 |0 |2 |F63100|1 |2 |0 |
+ROW |27394 |970 |29519 |0 |3 |A54F10|1 |2 |0 |
+ROW |27395 |970 |29518 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27396 |970 |29517 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27397 |971 |29524 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27398 |971 |29525 |2 |1 |2774A4|0 |2 |0 |
+ROW |27399 |971 |29529 |0 |2 |F63100|1 |2 |0 |
+ROW |27400 |971 |29528 |0 |3 |A54F10|1 |2 |0 |
+ROW |27401 |971 |29527 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27402 |971 |29526 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27403 |966 |29530 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27404 |966 |29531 |5 |1 |2774A4|0 |2 |0 |
+ROW |27405 |967 |29537 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27406 |967 |29538 |5 |1 |2774A4|0 |2 |0 |
+ROW |27407 |968 |29532 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27408 |968 |29533 |5 |1 |2774A4|0 |2 |0 |
+ROW |27409 |969 |29539 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27410 |969 |29540 |5 |1 |2774A4|0 |2 |0 |
+ROW |27411 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27412 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |27413 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27414 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |27415 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27416 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |27417 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27418 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |27419 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27420 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27421 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27422 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27423 |980 |29464 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27424 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |27425 |981 |29490 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27426 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |27427 |982 |29620 |0 |0 |969696|0 |9 |2 |
+ROW |27428 |982 |29619 |0 |1 |C80000|0 |9 |0 |
+ROW |27429 |983 |29629 |0 |0 |969696|0 |9 |2 |
+ROW |27430 |983 |29628 |0 |1 |C80000|0 |9 |0 |
+ROW |27431 |988 |29622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27432 |988 |29623 |2 |1 |2774A4|0 |2 |0 |
+ROW |27433 |988 |29627 |0 |2 |F63100|1 |2 |0 |
+ROW |27434 |988 |29626 |0 |3 |A54F10|1 |2 |0 |
+ROW |27435 |988 |29625 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27436 |988 |29624 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27437 |989 |29631 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27438 |989 |29632 |2 |1 |2774A4|0 |2 |0 |
+ROW |27439 |989 |29636 |0 |2 |F63100|1 |2 |0 |
+ROW |27440 |989 |29635 |0 |3 |A54F10|1 |2 |0 |
+ROW |27441 |989 |29634 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |27442 |989 |29633 |0 |5 |6C59DC|1 |2 |0 |
+ROW |27443 |984 |29637 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27444 |984 |29638 |5 |1 |2774A4|0 |2 |0 |
+ROW |27445 |985 |29644 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27446 |985 |29645 |5 |1 |2774A4|0 |2 |0 |
+ROW |27447 |986 |29639 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27448 |986 |29640 |5 |1 |2774A4|0 |2 |0 |
+ROW |27449 |987 |29646 |0 |0 |1A7C11|1 |2 |0 |
+ROW |27450 |987 |29647 |5 |1 |2774A4|0 |2 |0 |
+ROW |27451 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27452 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
+ROW |27453 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27454 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
+ROW |27455 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27456 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
+ROW |27457 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27458 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
+ROW |27459 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27460 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27461 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27462 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
+ROW |27463 |998 |29571 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27464 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
+ROW |27465 |999 |29597 |0 |0 |1A7C11|0 |2 |0 |
+ROW |27466 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
+ROW |27467 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -12316,2540 +12316,2540 @@ ROW |46636 |1124 |28951 |
ROW |46637 |740 |28952 |
ROW |46638 |740 |28953 |
ROW |46639 |740 |28954 |
-ROW |57574 |1117 |28742 |
-ROW |57575 |1116 |28743 |
-ROW |57576 |1116 |28744 |
-ROW |57577 |1116 |28745 |
-ROW |57578 |1116 |28746 |
-ROW |57579 |1116 |28747 |
-ROW |57580 |1116 |28748 |
-ROW |57581 |1116 |28749 |
-ROW |57582 |1116 |28750 |
-ROW |57583 |1116 |28751 |
-ROW |57584 |1116 |28752 |
-ROW |57585 |1116 |28753 |
-ROW |57586 |1116 |28754 |
-ROW |57587 |1116 |28755 |
-ROW |57588 |1116 |28756 |
-ROW |57589 |1116 |28757 |
-ROW |57590 |1116 |28758 |
-ROW |57591 |1116 |28759 |
-ROW |57592 |1116 |28760 |
-ROW |57593 |1116 |28761 |
-ROW |57594 |1116 |28762 |
-ROW |57595 |1116 |28763 |
-ROW |57596 |1116 |28764 |
-ROW |57597 |1116 |28765 |
-ROW |57598 |1116 |28766 |
-ROW |57599 |1116 |28767 |
-ROW |57600 |1116 |28769 |
-ROW |57601 |1116 |28770 |
-ROW |57602 |1116 |28771 |
-ROW |57603 |1116 |28772 |
-ROW |57604 |1116 |28773 |
-ROW |57605 |1116 |28774 |
-ROW |57606 |1119 |28775 |
-ROW |57607 |1118 |28776 |
-ROW |57608 |1118 |28777 |
-ROW |57609 |1118 |28778 |
-ROW |57610 |1118 |28779 |
-ROW |57611 |1118 |28780 |
-ROW |57612 |1118 |28781 |
-ROW |57613 |1118 |28782 |
-ROW |57614 |1118 |28783 |
-ROW |57615 |1118 |28784 |
-ROW |57616 |1118 |28785 |
-ROW |57617 |1118 |28786 |
-ROW |57618 |1118 |28787 |
-ROW |57619 |1118 |28788 |
-ROW |57620 |1118 |28789 |
-ROW |57621 |1118 |28790 |
-ROW |57622 |1118 |28791 |
-ROW |57623 |1118 |28792 |
-ROW |57624 |1118 |28793 |
-ROW |57625 |1118 |28794 |
-ROW |57626 |1118 |28795 |
-ROW |57627 |1118 |28796 |
-ROW |57628 |1118 |28798 |
-ROW |57629 |1118 |28799 |
-ROW |57630 |1118 |28800 |
-ROW |57631 |1118 |28801 |
-ROW |57632 |1118 |28802 |
-ROW |57633 |1118 |28803 |
-ROW |57634 |1319 |30527 |
-ROW |57635 |1319 |30528 |
-ROW |57636 |1319 |30529 |
-ROW |57637 |1318 |30530 |
-ROW |57638 |1319 |30531 |
-ROW |57639 |1318 |30532 |
-ROW |57640 |1318 |30533 |
-ROW |57641 |1318 |30534 |
-ROW |57642 |1318 |30535 |
-ROW |57643 |1318 |30536 |
-ROW |57644 |1318 |30537 |
-ROW |57645 |1318 |30538 |
-ROW |57646 |1318 |30539 |
-ROW |57647 |1318 |30540 |
-ROW |57648 |1318 |30541 |
-ROW |57649 |1318 |30542 |
-ROW |57650 |1318 |30543 |
-ROW |57651 |1318 |30544 |
-ROW |57652 |1318 |30545 |
-ROW |57653 |1318 |30546 |
-ROW |57654 |1318 |30547 |
-ROW |57655 |1318 |30548 |
-ROW |57656 |1318 |30549 |
-ROW |57657 |1318 |30550 |
-ROW |57658 |1318 |30551 |
-ROW |57659 |1318 |30552 |
-ROW |57660 |1318 |30553 |
-ROW |57661 |1318 |30554 |
-ROW |57662 |1318 |30555 |
-ROW |57663 |1318 |30556 |
-ROW |57664 |1318 |30557 |
-ROW |57665 |1318 |30558 |
-ROW |57666 |1318 |30559 |
-ROW |57667 |1318 |30560 |
-ROW |57668 |1318 |30561 |
-ROW |57669 |1318 |30562 |
-ROW |57670 |1318 |30563 |
-ROW |57671 |1318 |30564 |
-ROW |57672 |1318 |30565 |
-ROW |57673 |1318 |30566 |
-ROW |57674 |1318 |30567 |
-ROW |57675 |1318 |30568 |
-ROW |57676 |1318 |30569 |
-ROW |57677 |1318 |30570 |
-ROW |57678 |1326 |30690 |
-ROW |57679 |1327 |30691 |
-ROW |57680 |1326 |30692 |
-ROW |57681 |1327 |30693 |
-ROW |57682 |1327 |30694 |
-ROW |57683 |1326 |30695 |
-ROW |57684 |1326 |30696 |
-ROW |57685 |1326 |30697 |
-ROW |57686 |1326 |30698 |
-ROW |57687 |1326 |30699 |
-ROW |57688 |1326 |30700 |
-ROW |57689 |1326 |30701 |
-ROW |57690 |1326 |30702 |
-ROW |57691 |1326 |30703 |
-ROW |57692 |1326 |30704 |
-ROW |57693 |1326 |30705 |
-ROW |57694 |1326 |30706 |
-ROW |57695 |1326 |30707 |
-ROW |57696 |1326 |30708 |
-ROW |57697 |1326 |30709 |
-ROW |57698 |1326 |30710 |
-ROW |57699 |1326 |30711 |
-ROW |57700 |1326 |30712 |
-ROW |57701 |1327 |30719 |
-ROW |57702 |1327 |30739 |
-ROW |57703 |1327 |30743 |
-ROW |57704 |1327 |30744 |
-ROW |57705 |1327 |30746 |
-ROW |57706 |1327 |30747 |
-ROW |57707 |1327 |30754 |
-ROW |57708 |1327 |30756 |
-ROW |57709 |1298 |30187 |
-ROW |57710 |1298 |30188 |
-ROW |57711 |1299 |30189 |
-ROW |57712 |1299 |30190 |
-ROW |57713 |1298 |30191 |
-ROW |57714 |1298 |30192 |
-ROW |57715 |1300 |30789 |
-ROW |57716 |1300 |30790 |
-ROW |57717 |1301 |30230 |
-ROW |57718 |1301 |30231 |
-ROW |57719 |1300 |30234 |
-ROW |57720 |1300 |30235 |
-ROW |57721 |1320 |30611 |
-ROW |57722 |1321 |30612 |
-ROW |57723 |1320 |30613 |
-ROW |57724 |1320 |30614 |
-ROW |57725 |1320 |30615 |
-ROW |57726 |1320 |30616 |
-ROW |57727 |1320 |30617 |
-ROW |57728 |1320 |30618 |
-ROW |57729 |1320 |30619 |
-ROW |57730 |1320 |30620 |
-ROW |57731 |1320 |30621 |
-ROW |57732 |1320 |30622 |
-ROW |57733 |1320 |30623 |
-ROW |57734 |1320 |30624 |
-ROW |57735 |1320 |30625 |
-ROW |57736 |1320 |30626 |
-ROW |57737 |1320 |30627 |
-ROW |57738 |1320 |30628 |
-ROW |57739 |1320 |30629 |
-ROW |57740 |1320 |30630 |
-ROW |57741 |1320 |30631 |
-ROW |57742 |1320 |30632 |
-ROW |57743 |1320 |30633 |
-ROW |57744 |1320 |30634 |
-ROW |57745 |1320 |30635 |
-ROW |57746 |1320 |30636 |
-ROW |57747 |1121 |28804 |
-ROW |57748 |1120 |28805 |
-ROW |57749 |1120 |28806 |
-ROW |57750 |1120 |28807 |
-ROW |57751 |1120 |28808 |
-ROW |57752 |1120 |28809 |
-ROW |57753 |1120 |28810 |
-ROW |57754 |1120 |28811 |
-ROW |57755 |1120 |28812 |
-ROW |57756 |1120 |28813 |
-ROW |57757 |1120 |28814 |
-ROW |57758 |1120 |28815 |
-ROW |57759 |1120 |28816 |
-ROW |57760 |1120 |28817 |
-ROW |57761 |1120 |28818 |
-ROW |57762 |1120 |28819 |
-ROW |57763 |1120 |28820 |
-ROW |57764 |1123 |28821 |
-ROW |57765 |1122 |28822 |
-ROW |57766 |1122 |28823 |
-ROW |57767 |1122 |28824 |
-ROW |57768 |1122 |28825 |
-ROW |57769 |1122 |28826 |
-ROW |57770 |1122 |28827 |
-ROW |57771 |1122 |28828 |
-ROW |57772 |1122 |28829 |
-ROW |57773 |1122 |28830 |
-ROW |57774 |1122 |28831 |
-ROW |57775 |1122 |28832 |
-ROW |57776 |1122 |28833 |
-ROW |57777 |1264 |29653 |
-ROW |57778 |1264 |29654 |
-ROW |57779 |1263 |29655 |
-ROW |57780 |1263 |29656 |
-ROW |57781 |1263 |29657 |
-ROW |57782 |1263 |29658 |
-ROW |57783 |1263 |29659 |
-ROW |57784 |1263 |29660 |
-ROW |57785 |1264 |29661 |
-ROW |57786 |1263 |29662 |
-ROW |57787 |1262 |29998 |
-ROW |57788 |1262 |29999 |
-ROW |57789 |1263 |29687 |
-ROW |57790 |1263 |29688 |
-ROW |57791 |1263 |29691 |
-ROW |57792 |1263 |29692 |
-ROW |57793 |1263 |29693 |
-ROW |57794 |1263 |29694 |
-ROW |57795 |1263 |29695 |
-ROW |57796 |1263 |29696 |
-ROW |57797 |1263 |29697 |
-ROW |57798 |1263 |29698 |
-ROW |57799 |1263 |29699 |
-ROW |57800 |1263 |29700 |
-ROW |57801 |1263 |29701 |
-ROW |57802 |1261 |30000 |
-ROW |57803 |1261 |30001 |
-ROW |57804 |1261 |30002 |
-ROW |57805 |1261 |30003 |
-ROW |57806 |1261 |30004 |
-ROW |57807 |1261 |30005 |
-ROW |57808 |1261 |30006 |
-ROW |57809 |1261 |30007 |
-ROW |57810 |1261 |30008 |
-ROW |57811 |1261 |30009 |
-ROW |57812 |1261 |30010 |
-ROW |57813 |1261 |30011 |
-ROW |57814 |1261 |30012 |
-ROW |57815 |1261 |30013 |
-ROW |57816 |1261 |30014 |
-ROW |57817 |1261 |30015 |
-ROW |57818 |1261 |30016 |
-ROW |57819 |1261 |30017 |
-ROW |57820 |1261 |30018 |
-ROW |57821 |1261 |30019 |
-ROW |57822 |1261 |30020 |
-ROW |57823 |1261 |30021 |
-ROW |57824 |1261 |30022 |
-ROW |57825 |1261 |30023 |
-ROW |57826 |1263 |30024 |
-ROW |57827 |1263 |30025 |
-ROW |57828 |1266 |29738 |
-ROW |57829 |1266 |29739 |
-ROW |57830 |1268 |29741 |
-ROW |57831 |1267 |29742 |
-ROW |57832 |1267 |29743 |
-ROW |57833 |1267 |29744 |
-ROW |57834 |1268 |29745 |
-ROW |57835 |1268 |30043 |
-ROW |57836 |1265 |29746 |
-ROW |57837 |1265 |29747 |
-ROW |57838 |1265 |29748 |
-ROW |57839 |1265 |29749 |
-ROW |57840 |1265 |29750 |
-ROW |57841 |1265 |29751 |
-ROW |57842 |1265 |29752 |
-ROW |57843 |1265 |29753 |
-ROW |57844 |1265 |29754 |
-ROW |57845 |1265 |29755 |
-ROW |57846 |1265 |29756 |
-ROW |57847 |1265 |29757 |
-ROW |57848 |1265 |29758 |
-ROW |57849 |1265 |29759 |
-ROW |57850 |1265 |29760 |
-ROW |57851 |1265 |29761 |
-ROW |57852 |1265 |29762 |
-ROW |57853 |1265 |29763 |
-ROW |57854 |1265 |29764 |
-ROW |57855 |1265 |29765 |
-ROW |57856 |1265 |29766 |
-ROW |57857 |1265 |29767 |
-ROW |57858 |1265 |29768 |
-ROW |57859 |1265 |29769 |
-ROW |57860 |1267 |29771 |
-ROW |57861 |1267 |29772 |
-ROW |57862 |1267 |29773 |
-ROW |57863 |1267 |29774 |
-ROW |57864 |1267 |29775 |
-ROW |57865 |1267 |29776 |
-ROW |57866 |1267 |29777 |
-ROW |57867 |1267 |29779 |
-ROW |57868 |1267 |29780 |
-ROW |57869 |1267 |29781 |
-ROW |57870 |1267 |29782 |
-ROW |57871 |1267 |29783 |
-ROW |57872 |1267 |29784 |
-ROW |57873 |1267 |30044 |
-ROW |57874 |1267 |30045 |
-ROW |57875 |1107 |28501 |
-ROW |57876 |1108 |28502 |
-ROW |57877 |1105 |28503 |
-ROW |57878 |1105 |28504 |
-ROW |57879 |1106 |28505 |
-ROW |57880 |1106 |28506 |
-ROW |57881 |1106 |28507 |
-ROW |57882 |1107 |28508 |
-ROW |57883 |1107 |28509 |
-ROW |57884 |1107 |28510 |
-ROW |57885 |1109 |28511 |
-ROW |57886 |1106 |28512 |
-ROW |57887 |1105 |28513 |
-ROW |57888 |1108 |28514 |
-ROW |57889 |1108 |28515 |
-ROW |57890 |1108 |28516 |
-ROW |57891 |1107 |28517 |
-ROW |57892 |1108 |28518 |
-ROW |57893 |1105 |28519 |
-ROW |57894 |1105 |28520 |
-ROW |57895 |1105 |28521 |
-ROW |57896 |1105 |28522 |
-ROW |57897 |1105 |28523 |
-ROW |57898 |1106 |28524 |
-ROW |57899 |1106 |28525 |
-ROW |57900 |1106 |28526 |
-ROW |57901 |1106 |28527 |
-ROW |57902 |1106 |28528 |
-ROW |57903 |1107 |28529 |
-ROW |57904 |1107 |28530 |
-ROW |57905 |1107 |28531 |
-ROW |57906 |1105 |28532 |
-ROW |57907 |446 |23644 |
-ROW |57908 |736 |26856 |
-ROW |57909 |736 |26857 |
-ROW |57910 |736 |26858 |
-ROW |57911 |736 |26859 |
-ROW |57912 |736 |26860 |
-ROW |57913 |736 |26861 |
-ROW |57914 |736 |26862 |
-ROW |57915 |736 |26863 |
-ROW |57916 |736 |26864 |
-ROW |57917 |736 |26865 |
-ROW |57918 |736 |26866 |
-ROW |57919 |736 |26867 |
-ROW |57920 |736 |26868 |
-ROW |57921 |736 |26869 |
-ROW |57922 |739 |26870 |
-ROW |57923 |738 |26871 |
-ROW |57924 |739 |26872 |
-ROW |57925 |739 |26873 |
-ROW |57926 |739 |26874 |
-ROW |57927 |738 |26875 |
-ROW |57928 |738 |26876 |
-ROW |57929 |736 |26877 |
-ROW |57930 |736 |26878 |
-ROW |57931 |737 |26879 |
-ROW |57932 |737 |26880 |
-ROW |57933 |737 |26881 |
-ROW |57934 |736 |26882 |
-ROW |57935 |736 |26883 |
-ROW |57936 |734 |26884 |
-ROW |57937 |734 |26885 |
-ROW |57938 |734 |26886 |
-ROW |57939 |734 |26887 |
-ROW |57940 |734 |26888 |
-ROW |57941 |734 |26889 |
-ROW |57942 |734 |26890 |
-ROW |57943 |732 |26891 |
-ROW |57944 |732 |26892 |
-ROW |57945 |733 |26893 |
-ROW |57946 |733 |26894 |
-ROW |57947 |734 |26895 |
-ROW |57948 |734 |26896 |
-ROW |57949 |734 |26897 |
-ROW |57950 |735 |26898 |
-ROW |57951 |735 |26899 |
-ROW |57952 |736 |26900 |
-ROW |57953 |736 |26901 |
-ROW |57954 |736 |26902 |
-ROW |57955 |735 |26903 |
-ROW |57956 |735 |26904 |
-ROW |57957 |734 |26905 |
-ROW |57958 |734 |26906 |
-ROW |57959 |735 |26907 |
-ROW |57960 |735 |26908 |
-ROW |57961 |735 |26909 |
-ROW |57962 |732 |26910 |
-ROW |57963 |447 |23645 |
-ROW |57964 |448 |23646 |
-ROW |57965 |449 |23647 |
-ROW |57966 |450 |23648 |
-ROW |57967 |451 |23649 |
-ROW |57968 |452 |23650 |
-ROW |57969 |453 |23651 |
-ROW |57970 |1111 |28585 |
-ROW |57971 |1111 |28586 |
-ROW |57972 |1111 |28587 |
-ROW |57973 |1111 |28588 |
-ROW |57974 |1111 |28589 |
-ROW |57975 |1111 |28590 |
-ROW |57976 |1111 |28591 |
-ROW |57977 |1111 |28592 |
-ROW |57978 |1111 |28593 |
-ROW |57979 |1111 |28594 |
-ROW |57980 |1111 |28595 |
-ROW |57981 |1111 |28596 |
-ROW |57982 |1111 |28597 |
-ROW |57983 |1111 |28598 |
-ROW |57984 |1111 |28599 |
-ROW |57985 |1111 |28600 |
-ROW |57986 |1111 |28601 |
-ROW |57987 |1111 |28602 |
-ROW |57988 |1111 |28603 |
-ROW |57989 |1111 |28604 |
-ROW |57990 |1111 |28605 |
-ROW |57991 |1111 |28606 |
-ROW |57992 |1111 |28607 |
-ROW |57993 |1111 |28608 |
-ROW |57994 |1111 |28609 |
-ROW |57995 |1111 |28610 |
-ROW |57996 |1111 |28611 |
-ROW |57997 |1111 |28612 |
-ROW |57998 |1111 |28613 |
-ROW |57999 |1111 |28614 |
-ROW |58000 |1111 |28615 |
-ROW |58001 |1111 |28616 |
-ROW |58002 |1110 |28539 |
-ROW |58003 |1110 |28540 |
-ROW |58004 |1110 |28541 |
-ROW |58005 |1110 |28542 |
-ROW |58006 |1110 |28543 |
-ROW |58007 |1110 |28544 |
-ROW |58008 |1110 |28545 |
-ROW |58009 |1110 |28546 |
-ROW |58010 |1110 |28547 |
-ROW |58011 |1110 |28548 |
-ROW |58012 |1110 |28549 |
-ROW |58013 |1110 |28550 |
-ROW |58014 |1110 |28551 |
-ROW |58015 |1110 |28552 |
-ROW |58016 |1110 |28553 |
-ROW |58017 |1110 |28554 |
-ROW |58018 |1110 |28555 |
-ROW |58019 |1110 |28556 |
-ROW |58020 |1110 |28557 |
-ROW |58021 |1110 |28558 |
-ROW |58022 |1110 |28559 |
-ROW |58023 |1110 |28560 |
-ROW |58024 |1110 |28561 |
-ROW |58025 |1110 |28562 |
-ROW |58026 |1110 |28563 |
-ROW |58027 |1110 |28564 |
-ROW |58028 |1110 |28565 |
-ROW |58029 |1110 |28566 |
-ROW |58030 |1110 |28567 |
-ROW |58031 |1110 |28568 |
-ROW |58032 |1110 |28569 |
-ROW |58033 |1110 |28570 |
-ROW |58034 |1110 |28571 |
-ROW |58035 |1110 |28572 |
-ROW |58036 |1110 |28573 |
-ROW |58037 |1110 |28574 |
-ROW |58038 |1110 |28575 |
-ROW |58039 |1110 |28576 |
-ROW |58040 |1110 |28577 |
-ROW |58041 |1110 |28578 |
-ROW |58042 |1110 |28579 |
-ROW |58043 |1110 |28580 |
-ROW |58044 |1110 |28581 |
-ROW |58045 |1110 |28582 |
-ROW |58046 |1110 |28583 |
-ROW |58047 |1110 |28584 |
-ROW |58048 |1110 |29821 |
-ROW |58049 |454 |23652 |
-ROW |58050 |455 |23653 |
-ROW |58051 |456 |23654 |
-ROW |58052 |356 |10067 |
-ROW |58053 |356 |10068 |
-ROW |58054 |356 |10069 |
-ROW |58055 |356 |10070 |
-ROW |58056 |356 |10071 |
-ROW |58057 |356 |10072 |
-ROW |58058 |356 |23340 |
-ROW |58059 |356 |23341 |
-ROW |58060 |356 |23342 |
-ROW |58061 |356 |23343 |
-ROW |58062 |356 |23344 |
-ROW |58063 |356 |23345 |
-ROW |58064 |356 |23346 |
-ROW |58065 |356 |23347 |
-ROW |58066 |356 |23348 |
-ROW |58067 |356 |23349 |
-ROW |58068 |356 |23350 |
-ROW |58069 |356 |23351 |
-ROW |58070 |356 |23352 |
-ROW |58071 |356 |23353 |
-ROW |58072 |356 |23354 |
-ROW |58073 |356 |23355 |
-ROW |58074 |356 |23356 |
-ROW |58075 |356 |23357 |
-ROW |58076 |356 |23358 |
-ROW |58077 |356 |23359 |
-ROW |58078 |356 |23360 |
-ROW |58079 |356 |25368 |
-ROW |58080 |356 |25369 |
-ROW |58081 |356 |28250 |
-ROW |58082 |356 |28251 |
-ROW |58083 |356 |28617 |
-ROW |58084 |356 |28618 |
-ROW |58085 |356 |28619 |
-ROW |58086 |179 |10061 |
-ROW |58087 |179 |10062 |
-ROW |58088 |179 |10063 |
-ROW |58089 |179 |10064 |
-ROW |58090 |179 |10065 |
-ROW |58091 |179 |10066 |
-ROW |58092 |179 |22183 |
-ROW |58093 |179 |22185 |
-ROW |58094 |179 |22187 |
-ROW |58095 |179 |22189 |
-ROW |58096 |179 |22191 |
-ROW |58097 |179 |22196 |
-ROW |58098 |179 |22199 |
-ROW |58099 |179 |22219 |
-ROW |58100 |179 |22396 |
-ROW |58101 |179 |22399 |
-ROW |58102 |179 |22400 |
-ROW |58103 |179 |22401 |
-ROW |58104 |179 |22402 |
-ROW |58105 |179 |22404 |
-ROW |58106 |179 |22406 |
-ROW |58107 |179 |22408 |
-ROW |58108 |179 |22412 |
-ROW |58109 |179 |22414 |
-ROW |58110 |179 |22416 |
-ROW |58111 |179 |22418 |
-ROW |58112 |179 |22420 |
-ROW |58113 |179 |22422 |
-ROW |58114 |179 |22424 |
-ROW |58115 |179 |22426 |
-ROW |58116 |179 |22430 |
-ROW |58117 |179 |22689 |
-ROW |58118 |179 |23171 |
-ROW |58119 |179 |23251 |
-ROW |58120 |179 |23634 |
-ROW |58121 |179 |23661 |
-ROW |58122 |179 |23663 |
-ROW |58123 |179 |25366 |
-ROW |58124 |179 |25370 |
-ROW |58125 |179 |25665 |
-ROW |58126 |179 |25666 |
-ROW |58127 |179 |28248 |
-ROW |58128 |179 |28533 |
-ROW |58129 |179 |28535 |
-ROW |58130 |179 |28537 |
-ROW |58131 |179 |29822 |
-ROW |58132 |345 |10073 |
-ROW |58133 |345 |10074 |
-ROW |58134 |345 |10075 |
-ROW |58135 |345 |10076 |
-ROW |58136 |345 |10077 |
-ROW |58137 |345 |10078 |
-ROW |58138 |345 |23252 |
-ROW |58139 |345 |23253 |
-ROW |58140 |345 |23255 |
-ROW |58141 |345 |23256 |
-ROW |58142 |345 |23257 |
-ROW |58143 |345 |23258 |
-ROW |58144 |345 |23259 |
-ROW |58145 |345 |23260 |
-ROW |58146 |345 |23261 |
-ROW |58147 |345 |23262 |
-ROW |58148 |345 |23264 |
-ROW |58149 |345 |23265 |
-ROW |58150 |345 |23266 |
-ROW |58151 |345 |23267 |
-ROW |58152 |345 |23268 |
-ROW |58153 |345 |23269 |
-ROW |58154 |345 |23270 |
-ROW |58155 |345 |23271 |
-ROW |58156 |345 |23272 |
-ROW |58157 |345 |23273 |
-ROW |58158 |345 |23274 |
-ROW |58159 |345 |23275 |
-ROW |58160 |345 |23276 |
-ROW |58161 |345 |23277 |
-ROW |58162 |345 |23328 |
-ROW |58163 |345 |23620 |
-ROW |58164 |345 |23625 |
-ROW |58165 |345 |23628 |
-ROW |58166 |345 |23635 |
-ROW |58167 |345 |23662 |
-ROW |58168 |345 |23664 |
-ROW |58169 |345 |25367 |
-ROW |58170 |345 |25371 |
-ROW |58171 |345 |25667 |
-ROW |58172 |345 |25668 |
-ROW |58173 |345 |28249 |
-ROW |58174 |345 |28534 |
-ROW |58175 |345 |28536 |
-ROW |58176 |345 |28538 |
-ROW |58177 |345 |29823 |
-ROW |58178 |280 |22917 |
-ROW |58179 |280 |22918 |
-ROW |58180 |273 |22920 |
-ROW |58181 |279 |22920 |
-ROW |58182 |273 |22921 |
-ROW |58183 |279 |22921 |
-ROW |58184 |273 |22922 |
-ROW |58185 |279 |22922 |
-ROW |58186 |273 |22923 |
-ROW |58187 |279 |22923 |
-ROW |58188 |273 |22924 |
-ROW |58189 |279 |22924 |
-ROW |58190 |275 |22933 |
-ROW |58191 |278 |22933 |
-ROW |58192 |275 |22934 |
-ROW |58193 |278 |22934 |
-ROW |58194 |275 |22938 |
-ROW |58195 |278 |22938 |
-ROW |58196 |275 |22939 |
-ROW |58197 |278 |22939 |
-ROW |58198 |278 |22940 |
-ROW |58199 |281 |22940 |
-ROW |58200 |281 |22941 |
-ROW |58201 |276 |22942 |
-ROW |58202 |276 |22943 |
-ROW |58203 |273 |23108 |
-ROW |58204 |331 |23108 |
-ROW |58205 |279 |23108 |
-ROW |58206 |273 |23109 |
-ROW |58207 |331 |23109 |
-ROW |58208 |279 |23109 |
-ROW |58209 |273 |23110 |
-ROW |58210 |279 |23110 |
-ROW |58211 |273 |23111 |
-ROW |58212 |331 |23111 |
-ROW |58213 |279 |23111 |
-ROW |58214 |273 |23112 |
-ROW |58215 |331 |23112 |
-ROW |58216 |279 |23112 |
-ROW |58217 |273 |23113 |
-ROW |58218 |279 |23113 |
-ROW |58219 |273 |23114 |
-ROW |58220 |279 |23114 |
-ROW |58221 |273 |23115 |
-ROW |58222 |279 |23115 |
-ROW |58223 |274 |23116 |
-ROW |58224 |279 |23116 |
-ROW |58225 |274 |23117 |
-ROW |58226 |279 |23117 |
-ROW |58227 |273 |23118 |
-ROW |58228 |331 |23118 |
-ROW |58229 |273 |23119 |
-ROW |58230 |279 |23119 |
-ROW |58231 |273 |23120 |
-ROW |58232 |279 |23120 |
-ROW |58233 |273 |23121 |
-ROW |58234 |279 |23121 |
-ROW |58235 |276 |23122 |
-ROW |58236 |279 |23122 |
-ROW |58237 |273 |23123 |
-ROW |58238 |279 |23123 |
-ROW |58239 |276 |23124 |
-ROW |58240 |276 |23125 |
-ROW |58241 |276 |23126 |
-ROW |58242 |276 |23127 |
-ROW |58243 |276 |23128 |
-ROW |58244 |276 |23129 |
-ROW |58245 |276 |23130 |
-ROW |58246 |276 |23131 |
-ROW |58247 |277 |22945 |
-ROW |58248 |277 |22946 |
-ROW |58249 |274 |22948 |
-ROW |58250 |274 |22949 |
-ROW |58251 |274 |22950 |
-ROW |58252 |274 |22951 |
-ROW |58253 |274 |22952 |
-ROW |58254 |268 |22875 |
-ROW |58255 |268 |22876 |
-ROW |58256 |270 |22877 |
-ROW |58257 |270 |22878 |
-ROW |58258 |265 |22879 |
-ROW |58259 |268 |22879 |
-ROW |58260 |263 |22880 |
-ROW |58261 |269 |22880 |
-ROW |58262 |263 |22881 |
-ROW |58263 |269 |22881 |
-ROW |58264 |263 |22882 |
-ROW |58265 |269 |22882 |
-ROW |58266 |263 |22883 |
-ROW |58267 |269 |22883 |
-ROW |58268 |263 |22884 |
-ROW |58269 |269 |22884 |
-ROW |58270 |263 |22885 |
-ROW |58271 |269 |22885 |
-ROW |58272 |263 |22886 |
-ROW |58273 |269 |22886 |
-ROW |58274 |263 |22888 |
-ROW |58275 |269 |22888 |
-ROW |58276 |263 |22891 |
-ROW |58277 |269 |22891 |
-ROW |58278 |263 |22892 |
-ROW |58279 |269 |22892 |
-ROW |58280 |265 |22893 |
-ROW |58281 |268 |22893 |
-ROW |58282 |265 |22894 |
-ROW |58283 |268 |22894 |
-ROW |58284 |266 |22895 |
-ROW |58285 |266 |22896 |
-ROW |58286 |266 |22897 |
-ROW |58287 |265 |22898 |
-ROW |58288 |268 |22898 |
-ROW |58289 |265 |22899 |
-ROW |58290 |268 |22899 |
-ROW |58291 |268 |22900 |
-ROW |58292 |271 |22900 |
-ROW |58293 |271 |22901 |
-ROW |58294 |266 |22902 |
-ROW |58295 |266 |22903 |
-ROW |58296 |264 |22908 |
-ROW |58297 |264 |22909 |
-ROW |58298 |264 |22910 |
-ROW |58299 |264 |22911 |
-ROW |58300 |264 |22912 |
-ROW |58301 |267 |23073 |
-ROW |58302 |267 |23074 |
-ROW |58303 |283 |22961 |
-ROW |58304 |289 |22961 |
-ROW |58305 |283 |22962 |
-ROW |58306 |289 |22962 |
-ROW |58307 |283 |22963 |
-ROW |58308 |289 |22963 |
-ROW |58309 |283 |22965 |
-ROW |58310 |289 |22965 |
-ROW |58311 |283 |22968 |
-ROW |58312 |289 |22968 |
-ROW |58313 |283 |22971 |
-ROW |58314 |289 |22971 |
-ROW |58315 |283 |22972 |
-ROW |58316 |289 |22972 |
-ROW |58317 |285 |22973 |
-ROW |58318 |288 |22973 |
-ROW |58319 |285 |22974 |
-ROW |58320 |288 |22974 |
-ROW |58321 |285 |22978 |
-ROW |58322 |288 |22978 |
-ROW |58323 |288 |22980 |
-ROW |58324 |291 |22980 |
-ROW |58325 |291 |22981 |
-ROW |58326 |286 |22982 |
-ROW |58327 |286 |22983 |
-ROW |58328 |287 |22985 |
-ROW |58329 |287 |22986 |
-ROW |58330 |284 |22988 |
-ROW |58331 |284 |22989 |
-ROW |58332 |284 |22990 |
-ROW |58333 |284 |22991 |
-ROW |58334 |284 |22992 |
-ROW |58335 |308 |23035 |
-ROW |58336 |308 |23036 |
-ROW |58337 |305 |23039 |
-ROW |58338 |308 |23039 |
-ROW |58339 |303 |23041 |
-ROW |58340 |309 |23041 |
-ROW |58341 |303 |23042 |
-ROW |58342 |309 |23042 |
-ROW |58343 |303 |23043 |
-ROW |58344 |309 |23043 |
-ROW |58345 |305 |23053 |
-ROW |58346 |308 |23053 |
-ROW |58347 |305 |23054 |
-ROW |58348 |308 |23054 |
-ROW |58349 |305 |23058 |
-ROW |58350 |308 |23058 |
-ROW |58351 |305 |23059 |
-ROW |58352 |308 |23059 |
-ROW |58353 |308 |23060 |
-ROW |58354 |311 |23060 |
-ROW |58355 |311 |23061 |
-ROW |58356 |306 |23062 |
-ROW |58357 |306 |23063 |
-ROW |58358 |307 |23077 |
-ROW |58359 |307 |23078 |
-ROW |58360 |304 |23068 |
-ROW |58361 |304 |23069 |
-ROW |58362 |304 |23070 |
-ROW |58363 |304 |23071 |
-ROW |58364 |304 |23072 |
-ROW |58365 |258 |22835 |
-ROW |58366 |258 |22836 |
-ROW |58367 |260 |22837 |
-ROW |58368 |260 |22838 |
-ROW |58369 |255 |22839 |
-ROW |58370 |258 |22839 |
-ROW |58371 |253 |22840 |
-ROW |58372 |259 |22840 |
-ROW |58373 |253 |22841 |
-ROW |58374 |259 |22841 |
-ROW |58375 |253 |22842 |
-ROW |58376 |259 |22842 |
-ROW |58377 |253 |22843 |
-ROW |58378 |259 |22843 |
-ROW |58379 |253 |22844 |
-ROW |58380 |259 |22844 |
-ROW |58381 |253 |22845 |
-ROW |58382 |259 |22845 |
-ROW |58383 |253 |22846 |
-ROW |58384 |259 |22846 |
-ROW |58385 |253 |22848 |
-ROW |58386 |259 |22848 |
-ROW |58387 |253 |22851 |
-ROW |58388 |259 |22851 |
-ROW |58389 |253 |22852 |
-ROW |58390 |259 |22852 |
-ROW |58391 |255 |22853 |
-ROW |58392 |258 |22853 |
-ROW |58393 |255 |22854 |
-ROW |58394 |258 |22854 |
-ROW |58395 |256 |22855 |
-ROW |58396 |256 |22856 |
-ROW |58397 |256 |22857 |
-ROW |58398 |255 |22858 |
-ROW |58399 |258 |22858 |
-ROW |58400 |255 |22859 |
-ROW |58401 |258 |22859 |
-ROW |58402 |258 |22860 |
-ROW |58403 |261 |22860 |
-ROW |58404 |261 |22861 |
-ROW |58405 |256 |22862 |
-ROW |58406 |256 |22863 |
-ROW |58407 |254 |22868 |
-ROW |58408 |254 |22869 |
-ROW |58409 |254 |22870 |
-ROW |58410 |254 |22871 |
-ROW |58411 |254 |22872 |
-ROW |58412 |257 |23075 |
-ROW |58413 |257 |23076 |
-ROW |58414 |298 |22996 |
-ROW |58415 |300 |22997 |
-ROW |58416 |300 |22998 |
-ROW |58417 |295 |22999 |
-ROW |58418 |298 |22999 |
-ROW |58419 |293 |23000 |
-ROW |58420 |299 |23000 |
-ROW |58421 |293 |23001 |
-ROW |58422 |299 |23001 |
-ROW |58423 |293 |23002 |
-ROW |58424 |299 |23002 |
-ROW |58425 |293 |23003 |
-ROW |58426 |299 |23003 |
-ROW |58427 |293 |23004 |
-ROW |58428 |299 |23004 |
-ROW |58429 |293 |23005 |
-ROW |58430 |299 |23005 |
-ROW |58431 |293 |23007 |
-ROW |58432 |299 |23007 |
-ROW |58433 |293 |23011 |
-ROW |58434 |299 |23011 |
-ROW |58435 |293 |23012 |
-ROW |58436 |299 |23012 |
-ROW |58437 |295 |23013 |
-ROW |58438 |298 |23013 |
-ROW |58439 |295 |23014 |
-ROW |58440 |298 |23014 |
-ROW |58441 |296 |23015 |
-ROW |58442 |296 |23016 |
-ROW |58443 |296 |23017 |
-ROW |58444 |295 |23018 |
-ROW |58445 |298 |23018 |
-ROW |58446 |295 |23019 |
-ROW |58447 |298 |23019 |
-ROW |58448 |298 |23020 |
-ROW |58449 |301 |23020 |
-ROW |58450 |301 |23021 |
-ROW |58451 |296 |23022 |
-ROW |58452 |296 |23023 |
-ROW |58453 |297 |23025 |
-ROW |58454 |297 |23026 |
-ROW |58455 |294 |23028 |
-ROW |58456 |294 |23029 |
-ROW |58457 |294 |23030 |
-ROW |58458 |294 |23031 |
-ROW |58459 |294 |23032 |
-ROW |58460 |743 |26925 |
-ROW |58461 |743 |26926 |
-ROW |58462 |741 |26927 |
-ROW |58463 |742 |26928 |
-ROW |58464 |743 |26929 |
-ROW |58465 |743 |26930 |
-ROW |58466 |743 |26931 |
-ROW |58467 |743 |26932 |
-ROW |58468 |745 |26933 |
-ROW |58469 |746 |26934 |
-ROW |58470 |744 |26935 |
-ROW |58471 |744 |26936 |
-ROW |58472 |746 |26937 |
-ROW |58473 |746 |26938 |
-ROW |58474 |746 |26939 |
-ROW |58475 |746 |26940 |
-ROW |58476 |746 |26941 |
-ROW |58477 |746 |26942 |
-ROW |58478 |745 |26943 |
-ROW |58479 |748 |26944 |
-ROW |58480 |748 |26945 |
-ROW |58481 |749 |26946 |
-ROW |58482 |755 |26947 |
-ROW |58483 |755 |26948 |
-ROW |58484 |755 |26949 |
-ROW |58485 |753 |26950 |
-ROW |58486 |757 |26951 |
-ROW |58487 |753 |26952 |
-ROW |58488 |757 |26953 |
-ROW |58489 |757 |26954 |
-ROW |58490 |755 |26955 |
-ROW |58491 |755 |26956 |
-ROW |58492 |750 |26957 |
-ROW |58493 |750 |26958 |
-ROW |58494 |750 |26959 |
-ROW |58495 |753 |26960 |
-ROW |58496 |753 |26961 |
-ROW |58497 |755 |26962 |
-ROW |58498 |755 |26963 |
-ROW |58499 |755 |26964 |
-ROW |58500 |753 |26965 |
-ROW |58501 |763 |26966 |
-ROW |58502 |763 |26967 |
-ROW |58503 |762 |26968 |
-ROW |58504 |762 |26969 |
-ROW |58505 |760 |26970 |
-ROW |58506 |760 |26971 |
-ROW |58507 |760 |26972 |
-ROW |58508 |760 |26973 |
-ROW |58509 |760 |26974 |
-ROW |58510 |761 |26975 |
-ROW |58511 |761 |26976 |
-ROW |58512 |758 |26977 |
-ROW |58513 |761 |26977 |
-ROW |58514 |760 |26978 |
-ROW |58515 |760 |26979 |
-ROW |58516 |758 |26980 |
-ROW |58517 |758 |26981 |
-ROW |58518 |761 |26981 |
-ROW |58519 |758 |26982 |
-ROW |58520 |761 |26982 |
-ROW |58521 |761 |26983 |
-ROW |58522 |761 |26984 |
-ROW |58523 |762 |26984 |
-ROW |58524 |758 |26985 |
-ROW |58525 |761 |26985 |
-ROW |58526 |760 |26986 |
-ROW |58527 |747 |26994 |
-ROW |58528 |754 |26995 |
-ROW |58529 |754 |26996 |
-ROW |58530 |754 |26997 |
-ROW |58531 |754 |26998 |
-ROW |58532 |751 |26999 |
-ROW |58533 |751 |27000 |
-ROW |58534 |751 |27001 |
-ROW |58535 |751 |27002 |
-ROW |58536 |752 |27003 |
-ROW |58537 |752 |27004 |
-ROW |58538 |752 |27005 |
-ROW |58539 |752 |27006 |
-ROW |58540 |759 |27007 |
-ROW |58541 |759 |27008 |
-ROW |58542 |759 |27009 |
-ROW |58543 |759 |27010 |
-ROW |58544 |1112 |28621 |
-ROW |58545 |1112 |28622 |
-ROW |58546 |1112 |28623 |
-ROW |58547 |1112 |28624 |
-ROW |58548 |1328 |30821 |
-ROW |58549 |1328 |30822 |
-ROW |58550 |1330 |30823 |
-ROW |58551 |1330 |30824 |
-ROW |58552 |1330 |30825 |
-ROW |58553 |1330 |30826 |
-ROW |58554 |1328 |30827 |
-ROW |58555 |1330 |30828 |
-ROW |58556 |1330 |30829 |
-ROW |58557 |1330 |30830 |
-ROW |58558 |1328 |30831 |
-ROW |58559 |1328 |30832 |
-ROW |58560 |1328 |30833 |
-ROW |58561 |1328 |30834 |
-ROW |58562 |1328 |30835 |
-ROW |58563 |1329 |30836 |
-ROW |58564 |1328 |30837 |
-ROW |58565 |1328 |30838 |
-ROW |58566 |1328 |30839 |
-ROW |58567 |1329 |30840 |
-ROW |58568 |1328 |30841 |
-ROW |58569 |1329 |30842 |
-ROW |58570 |1329 |30843 |
-ROW |58571 |1329 |30844 |
-ROW |58572 |1329 |30845 |
-ROW |58573 |1328 |30846 |
-ROW |58574 |1328 |30847 |
-ROW |58575 |1328 |30848 |
-ROW |58576 |1328 |30849 |
-ROW |58577 |1328 |30850 |
-ROW |58578 |1328 |30851 |
-ROW |58579 |1328 |30852 |
-ROW |58580 |1328 |30853 |
-ROW |58581 |1328 |30854 |
-ROW |58582 |1328 |30855 |
-ROW |58583 |1328 |30856 |
-ROW |58584 |1328 |30857 |
-ROW |58585 |1328 |30858 |
-ROW |58586 |1328 |30859 |
-ROW |58587 |1328 |30860 |
-ROW |58588 |1328 |30861 |
-ROW |58589 |1328 |30862 |
-ROW |58590 |1328 |30863 |
-ROW |58591 |1328 |30864 |
-ROW |58592 |1328 |30865 |
-ROW |58593 |1328 |30866 |
-ROW |58594 |1328 |30867 |
-ROW |58595 |1328 |30868 |
-ROW |58596 |1328 |30869 |
-ROW |58597 |1328 |30870 |
-ROW |58598 |1328 |30871 |
-ROW |58599 |1328 |30872 |
-ROW |58600 |1329 |30873 |
-ROW |58601 |1314 |30431 |
-ROW |58602 |1314 |30432 |
-ROW |58603 |1315 |30433 |
-ROW |58604 |1314 |30434 |
-ROW |58605 |1314 |30435 |
-ROW |58606 |1315 |30436 |
-ROW |58607 |1314 |30437 |
-ROW |58608 |1314 |30438 |
-ROW |58609 |1314 |30439 |
-ROW |58610 |1314 |30440 |
-ROW |58611 |1314 |30441 |
-ROW |58612 |1314 |30442 |
-ROW |58613 |1315 |30443 |
-ROW |58614 |1314 |30444 |
-ROW |58615 |1314 |30445 |
-ROW |58616 |1314 |30446 |
-ROW |58617 |1314 |30447 |
-ROW |58618 |1314 |30448 |
-ROW |58619 |1314 |30449 |
-ROW |58620 |1314 |30450 |
-ROW |58621 |1314 |30451 |
-ROW |58622 |1314 |30452 |
-ROW |58623 |1314 |30453 |
-ROW |58624 |1314 |30454 |
-ROW |58625 |1314 |30455 |
-ROW |58626 |1314 |30456 |
-ROW |58627 |1314 |30457 |
-ROW |58628 |1314 |30458 |
-ROW |58629 |1314 |30459 |
-ROW |58630 |1314 |30460 |
-ROW |58631 |1314 |30461 |
-ROW |58632 |1314 |30462 |
-ROW |58633 |1314 |30463 |
-ROW |58634 |1314 |30464 |
-ROW |58635 |1314 |30465 |
-ROW |58636 |1314 |30466 |
-ROW |58637 |1314 |30467 |
-ROW |58638 |1314 |30468 |
-ROW |58639 |1314 |30469 |
-ROW |58640 |1314 |30470 |
-ROW |58641 |1314 |30471 |
-ROW |58642 |1314 |30474 |
-ROW |58643 |1315 |30475 |
-ROW |58644 |1314 |30476 |
-ROW |58645 |1314 |30477 |
-ROW |58646 |1314 |30478 |
-ROW |58647 |1322 |30637 |
-ROW |58648 |1322 |30638 |
-ROW |58649 |1323 |30639 |
-ROW |58650 |1322 |30640 |
-ROW |58651 |1322 |30641 |
-ROW |58652 |1323 |30642 |
-ROW |58653 |1322 |30643 |
-ROW |58654 |1322 |30644 |
-ROW |58655 |1322 |30645 |
-ROW |58656 |1322 |30646 |
-ROW |58657 |1322 |30647 |
-ROW |58658 |1322 |30648 |
-ROW |58659 |1323 |30649 |
-ROW |58660 |1322 |30650 |
-ROW |58661 |1322 |30651 |
-ROW |58662 |1322 |30652 |
-ROW |58663 |1322 |30653 |
-ROW |58664 |1322 |30654 |
-ROW |58665 |1322 |30655 |
-ROW |58666 |1322 |30656 |
-ROW |58667 |1322 |30657 |
-ROW |58668 |1322 |30658 |
-ROW |58669 |1322 |30659 |
-ROW |58670 |1322 |30660 |
-ROW |58671 |1322 |30661 |
-ROW |58672 |1322 |30662 |
-ROW |58673 |1322 |30663 |
-ROW |58674 |1322 |30664 |
-ROW |58675 |1322 |30665 |
-ROW |58676 |1322 |30666 |
-ROW |58677 |1322 |30667 |
-ROW |58678 |1322 |30668 |
-ROW |58679 |1322 |30669 |
-ROW |58680 |1322 |30670 |
-ROW |58681 |1322 |30671 |
-ROW |58682 |1322 |30672 |
-ROW |58683 |1322 |30673 |
-ROW |58684 |1322 |30674 |
-ROW |58685 |1322 |30675 |
-ROW |58686 |1322 |30676 |
-ROW |58687 |1322 |30677 |
-ROW |58688 |1322 |30680 |
-ROW |58689 |1323 |30681 |
-ROW |58690 |1322 |30682 |
-ROW |58691 |1322 |30683 |
-ROW |58692 |1322 |30684 |
-ROW |58693 |1317 |30479 |
-ROW |58694 |1316 |30480 |
-ROW |58695 |1316 |30481 |
-ROW |58696 |1316 |30482 |
-ROW |58697 |1316 |30483 |
-ROW |58698 |1316 |30484 |
-ROW |58699 |1317 |30485 |
-ROW |58700 |1316 |30486 |
-ROW |58701 |1317 |30487 |
-ROW |58702 |1316 |30488 |
-ROW |58703 |1316 |30489 |
-ROW |58704 |1316 |30490 |
-ROW |58705 |1316 |30491 |
-ROW |58706 |1316 |30492 |
-ROW |58707 |1316 |30493 |
-ROW |58708 |1316 |30494 |
-ROW |58709 |1316 |30495 |
-ROW |58710 |1316 |30496 |
-ROW |58711 |1316 |30497 |
-ROW |58712 |1316 |30498 |
-ROW |58713 |1316 |30499 |
-ROW |58714 |1316 |30500 |
-ROW |58715 |1316 |30501 |
-ROW |58716 |1316 |30502 |
-ROW |58717 |1316 |30503 |
-ROW |58718 |1316 |30504 |
-ROW |58719 |1316 |30505 |
-ROW |58720 |1316 |30506 |
-ROW |58721 |1316 |30507 |
-ROW |58722 |1316 |30508 |
-ROW |58723 |1316 |30509 |
-ROW |58724 |1316 |30510 |
-ROW |58725 |1316 |30511 |
-ROW |58726 |1316 |30512 |
-ROW |58727 |1316 |30513 |
-ROW |58728 |1316 |30514 |
-ROW |58729 |1316 |30515 |
-ROW |58730 |1316 |30516 |
-ROW |58731 |1316 |30517 |
-ROW |58732 |1316 |30518 |
-ROW |58733 |1316 |30519 |
-ROW |58734 |1316 |30522 |
-ROW |58735 |1317 |30523 |
-ROW |58736 |1316 |30524 |
-ROW |58737 |1316 |30525 |
-ROW |58738 |1316 |30526 |
-ROW |58739 |1115 |28671 |
-ROW |58740 |1115 |28672 |
-ROW |58741 |1114 |28673 |
-ROW |58742 |1114 |28674 |
-ROW |58743 |1115 |28675 |
-ROW |58744 |1114 |28676 |
-ROW |58745 |1114 |28677 |
-ROW |58746 |1114 |28678 |
-ROW |58747 |1114 |28679 |
-ROW |58748 |1114 |28680 |
-ROW |58749 |1114 |28681 |
-ROW |58750 |1115 |28682 |
-ROW |58751 |1115 |28683 |
-ROW |58752 |1114 |28684 |
-ROW |58753 |1114 |28685 |
-ROW |58754 |1115 |28686 |
-ROW |58755 |1115 |28687 |
-ROW |58756 |1114 |28688 |
-ROW |58757 |1114 |28689 |
-ROW |58758 |1114 |28690 |
-ROW |58759 |1114 |28691 |
-ROW |58760 |1114 |28692 |
-ROW |58761 |1114 |28693 |
-ROW |58762 |1114 |28694 |
-ROW |58763 |1114 |28695 |
-ROW |58764 |1114 |28696 |
-ROW |58765 |1114 |28697 |
-ROW |58766 |1114 |28698 |
-ROW |58767 |1114 |28699 |
-ROW |58768 |1114 |28700 |
-ROW |58769 |1114 |28701 |
-ROW |58770 |1114 |28702 |
-ROW |58771 |1114 |28703 |
-ROW |58772 |1114 |28704 |
-ROW |58773 |1114 |28705 |
-ROW |58774 |1114 |28706 |
-ROW |58775 |1114 |28707 |
-ROW |58776 |1114 |28708 |
-ROW |58777 |1114 |28709 |
-ROW |58778 |1114 |28710 |
-ROW |58779 |1115 |28713 |
-ROW |58780 |1115 |28714 |
-ROW |58781 |1302 |30273 |
-ROW |58782 |1302 |30274 |
-ROW |58783 |1303 |30275 |
-ROW |58784 |1303 |30276 |
-ROW |58785 |1302 |30277 |
-ROW |58786 |1302 |30278 |
-ROW |58787 |1302 |30279 |
-ROW |58788 |1302 |30280 |
-ROW |58789 |1302 |30281 |
-ROW |58790 |1302 |30282 |
-ROW |58791 |1302 |30283 |
-ROW |58792 |1302 |30284 |
-ROW |58793 |1302 |30285 |
-ROW |58794 |1302 |30286 |
-ROW |58795 |1302 |30287 |
-ROW |58796 |1302 |30288 |
-ROW |58797 |1302 |30289 |
-ROW |58798 |1302 |30290 |
-ROW |58799 |1302 |30291 |
-ROW |58800 |1302 |30292 |
-ROW |58801 |1302 |30293 |
-ROW |58802 |1302 |30294 |
-ROW |58803 |1302 |30295 |
-ROW |58804 |1302 |30296 |
-ROW |58805 |1302 |30297 |
-ROW |58806 |1302 |30298 |
-ROW |58807 |1302 |30299 |
-ROW |58808 |1302 |30300 |
-ROW |58809 |1302 |30301 |
-ROW |58810 |1302 |30302 |
-ROW |58811 |1302 |30303 |
-ROW |58812 |1302 |30304 |
-ROW |58813 |1302 |30305 |
-ROW |58814 |1302 |30306 |
-ROW |58815 |1302 |30307 |
-ROW |58816 |1302 |30308 |
-ROW |58817 |1302 |30309 |
-ROW |58818 |1302 |30310 |
-ROW |58819 |1302 |30311 |
-ROW |58820 |1302 |30312 |
-ROW |58821 |1302 |30313 |
-ROW |58822 |1302 |30314 |
-ROW |58823 |1302 |30315 |
-ROW |58824 |1302 |30316 |
-ROW |58825 |1302 |30317 |
-ROW |58826 |1302 |30318 |
-ROW |58827 |1302 |30319 |
-ROW |58828 |1302 |30320 |
-ROW |58829 |1302 |30321 |
-ROW |58830 |1302 |30322 |
-ROW |58831 |1302 |30323 |
-ROW |58832 |1302 |30324 |
-ROW |58833 |1302 |30325 |
-ROW |58834 |1302 |30326 |
-ROW |58835 |1302 |30327 |
-ROW |58836 |1302 |30328 |
-ROW |58837 |1302 |30329 |
-ROW |58838 |1302 |30330 |
-ROW |58839 |1302 |30331 |
-ROW |58840 |1302 |30332 |
-ROW |58841 |1302 |30333 |
-ROW |58842 |1302 |30334 |
-ROW |58843 |1302 |30335 |
-ROW |58844 |1302 |30336 |
-ROW |58845 |1302 |30344 |
-ROW |58846 |1302 |30345 |
-ROW |58847 |1302 |30346 |
-ROW |58848 |1302 |30347 |
-ROW |58849 |1302 |30351 |
-ROW |58850 |1302 |30352 |
-ROW |58851 |1302 |30353 |
-ROW |58852 |1302 |30354 |
-ROW |58853 |1302 |30355 |
-ROW |58854 |1302 |30356 |
-ROW |58855 |1302 |30357 |
-ROW |58856 |1302 |30358 |
-ROW |58857 |1302 |30359 |
-ROW |58858 |1302 |30360 |
-ROW |58859 |1302 |30361 |
-ROW |58860 |1302 |30362 |
-ROW |58861 |1302 |30363 |
-ROW |58862 |1302 |30364 |
-ROW |58863 |1302 |30365 |
-ROW |58864 |1302 |30366 |
-ROW |58865 |1302 |30367 |
-ROW |58866 |1302 |30368 |
-ROW |58867 |1302 |30369 |
-ROW |58868 |1302 |30370 |
-ROW |58869 |1302 |30371 |
-ROW |58870 |1302 |30372 |
-ROW |58871 |1302 |30373 |
-ROW |58872 |1302 |30374 |
-ROW |58873 |1302 |30375 |
-ROW |58874 |1302 |30376 |
-ROW |58875 |1302 |30377 |
-ROW |58876 |1302 |30378 |
-ROW |58877 |1302 |30379 |
-ROW |58878 |1302 |30380 |
-ROW |58879 |1302 |30381 |
-ROW |58880 |1302 |30382 |
-ROW |58881 |1302 |30383 |
-ROW |58882 |1302 |30384 |
-ROW |58883 |1302 |30385 |
-ROW |58884 |1302 |30386 |
-ROW |58885 |1302 |30387 |
-ROW |58886 |1302 |30388 |
-ROW |58887 |1302 |30389 |
-ROW |58888 |1302 |30390 |
-ROW |58889 |1302 |30391 |
-ROW |58890 |1302 |30392 |
-ROW |58891 |1302 |30393 |
-ROW |58892 |1302 |30394 |
-ROW |58893 |1302 |30395 |
-ROW |58894 |1302 |30397 |
-ROW |58895 |1302 |30398 |
-ROW |58896 |1302 |30399 |
-ROW |58897 |1302 |30400 |
-ROW |58898 |1302 |30401 |
-ROW |58899 |1302 |30402 |
-ROW |58900 |1302 |30403 |
-ROW |58901 |1302 |30404 |
-ROW |58902 |780 |27065 |
-ROW |58903 |780 |27066 |
-ROW |58904 |780 |27067 |
-ROW |58905 |797 |27138 |
-ROW |58906 |797 |27139 |
-ROW |58907 |797 |27140 |
-ROW |58908 |799 |27149 |
-ROW |58909 |799 |27150 |
-ROW |58910 |799 |27151 |
-ROW |58911 |805 |27192 |
-ROW |58912 |805 |27193 |
-ROW |58913 |805 |27194 |
-ROW |58914 |813 |27225 |
-ROW |58915 |813 |27226 |
-ROW |58916 |813 |27227 |
-ROW |58917 |822 |27261 |
-ROW |58918 |822 |27262 |
-ROW |58919 |822 |27263 |
-ROW |58920 |825 |27282 |
-ROW |58921 |825 |27283 |
-ROW |58922 |825 |27284 |
-ROW |58923 |842 |27333 |
-ROW |58924 |842 |27334 |
-ROW |58925 |842 |27335 |
-ROW |58926 |847 |27365 |
-ROW |58927 |847 |27366 |
-ROW |58928 |847 |27367 |
-ROW |58929 |876 |27462 |
-ROW |58930 |876 |27463 |
-ROW |58931 |876 |27464 |
-ROW |58932 |885 |27496 |
-ROW |58933 |885 |27497 |
-ROW |58934 |885 |27498 |
-ROW |58935 |894 |27532 |
-ROW |58936 |894 |27533 |
-ROW |58937 |894 |27534 |
-ROW |58938 |903 |27568 |
-ROW |58939 |903 |27569 |
-ROW |58940 |903 |27570 |
-ROW |58941 |912 |27608 |
-ROW |58942 |912 |27609 |
-ROW |58943 |912 |27610 |
-ROW |58944 |915 |27631 |
-ROW |58945 |915 |27632 |
-ROW |58946 |915 |27633 |
-ROW |58947 |918 |27654 |
-ROW |58948 |918 |27655 |
-ROW |58949 |918 |27656 |
-ROW |58950 |936 |27734 |
-ROW |58951 |936 |27735 |
-ROW |58952 |936 |27736 |
-ROW |58953 |944 |27766 |
-ROW |58954 |944 |27767 |
-ROW |58955 |944 |27768 |
-ROW |58956 |951 |27800 |
-ROW |58957 |951 |27801 |
-ROW |58958 |951 |27802 |
-ROW |58959 |971 |27882 |
-ROW |58960 |971 |27883 |
-ROW |58961 |971 |27884 |
-ROW |58962 |979 |27919 |
-ROW |58963 |979 |27920 |
-ROW |58964 |979 |27921 |
-ROW |58965 |988 |27956 |
-ROW |58966 |988 |27957 |
-ROW |58967 |988 |27958 |
-ROW |58968 |994 |27986 |
-ROW |58969 |994 |27987 |
-ROW |58970 |994 |27988 |
-ROW |58971 |1000 |28015 |
-ROW |58972 |1000 |28016 |
-ROW |58973 |1000 |28017 |
-ROW |58974 |1030 |28130 |
-ROW |58975 |1030 |28131 |
-ROW |58976 |1030 |28132 |
-ROW |58977 |1043 |28185 |
-ROW |58978 |1043 |28186 |
-ROW |58979 |1043 |28187 |
-ROW |58980 |1055 |28233 |
-ROW |58981 |1055 |28234 |
-ROW |58982 |1055 |28235 |
-ROW |58983 |1060 |28282 |
-ROW |58984 |1060 |28283 |
-ROW |58985 |1060 |28284 |
-ROW |58986 |1070 |28330 |
-ROW |58987 |1070 |28331 |
-ROW |58988 |1070 |28332 |
-ROW |58989 |1079 |28377 |
-ROW |58990 |1079 |28378 |
-ROW |58991 |1079 |28379 |
-ROW |58992 |1088 |28426 |
-ROW |58993 |1088 |28427 |
-ROW |58994 |1088 |28428 |
-ROW |58995 |1095 |28454 |
-ROW |58996 |1095 |28455 |
-ROW |58997 |1095 |28456 |
-ROW |58998 |1102 |28482 |
-ROW |58999 |1102 |28483 |
-ROW |59000 |1102 |28484 |
-ROW |59001 |1127 |28957 |
-ROW |59002 |1127 |28958 |
-ROW |59003 |1127 |28959 |
-ROW |59004 |1136 |29050 |
-ROW |59005 |1136 |29051 |
-ROW |59006 |1136 |29052 |
-ROW |59007 |1271 |30046 |
-ROW |59008 |1271 |30047 |
-ROW |59009 |1271 |30048 |
-ROW |59010 |798 |27141 |
-ROW |59011 |797 |27143 |
-ROW |59012 |798 |27146 |
-ROW |59013 |797 |29824 |
-ROW |59014 |798 |29825 |
-ROW |59015 |798 |29826 |
-ROW |59016 |798 |29827 |
-ROW |59017 |798 |29828 |
-ROW |59018 |911 |27611 |
-ROW |59019 |911 |27615 |
-ROW |59020 |912 |27618 |
-ROW |59021 |999 |28018 |
-ROW |59022 |999 |28022 |
-ROW |59023 |1000 |28025 |
-ROW |59024 |1087 |28429 |
-ROW |59025 |1087 |28433 |
-ROW |59026 |1088 |28436 |
-ROW |59027 |912 |29829 |
-ROW |59028 |911 |29830 |
-ROW |59029 |911 |29831 |
-ROW |59030 |911 |29832 |
-ROW |59031 |911 |29833 |
-ROW |59032 |1000 |29834 |
-ROW |59033 |999 |29835 |
-ROW |59034 |999 |29836 |
-ROW |59035 |999 |29837 |
-ROW |59036 |999 |29838 |
-ROW |59037 |1088 |29839 |
-ROW |59038 |1087 |29840 |
-ROW |59039 |1087 |29841 |
-ROW |59040 |1087 |29842 |
-ROW |59041 |1087 |29843 |
-ROW |59042 |800 |27152 |
-ROW |59043 |799 |27154 |
-ROW |59044 |800 |27157 |
-ROW |59045 |799 |29844 |
-ROW |59046 |800 |29845 |
-ROW |59047 |800 |29846 |
-ROW |59048 |800 |29847 |
-ROW |59049 |800 |29848 |
-ROW |59050 |804 |27195 |
-ROW |59051 |804 |27199 |
-ROW |59052 |805 |27202 |
-ROW |59053 |812 |27228 |
-ROW |59054 |812 |27232 |
-ROW |59055 |813 |27235 |
-ROW |59056 |821 |27264 |
-ROW |59057 |821 |27268 |
-ROW |59058 |822 |27271 |
-ROW |59059 |824 |27285 |
-ROW |59060 |824 |27289 |
-ROW |59061 |825 |27292 |
-ROW |59062 |841 |27336 |
-ROW |59063 |841 |27340 |
-ROW |59064 |842 |27343 |
-ROW |59065 |846 |27368 |
-ROW |59066 |846 |27372 |
-ROW |59067 |847 |27375 |
-ROW |59068 |875 |27465 |
-ROW |59069 |875 |27469 |
-ROW |59070 |876 |27472 |
-ROW |59071 |884 |27499 |
-ROW |59072 |884 |27503 |
-ROW |59073 |885 |27506 |
-ROW |59074 |893 |27535 |
-ROW |59075 |893 |27539 |
-ROW |59076 |894 |27542 |
-ROW |59077 |902 |27571 |
-ROW |59078 |902 |27575 |
-ROW |59079 |903 |27578 |
-ROW |59080 |914 |27634 |
-ROW |59081 |914 |27638 |
-ROW |59082 |915 |27641 |
-ROW |59083 |917 |27657 |
-ROW |59084 |917 |27661 |
-ROW |59085 |918 |27664 |
-ROW |59086 |935 |27737 |
-ROW |59087 |935 |27741 |
-ROW |59088 |936 |27744 |
-ROW |59089 |943 |27769 |
-ROW |59090 |943 |27773 |
-ROW |59091 |944 |27776 |
-ROW |59092 |950 |27803 |
-ROW |59093 |950 |27807 |
-ROW |59094 |951 |27810 |
-ROW |59095 |970 |27885 |
-ROW |59096 |970 |27889 |
-ROW |59097 |971 |27892 |
-ROW |59098 |978 |27922 |
-ROW |59099 |978 |27926 |
-ROW |59100 |979 |27929 |
-ROW |59101 |987 |27959 |
-ROW |59102 |987 |27963 |
-ROW |59103 |988 |27966 |
-ROW |59104 |993 |27989 |
-ROW |59105 |993 |27993 |
-ROW |59106 |994 |27996 |
-ROW |59107 |1029 |28133 |
-ROW |59108 |1029 |28137 |
-ROW |59109 |1030 |28140 |
-ROW |59110 |1042 |28188 |
-ROW |59111 |1042 |28192 |
-ROW |59112 |1043 |28195 |
-ROW |59113 |1054 |28236 |
-ROW |59114 |1054 |28240 |
-ROW |59115 |1055 |28243 |
-ROW |59116 |1059 |28285 |
-ROW |59117 |1059 |28289 |
-ROW |59118 |1060 |28292 |
-ROW |59119 |1069 |28333 |
-ROW |59120 |1069 |28337 |
-ROW |59121 |1070 |28340 |
-ROW |59122 |1078 |28380 |
-ROW |59123 |1078 |28384 |
-ROW |59124 |1079 |28387 |
-ROW |59125 |1094 |28457 |
-ROW |59126 |1094 |28461 |
-ROW |59127 |1095 |28464 |
-ROW |59128 |1101 |28485 |
-ROW |59129 |1101 |28489 |
-ROW |59130 |1102 |28492 |
-ROW |59131 |1126 |28960 |
-ROW |59132 |1126 |28964 |
-ROW |59133 |1127 |28967 |
-ROW |59134 |1135 |29053 |
-ROW |59135 |1135 |29057 |
-ROW |59136 |1136 |29060 |
-ROW |59137 |805 |29849 |
-ROW |59138 |804 |29850 |
-ROW |59139 |804 |29851 |
-ROW |59140 |804 |29852 |
-ROW |59141 |804 |29853 |
-ROW |59142 |813 |29854 |
-ROW |59143 |812 |29855 |
-ROW |59144 |812 |29856 |
-ROW |59145 |812 |29857 |
-ROW |59146 |812 |29858 |
-ROW |59147 |822 |29859 |
-ROW |59148 |821 |29860 |
-ROW |59149 |821 |29861 |
-ROW |59150 |821 |29862 |
-ROW |59151 |821 |29863 |
-ROW |59152 |825 |29864 |
-ROW |59153 |824 |29865 |
-ROW |59154 |824 |29866 |
-ROW |59155 |824 |29867 |
-ROW |59156 |824 |29868 |
-ROW |59157 |842 |29869 |
-ROW |59158 |841 |29870 |
-ROW |59159 |841 |29871 |
-ROW |59160 |841 |29872 |
-ROW |59161 |841 |29873 |
-ROW |59162 |847 |29874 |
-ROW |59163 |846 |29875 |
-ROW |59164 |846 |29876 |
-ROW |59165 |846 |29877 |
-ROW |59166 |846 |29878 |
-ROW |59167 |876 |29879 |
-ROW |59168 |875 |29880 |
-ROW |59169 |875 |29881 |
-ROW |59170 |875 |29882 |
-ROW |59171 |875 |29883 |
-ROW |59172 |885 |29884 |
-ROW |59173 |884 |29885 |
-ROW |59174 |884 |29886 |
-ROW |59175 |884 |29887 |
-ROW |59176 |884 |29888 |
-ROW |59177 |894 |29889 |
-ROW |59178 |893 |29890 |
-ROW |59179 |893 |29891 |
-ROW |59180 |893 |29892 |
-ROW |59181 |893 |29893 |
-ROW |59182 |903 |29894 |
-ROW |59183 |902 |29895 |
-ROW |59184 |902 |29896 |
-ROW |59185 |902 |29897 |
-ROW |59186 |902 |29898 |
-ROW |59187 |915 |29899 |
-ROW |59188 |914 |29900 |
-ROW |59189 |914 |29901 |
-ROW |59190 |914 |29902 |
-ROW |59191 |914 |29903 |
-ROW |59192 |918 |29904 |
-ROW |59193 |917 |29905 |
-ROW |59194 |917 |29906 |
-ROW |59195 |917 |29907 |
-ROW |59196 |917 |29908 |
-ROW |59197 |936 |29909 |
-ROW |59198 |935 |29910 |
-ROW |59199 |935 |29911 |
-ROW |59200 |935 |29912 |
-ROW |59201 |935 |29913 |
-ROW |59202 |944 |29914 |
-ROW |59203 |943 |29915 |
-ROW |59204 |943 |29916 |
-ROW |59205 |943 |29917 |
-ROW |59206 |943 |29918 |
-ROW |59207 |951 |29919 |
-ROW |59208 |950 |29920 |
-ROW |59209 |950 |29921 |
-ROW |59210 |950 |29922 |
-ROW |59211 |950 |29923 |
-ROW |59212 |971 |29924 |
-ROW |59213 |970 |29925 |
-ROW |59214 |970 |29926 |
-ROW |59215 |970 |29927 |
-ROW |59216 |970 |29928 |
-ROW |59217 |979 |29929 |
-ROW |59218 |978 |29930 |
-ROW |59219 |978 |29931 |
-ROW |59220 |978 |29932 |
-ROW |59221 |978 |29933 |
-ROW |59222 |988 |29934 |
-ROW |59223 |987 |29935 |
-ROW |59224 |987 |29936 |
-ROW |59225 |987 |29937 |
-ROW |59226 |987 |29938 |
-ROW |59227 |994 |29939 |
-ROW |59228 |993 |29940 |
-ROW |59229 |993 |29941 |
-ROW |59230 |993 |29942 |
-ROW |59231 |993 |29943 |
-ROW |59232 |1030 |29944 |
-ROW |59233 |1029 |29945 |
-ROW |59234 |1029 |29946 |
-ROW |59235 |1029 |29947 |
-ROW |59236 |1029 |29948 |
-ROW |59237 |1043 |29949 |
-ROW |59238 |1042 |29950 |
-ROW |59239 |1042 |29951 |
-ROW |59240 |1042 |29952 |
-ROW |59241 |1042 |29953 |
-ROW |59242 |1055 |29954 |
-ROW |59243 |1054 |29955 |
-ROW |59244 |1054 |29956 |
-ROW |59245 |1054 |29957 |
-ROW |59246 |1054 |29958 |
-ROW |59247 |1060 |29959 |
-ROW |59248 |1059 |29960 |
-ROW |59249 |1059 |29961 |
-ROW |59250 |1059 |29962 |
-ROW |59251 |1059 |29963 |
-ROW |59252 |1070 |29964 |
-ROW |59253 |1069 |29965 |
-ROW |59254 |1069 |29966 |
-ROW |59255 |1069 |29967 |
-ROW |59256 |1069 |29968 |
-ROW |59257 |1079 |29969 |
-ROW |59258 |1078 |29970 |
-ROW |59259 |1078 |29971 |
-ROW |59260 |1078 |29972 |
-ROW |59261 |1078 |29973 |
-ROW |59262 |1095 |29974 |
-ROW |59263 |1094 |29975 |
-ROW |59264 |1094 |29976 |
-ROW |59265 |1094 |29977 |
-ROW |59266 |1094 |29978 |
-ROW |59267 |1102 |29979 |
-ROW |59268 |1101 |29980 |
-ROW |59269 |1101 |29981 |
-ROW |59270 |1101 |29982 |
-ROW |59271 |1101 |29983 |
-ROW |59272 |1127 |29984 |
-ROW |59273 |1126 |29985 |
-ROW |59274 |1126 |29986 |
-ROW |59275 |1126 |29987 |
-ROW |59276 |1126 |29988 |
-ROW |59277 |1136 |29989 |
-ROW |59278 |1135 |29990 |
-ROW |59279 |1135 |29991 |
-ROW |59280 |1135 |29992 |
-ROW |59281 |1135 |29993 |
-ROW |59282 |1270 |30049 |
-ROW |59283 |1270 |30050 |
-ROW |59284 |1270 |30051 |
-ROW |59285 |1270 |30052 |
-ROW |59286 |1270 |30053 |
-ROW |59287 |1270 |30054 |
-ROW |59288 |1271 |30055 |
-ROW |59289 |1271 |30056 |
-ROW |59290 |1304 |30405 |
-ROW |59291 |1307 |30406 |
-ROW |59292 |1305 |30411 |
-ROW |59293 |1305 |30412 |
-ROW |59294 |1305 |30413 |
-ROW |59295 |1308 |30417 |
-ROW |59296 |1308 |30418 |
-ROW |59297 |1308 |30419 |
-ROW |59298 |1283 |30142 |
-ROW |59299 |1286 |30143 |
-ROW |59300 |1289 |30144 |
-ROW |59301 |1292 |30145 |
-ROW |59302 |1295 |30146 |
-ROW |59303 |1284 |30157 |
-ROW |59304 |1284 |30158 |
-ROW |59305 |1284 |30159 |
-ROW |59306 |1287 |30163 |
-ROW |59307 |1287 |30164 |
-ROW |59308 |1287 |30165 |
-ROW |59309 |1290 |30169 |
-ROW |59310 |1290 |30170 |
-ROW |59311 |1290 |30171 |
-ROW |59312 |1293 |30175 |
-ROW |59313 |1293 |30176 |
-ROW |59314 |1293 |30177 |
-ROW |59315 |1296 |30181 |
-ROW |59316 |1296 |30182 |
-ROW |59317 |1296 |30183 |
-ROW |59318 |1221 |22231 |
-ROW |59319 |1221 |22232 |
-ROW |59320 |1221 |23318 |
-ROW |59321 |1222 |29544 |
-ROW |59322 |1223 |29545 |
-ROW |59323 |1223 |29546 |
-ROW |59324 |1224 |29547 |
-ROW |59325 |1225 |10020 |
-ROW |59326 |1225 |10059 |
-ROW |59327 |1226 |22833 |
-ROW |59328 |1226 |22834 |
-ROW |59329 |1228 |22873 |
-ROW |59330 |1228 |22874 |
-ROW |59331 |1230 |22913 |
-ROW |59332 |1230 |22914 |
-ROW |59333 |1232 |22953 |
-ROW |59334 |1232 |22954 |
-ROW |59335 |1234 |22993 |
-ROW |59336 |1234 |22994 |
-ROW |59337 |1236 |23033 |
-ROW |59338 |1236 |23034 |
-ROW |59339 |1238 |23160 |
-ROW |59340 |1238 |23161 |
-ROW |59341 |1225 |23319 |
-ROW |59342 |1226 |23320 |
-ROW |59343 |1228 |23321 |
-ROW |59344 |1230 |23322 |
-ROW |59345 |1232 |23323 |
-ROW |59346 |1234 |23324 |
-ROW |59347 |1236 |23325 |
-ROW |59348 |1238 |23326 |
-ROW |59349 |1161 |29548 |
-ROW |59350 |1227 |29549 |
-ROW |59351 |1229 |29550 |
-ROW |59352 |1231 |29551 |
-ROW |59353 |1233 |29552 |
-ROW |59354 |1235 |29553 |
-ROW |59355 |1237 |29554 |
-ROW |59356 |1219 |29555 |
-ROW |59357 |1241 |29558 |
-ROW |59358 |1242 |29559 |
-ROW |59359 |1241 |29560 |
-ROW |59360 |1269 |29995 |
-ROW |59361 |1192 |29996 |
-ROW |59362 |1269 |29997 |
-ROW |59363 |1240 |23287 |
-ROW |59364 |1240 |23288 |
-ROW |59365 |1240 |23327 |
-ROW |59366 |1171 |29557 |
-ROW |59367 |810 |27203 |
-ROW |59368 |807 |27207 |
-ROW |59369 |806 |27208 |
-ROW |59370 |810 |30086 |
-ROW |59371 |807 |30087 |
-ROW |59372 |807 |30088 |
-ROW |59373 |807 |30089 |
-ROW |59374 |808 |27212 |
-ROW |59375 |809 |27213 |
-ROW |59376 |810 |27214 |
-ROW |59377 |1279 |30091 |
-ROW |59378 |1279 |30092 |
-ROW |59379 |1068 |28323 |
-ROW |59380 |1068 |28324 |
-ROW |59381 |1062 |28325 |
-ROW |59382 |1062 |28326 |
-ROW |59383 |1064 |28327 |
-ROW |59384 |1064 |28328 |
-ROW |59385 |1066 |28329 |
-ROW |59386 |819 |27236 |
-ROW |59387 |819 |27237 |
-ROW |59388 |813 |27238 |
-ROW |59389 |814 |27240 |
-ROW |59390 |815 |30093 |
-ROW |59391 |816 |27246 |
-ROW |59392 |816 |27247 |
-ROW |59393 |817 |27248 |
-ROW |59394 |818 |27249 |
-ROW |59395 |818 |27250 |
-ROW |59396 |826 |27294 |
-ROW |59397 |831 |27295 |
-ROW |59398 |831 |27296 |
-ROW |59399 |835 |27297 |
-ROW |59400 |827 |30094 |
-ROW |59401 |836 |27299 |
-ROW |59402 |838 |27301 |
-ROW |59403 |837 |30095 |
-ROW |59404 |839 |30096 |
-ROW |59405 |829 |27312 |
-ROW |59406 |830 |27313 |
-ROW |59407 |828 |27314 |
-ROW |59408 |828 |27315 |
-ROW |59409 |833 |27316 |
-ROW |59410 |834 |27317 |
-ROW |59411 |832 |27318 |
-ROW |59412 |835 |27319 |
-ROW |59413 |835 |27320 |
-ROW |59414 |851 |27376 |
-ROW |59415 |852 |27378 |
-ROW |59416 |852 |27379 |
-ROW |59417 |852 |30097 |
-ROW |59418 |869 |27380 |
-ROW |59419 |870 |27382 |
-ROW |59420 |870 |27383 |
-ROW |59421 |858 |27385 |
-ROW |59422 |858 |27386 |
-ROW |59423 |1048 |28209 |
-ROW |59424 |1048 |28210 |
-ROW |59425 |858 |30098 |
-ROW |59426 |870 |30099 |
-ROW |59427 |1048 |30100 |
-ROW |59428 |848 |27415 |
-ROW |59429 |848 |27416 |
-ROW |59430 |849 |27417 |
-ROW |59431 |852 |27419 |
-ROW |59432 |853 |27420 |
-ROW |59433 |853 |27421 |
-ROW |59434 |854 |27422 |
-ROW |59435 |855 |27423 |
-ROW |59436 |1056 |28246 |
-ROW |59437 |848 |30101 |
-ROW |59438 |856 |27425 |
-ROW |59439 |856 |27426 |
-ROW |59440 |857 |27427 |
-ROW |59441 |858 |27428 |
-ROW |59442 |859 |27429 |
-ROW |59443 |859 |27430 |
-ROW |59444 |860 |27431 |
-ROW |59445 |861 |27432 |
-ROW |59446 |868 |27443 |
-ROW |59447 |868 |27444 |
-ROW |59448 |870 |27445 |
-ROW |59449 |871 |27446 |
-ROW |59450 |871 |27447 |
-ROW |59451 |872 |27448 |
-ROW |59452 |873 |27449 |
-ROW |59453 |1048 |28208 |
-ROW |59454 |1049 |28215 |
-ROW |59455 |1050 |28216 |
-ROW |59456 |1051 |28217 |
-ROW |59457 |1051 |28218 |
-ROW |59458 |1052 |28220 |
-ROW |59459 |1052 |28222 |
-ROW |59460 |1057 |28247 |
-ROW |59461 |856 |30102 |
-ROW |59462 |868 |30103 |
-ROW |59463 |1052 |30104 |
-ROW |59464 |877 |27478 |
-ROW |59465 |880 |27479 |
-ROW |59466 |881 |27480 |
-ROW |59467 |882 |27481 |
-ROW |59468 |882 |27482 |
-ROW |59469 |882 |27483 |
-ROW |59470 |882 |27484 |
-ROW |59471 |879 |27485 |
-ROW |59472 |878 |30105 |
-ROW |59473 |891 |27508 |
-ROW |59474 |891 |27509 |
-ROW |59475 |891 |27510 |
-ROW |59476 |886 |27511 |
-ROW |59477 |891 |30106 |
-ROW |59478 |888 |27517 |
-ROW |59479 |890 |27518 |
-ROW |59480 |889 |27519 |
-ROW |59481 |887 |30107 |
-ROW |59482 |900 |27543 |
-ROW |59483 |900 |27544 |
-ROW |59484 |900 |27545 |
-ROW |59485 |900 |27546 |
-ROW |59486 |895 |27547 |
-ROW |59487 |897 |27553 |
-ROW |59488 |899 |27554 |
-ROW |59489 |898 |27555 |
-ROW |59490 |896 |30108 |
-ROW |59491 |909 |27579 |
-ROW |59492 |909 |27580 |
-ROW |59493 |909 |27582 |
-ROW |59494 |909 |27583 |
-ROW |59495 |906 |27584 |
-ROW |59496 |906 |27585 |
-ROW |59497 |904 |27586 |
-ROW |59498 |909 |30109 |
-ROW |59499 |905 |27591 |
-ROW |59500 |907 |27593 |
-ROW |59501 |908 |27594 |
-ROW |59502 |908 |27595 |
-ROW |59503 |905 |30110 |
-ROW |59504 |905 |30111 |
-ROW |59505 |919 |27671 |
-ROW |59506 |921 |27672 |
-ROW |59507 |922 |27673 |
-ROW |59508 |923 |27674 |
-ROW |59509 |924 |27675 |
-ROW |59510 |924 |27676 |
-ROW |59511 |924 |27677 |
-ROW |59512 |924 |27678 |
-ROW |59513 |924 |27679 |
-ROW |59514 |920 |30112 |
-ROW |59515 |1036 |28141 |
-ROW |59516 |1036 |28142 |
-ROW |59517 |1031 |28143 |
-ROW |59518 |1033 |28150 |
-ROW |59519 |1032 |28153 |
-ROW |59520 |1034 |28154 |
-ROW |59521 |1035 |28155 |
-ROW |59522 |1033 |28156 |
-ROW |59523 |1036 |28157 |
-ROW |59524 |1036 |28158 |
-ROW |59525 |1032 |30113 |
-ROW |59526 |1032 |30114 |
-ROW |59527 |1032 |30115 |
-ROW |59528 |941 |27748 |
-ROW |59529 |941 |27749 |
-ROW |59530 |941 |27750 |
-ROW |59531 |939 |27751 |
-ROW |59532 |937 |27753 |
-ROW |59533 |941 |27754 |
-ROW |59534 |940 |27755 |
-ROW |59535 |938 |30116 |
-ROW |59536 |948 |27777 |
-ROW |59537 |948 |27778 |
-ROW |59538 |945 |27783 |
-ROW |59539 |945 |27784 |
-ROW |59540 |948 |27785 |
-ROW |59541 |946 |27786 |
-ROW |59542 |947 |27787 |
-ROW |59543 |957 |27812 |
-ROW |59544 |957 |27813 |
-ROW |59545 |951 |27814 |
-ROW |59546 |957 |30117 |
-ROW |59547 |954 |27821 |
-ROW |59548 |956 |27822 |
-ROW |59549 |955 |27823 |
-ROW |59550 |952 |28894 |
-ROW |59551 |953 |30118 |
-ROW |59552 |1044 |28200 |
-ROW |59553 |1044 |28201 |
-ROW |59554 |1045 |28202 |
-ROW |59555 |1045 |28203 |
-ROW |59556 |1047 |28204 |
-ROW |59557 |1047 |28205 |
-ROW |59558 |1046 |28206 |
-ROW |59559 |976 |27893 |
-ROW |59560 |976 |27894 |
-ROW |59561 |976 |27895 |
-ROW |59562 |974 |27897 |
-ROW |59563 |973 |27898 |
-ROW |59564 |973 |27900 |
-ROW |59565 |976 |30119 |
-ROW |59566 |973 |30120 |
-ROW |59567 |972 |27904 |
-ROW |59568 |974 |27905 |
-ROW |59569 |975 |27906 |
-ROW |59570 |975 |27907 |
-ROW |59571 |975 |27908 |
-ROW |59572 |985 |27930 |
-ROW |59573 |985 |27931 |
-ROW |59574 |981 |27935 |
-ROW |59575 |980 |27936 |
-ROW |59576 |985 |30121 |
-ROW |59577 |981 |30122 |
-ROW |59578 |981 |30123 |
-ROW |59579 |982 |27940 |
-ROW |59580 |982 |27941 |
-ROW |59581 |984 |27942 |
-ROW |59582 |983 |27943 |
-ROW |59583 |991 |27967 |
-ROW |59584 |991 |27968 |
-ROW |59585 |991 |27970 |
-ROW |59586 |991 |27971 |
-ROW |59587 |990 |27972 |
-ROW |59588 |990 |27973 |
-ROW |59589 |989 |27975 |
-ROW |59590 |1282 |30124 |
-ROW |59591 |991 |30125 |
-ROW |59592 |990 |30126 |
-ROW |59593 |1280 |30129 |
-ROW |59594 |1281 |30130 |
-ROW |59595 |997 |27997 |
-ROW |59596 |997 |27998 |
-ROW |59597 |997 |27999 |
-ROW |59598 |997 |28000 |
-ROW |59599 |995 |28003 |
-ROW |59600 |996 |30131 |
-ROW |59601 |1003 |28026 |
-ROW |59602 |1003 |28027 |
-ROW |59603 |1001 |28031 |
-ROW |59604 |1002 |30132 |
-ROW |59605 |1002 |30133 |
-ROW |59606 |1002 |30134 |
-ROW |59607 |1002 |30135 |
-ROW |59608 |1002 |30136 |
-ROW |59609 |1142 |29087 |
-ROW |59610 |1142 |29088 |
-ROW |59611 |1142 |29089 |
-ROW |59612 |1142 |29090 |
-ROW |59613 |1142 |29091 |
-ROW |59614 |1142 |29092 |
-ROW |59615 |1142 |29093 |
-ROW |59616 |1142 |29094 |
-ROW |59617 |1142 |29095 |
-ROW |59618 |1142 |29096 |
-ROW |59619 |1142 |29097 |
-ROW |59620 |1142 |29098 |
-ROW |59621 |1142 |29099 |
-ROW |59622 |1142 |29100 |
-ROW |59623 |1142 |29101 |
-ROW |59624 |1142 |29102 |
-ROW |59625 |1144 |29103 |
-ROW |59626 |1144 |29104 |
-ROW |59627 |1144 |29105 |
-ROW |59628 |1144 |29106 |
-ROW |59629 |1144 |29107 |
-ROW |59630 |1144 |29108 |
-ROW |59631 |1146 |29109 |
-ROW |59632 |1151 |29110 |
-ROW |59633 |1148 |29111 |
-ROW |59634 |1148 |29112 |
-ROW |59635 |1148 |29113 |
-ROW |59636 |1148 |29114 |
-ROW |59637 |1148 |29115 |
-ROW |59638 |1148 |29116 |
-ROW |59639 |1148 |29117 |
-ROW |59640 |1148 |29118 |
-ROW |59641 |1148 |29119 |
-ROW |59642 |1150 |29120 |
-ROW |59643 |1149 |29121 |
-ROW |59644 |1149 |29122 |
-ROW |59645 |1149 |29123 |
-ROW |59646 |1152 |29124 |
-ROW |59647 |1152 |29125 |
-ROW |59648 |1152 |29126 |
-ROW |59649 |1152 |29127 |
-ROW |59650 |1152 |29128 |
-ROW |59651 |1152 |29129 |
-ROW |59652 |1152 |29130 |
-ROW |59653 |1152 |29131 |
-ROW |59654 |1152 |29132 |
-ROW |59655 |1152 |29133 |
-ROW |59656 |1152 |29134 |
-ROW |59657 |1152 |29135 |
-ROW |59658 |1152 |29136 |
-ROW |59659 |1152 |29137 |
-ROW |59660 |1152 |29138 |
-ROW |59661 |1152 |29139 |
-ROW |59662 |1154 |29140 |
-ROW |59663 |1154 |29141 |
-ROW |59664 |1154 |29142 |
-ROW |59665 |1154 |29143 |
-ROW |59666 |1154 |29144 |
-ROW |59667 |1154 |29145 |
-ROW |59668 |1156 |29146 |
-ROW |59669 |1161 |29147 |
-ROW |59670 |1158 |29148 |
-ROW |59671 |1158 |29149 |
-ROW |59672 |1158 |29150 |
-ROW |59673 |1158 |29151 |
-ROW |59674 |1158 |29152 |
-ROW |59675 |1158 |29153 |
-ROW |59676 |1158 |29154 |
-ROW |59677 |1158 |29155 |
-ROW |59678 |1158 |29156 |
-ROW |59679 |1160 |29157 |
-ROW |59680 |1159 |29158 |
-ROW |59681 |1159 |29159 |
-ROW |59682 |1159 |29160 |
-ROW |59683 |1162 |29161 |
-ROW |59684 |1162 |29162 |
-ROW |59685 |1162 |29163 |
-ROW |59686 |1162 |29164 |
-ROW |59687 |1162 |29165 |
-ROW |59688 |1162 |29166 |
-ROW |59689 |1162 |29167 |
-ROW |59690 |1162 |29168 |
-ROW |59691 |1162 |29169 |
-ROW |59692 |1162 |29170 |
-ROW |59693 |1162 |29171 |
-ROW |59694 |1162 |29172 |
-ROW |59695 |1162 |29173 |
-ROW |59696 |1162 |29174 |
-ROW |59697 |1162 |29175 |
-ROW |59698 |1162 |29176 |
-ROW |59699 |1164 |29177 |
-ROW |59700 |1164 |29178 |
-ROW |59701 |1164 |29179 |
-ROW |59702 |1164 |29180 |
-ROW |59703 |1164 |29181 |
-ROW |59704 |1164 |29182 |
-ROW |59705 |1166 |29183 |
-ROW |59706 |1171 |29184 |
-ROW |59707 |1168 |29185 |
-ROW |59708 |1168 |29186 |
-ROW |59709 |1168 |29187 |
-ROW |59710 |1168 |29188 |
-ROW |59711 |1168 |29189 |
-ROW |59712 |1168 |29190 |
-ROW |59713 |1168 |29191 |
-ROW |59714 |1168 |29192 |
-ROW |59715 |1168 |29193 |
-ROW |59716 |1170 |29194 |
-ROW |59717 |1169 |29195 |
-ROW |59718 |1169 |29196 |
-ROW |59719 |1169 |29197 |
-ROW |59720 |1142 |29198 |
-ROW |59721 |1152 |29199 |
-ROW |59722 |1162 |29200 |
-ROW |59723 |1146 |29254 |
-ROW |59724 |1146 |29255 |
-ROW |59725 |1156 |29260 |
-ROW |59726 |1156 |29261 |
-ROW |59727 |1166 |29266 |
-ROW |59728 |1166 |29267 |
-ROW |59729 |1173 |29273 |
-ROW |59730 |1173 |29274 |
-ROW |59731 |1173 |29275 |
-ROW |59732 |1173 |29276 |
-ROW |59733 |1173 |29277 |
-ROW |59734 |1173 |29278 |
-ROW |59735 |1173 |29279 |
-ROW |59736 |1173 |29280 |
-ROW |59737 |1173 |29281 |
-ROW |59738 |1173 |29282 |
-ROW |59739 |1173 |29283 |
-ROW |59740 |1173 |29284 |
-ROW |59741 |1173 |29285 |
-ROW |59742 |1173 |29286 |
-ROW |59743 |1173 |29287 |
-ROW |59744 |1173 |29288 |
-ROW |59745 |1175 |29289 |
-ROW |59746 |1175 |29290 |
-ROW |59747 |1175 |29291 |
-ROW |59748 |1175 |29292 |
-ROW |59749 |1175 |29293 |
-ROW |59750 |1175 |29294 |
-ROW |59751 |1177 |29295 |
-ROW |59752 |1182 |29296 |
-ROW |59753 |1179 |29297 |
-ROW |59754 |1179 |29298 |
-ROW |59755 |1179 |29299 |
-ROW |59756 |1179 |29300 |
-ROW |59757 |1179 |29301 |
-ROW |59758 |1179 |29302 |
-ROW |59759 |1179 |29303 |
-ROW |59760 |1179 |29304 |
-ROW |59761 |1179 |29305 |
-ROW |59762 |1181 |29306 |
-ROW |59763 |1180 |29307 |
-ROW |59764 |1180 |29308 |
-ROW |59765 |1180 |29309 |
-ROW |59766 |1183 |29310 |
-ROW |59767 |1183 |29311 |
-ROW |59768 |1183 |29312 |
-ROW |59769 |1183 |29313 |
-ROW |59770 |1183 |29314 |
-ROW |59771 |1183 |29315 |
-ROW |59772 |1183 |29316 |
-ROW |59773 |1183 |29317 |
-ROW |59774 |1183 |29318 |
-ROW |59775 |1183 |29319 |
-ROW |59776 |1183 |29320 |
-ROW |59777 |1183 |29321 |
-ROW |59778 |1183 |29322 |
-ROW |59779 |1183 |29323 |
-ROW |59780 |1183 |29324 |
-ROW |59781 |1183 |29325 |
-ROW |59782 |1185 |29326 |
-ROW |59783 |1185 |29327 |
-ROW |59784 |1185 |29328 |
-ROW |59785 |1185 |29329 |
-ROW |59786 |1185 |29330 |
-ROW |59787 |1185 |29331 |
-ROW |59788 |1187 |29332 |
-ROW |59789 |1192 |29333 |
-ROW |59790 |1189 |29334 |
-ROW |59791 |1189 |29335 |
-ROW |59792 |1189 |29336 |
-ROW |59793 |1189 |29337 |
-ROW |59794 |1189 |29338 |
-ROW |59795 |1189 |29339 |
-ROW |59796 |1189 |29340 |
-ROW |59797 |1189 |29341 |
-ROW |59798 |1189 |29342 |
-ROW |59799 |1191 |29343 |
-ROW |59800 |1190 |29344 |
-ROW |59801 |1190 |29345 |
-ROW |59802 |1190 |29346 |
-ROW |59803 |1173 |29347 |
-ROW |59804 |1183 |29348 |
-ROW |59805 |1177 |29385 |
-ROW |59806 |1177 |29386 |
-ROW |59807 |1187 |29391 |
-ROW |59808 |1187 |29392 |
-ROW |59809 |1201 |29395 |
-ROW |59810 |1196 |29396 |
-ROW |59811 |1196 |29397 |
-ROW |59812 |1194 |29398 |
-ROW |59813 |1193 |29399 |
-ROW |59814 |1196 |29400 |
-ROW |59815 |1196 |29401 |
-ROW |59816 |1196 |29402 |
-ROW |59817 |1196 |29403 |
-ROW |59818 |1194 |29404 |
-ROW |59819 |1193 |29405 |
-ROW |59820 |1193 |29406 |
-ROW |59821 |1193 |29407 |
-ROW |59822 |1193 |29408 |
-ROW |59823 |1193 |29409 |
-ROW |59824 |1193 |29410 |
-ROW |59825 |1193 |29411 |
-ROW |59826 |1193 |29412 |
-ROW |59827 |1193 |29413 |
-ROW |59828 |1194 |29414 |
-ROW |59829 |1197 |29415 |
-ROW |59830 |1193 |29416 |
-ROW |59831 |1193 |29417 |
-ROW |59832 |1193 |29418 |
-ROW |59833 |1193 |29419 |
-ROW |59834 |1193 |29420 |
-ROW |59835 |1199 |29421 |
-ROW |59836 |1195 |29422 |
-ROW |59837 |1194 |29423 |
-ROW |59838 |1194 |29424 |
-ROW |59839 |1194 |29425 |
-ROW |59840 |1193 |29426 |
-ROW |59841 |1193 |29427 |
-ROW |59842 |1195 |29428 |
-ROW |59843 |1201 |29450 |
-ROW |59844 |1201 |29451 |
-ROW |59845 |1128 |28978 |
-ROW |59846 |1128 |28979 |
-ROW |59847 |1128 |28980 |
-ROW |59848 |1128 |28981 |
-ROW |59849 |1128 |28982 |
-ROW |59850 |1128 |28983 |
-ROW |59851 |1128 |28984 |
-ROW |59852 |1128 |28985 |
-ROW |59853 |1128 |28986 |
-ROW |59854 |1130 |28987 |
-ROW |59855 |1130 |28988 |
-ROW |59856 |1130 |28989 |
-ROW |59857 |1130 |28990 |
-ROW |59858 |1130 |28991 |
-ROW |59859 |1130 |28992 |
-ROW |59860 |1132 |28993 |
-ROW |59861 |1132 |28994 |
-ROW |59862 |1132 |28995 |
-ROW |59863 |1132 |28996 |
-ROW |59864 |1132 |28997 |
-ROW |59865 |1132 |28998 |
-ROW |59866 |1132 |28999 |
-ROW |59867 |1132 |29000 |
-ROW |59868 |1132 |29001 |
-ROW |59869 |1134 |29002 |
-ROW |59870 |1134 |29003 |
-ROW |59871 |1134 |29004 |
-ROW |59872 |1134 |29005 |
-ROW |59873 |1134 |29006 |
-ROW |59874 |1134 |29007 |
-ROW |59875 |1130 |29017 |
-ROW |59876 |1130 |29018 |
-ROW |59877 |1130 |29019 |
-ROW |59878 |1130 |29020 |
-ROW |59879 |1130 |29021 |
-ROW |59880 |1130 |29022 |
-ROW |59881 |1130 |29023 |
-ROW |59882 |1130 |29024 |
-ROW |59883 |1130 |29025 |
-ROW |59884 |1130 |29026 |
-ROW |59885 |1134 |29034 |
-ROW |59886 |1134 |29035 |
-ROW |59887 |1134 |29036 |
-ROW |59888 |1134 |29037 |
-ROW |59889 |1134 |29038 |
-ROW |59890 |1134 |29039 |
-ROW |59891 |1134 |29040 |
-ROW |59892 |1134 |29041 |
-ROW |59893 |1134 |29042 |
-ROW |59894 |1134 |29043 |
-ROW |59895 |1130 |29048 |
-ROW |59896 |1134 |29049 |
-ROW |59897 |1202 |29454 |
-ROW |59898 |1202 |29455 |
-ROW |59899 |1202 |29456 |
-ROW |59900 |1202 |29457 |
-ROW |59901 |1202 |29458 |
-ROW |59902 |1202 |29459 |
-ROW |59903 |1203 |29460 |
-ROW |59904 |1203 |29461 |
-ROW |59905 |1203 |29462 |
-ROW |59906 |1203 |29463 |
-ROW |59907 |1203 |29464 |
-ROW |59908 |1203 |29465 |
-ROW |59909 |1203 |29466 |
-ROW |59910 |1203 |29467 |
-ROW |59911 |1203 |29468 |
-ROW |59912 |1203 |29469 |
-ROW |59913 |1203 |29470 |
-ROW |59914 |1206 |29471 |
-ROW |59915 |1209 |29472 |
-ROW |59916 |1207 |29473 |
-ROW |59917 |1207 |29474 |
-ROW |59918 |1207 |29475 |
-ROW |59919 |1207 |29476 |
-ROW |59920 |1207 |29477 |
-ROW |59921 |1208 |29478 |
-ROW |59922 |1211 |29479 |
-ROW |59923 |1202 |30137 |
-ROW |59924 |1212 |29480 |
-ROW |59925 |1212 |29481 |
-ROW |59926 |1212 |29482 |
-ROW |59927 |1212 |29483 |
-ROW |59928 |1212 |29484 |
-ROW |59929 |1212 |29485 |
-ROW |59930 |1213 |29486 |
-ROW |59931 |1213 |29487 |
-ROW |59932 |1213 |29488 |
-ROW |59933 |1213 |29489 |
-ROW |59934 |1213 |29490 |
-ROW |59935 |1213 |29491 |
-ROW |59936 |1213 |29492 |
-ROW |59937 |1213 |29493 |
-ROW |59938 |1213 |29494 |
-ROW |59939 |1213 |29495 |
-ROW |59940 |1213 |29496 |
-ROW |59941 |1216 |29497 |
-ROW |59942 |1219 |29498 |
-ROW |59943 |1217 |29499 |
-ROW |59944 |1217 |29500 |
-ROW |59945 |1217 |29501 |
-ROW |59946 |1217 |29502 |
-ROW |59947 |1217 |29503 |
-ROW |59948 |1218 |29504 |
-ROW |59949 |1216 |29505 |
-ROW |59950 |1212 |30138 |
-ROW |59951 |1310 |30425 |
-ROW |59952 |1311 |30426 |
-ROW |59953 |1243 |29561 |
-ROW |59954 |1243 |29562 |
-ROW |59955 |1243 |29563 |
-ROW |59956 |1243 |29564 |
-ROW |59957 |1243 |29565 |
-ROW |59958 |1243 |29566 |
-ROW |59959 |1244 |29567 |
-ROW |59960 |1244 |29568 |
-ROW |59961 |1244 |29569 |
-ROW |59962 |1244 |29570 |
-ROW |59963 |1244 |29571 |
-ROW |59964 |1244 |29572 |
-ROW |59965 |1244 |29573 |
-ROW |59966 |1244 |29574 |
-ROW |59967 |1244 |29575 |
-ROW |59968 |1244 |29576 |
-ROW |59969 |1244 |29577 |
-ROW |59970 |1247 |29578 |
-ROW |59971 |1250 |29579 |
-ROW |59972 |1248 |29580 |
-ROW |59973 |1248 |29581 |
-ROW |59974 |1248 |29582 |
-ROW |59975 |1248 |29583 |
-ROW |59976 |1248 |29584 |
-ROW |59977 |1249 |29585 |
-ROW |59978 |1252 |29586 |
-ROW |59979 |1243 |30139 |
-ROW |59980 |1253 |29587 |
-ROW |59981 |1253 |29588 |
-ROW |59982 |1253 |29589 |
-ROW |59983 |1253 |29590 |
-ROW |59984 |1253 |29591 |
-ROW |59985 |1253 |29592 |
-ROW |59986 |1254 |29593 |
-ROW |59987 |1254 |29594 |
-ROW |59988 |1254 |29595 |
-ROW |59989 |1254 |29596 |
-ROW |59990 |1254 |29597 |
-ROW |59991 |1254 |29598 |
-ROW |59992 |1254 |29599 |
-ROW |59993 |1254 |29600 |
-ROW |59994 |1254 |29601 |
-ROW |59995 |1254 |29602 |
-ROW |59996 |1254 |29603 |
-ROW |59997 |1257 |29604 |
-ROW |59998 |1242 |29605 |
-ROW |59999 |1258 |29606 |
-ROW |60000 |1258 |29607 |
-ROW |60001 |1258 |29608 |
-ROW |60002 |1258 |29609 |
-ROW |60003 |1258 |29610 |
-ROW |60004 |1259 |29611 |
-ROW |60005 |1257 |29612 |
-ROW |60006 |1253 |30140 |
-ROW |60007 |1312 |30429 |
-ROW |60008 |1313 |30430 |
-ROW |60009 |1325 |30685 |
-ROW |60010 |1277 |30066 |
-ROW |60011 |1277 |30067 |
-ROW |60012 |1277 |30068 |
-ROW |60013 |1277 |30069 |
-ROW |60014 |1277 |30070 |
-ROW |60015 |1276 |30071 |
-ROW |60016 |1271 |30072 |
-ROW |60017 |1274 |30073 |
-ROW |60018 |1274 |30074 |
-ROW |60019 |1273 |30075 |
-ROW |60020 |1275 |30076 |
-ROW |60021 |1275 |30077 |
-ROW |60022 |1275 |30078 |
-ROW |60023 |1275 |30079 |
-ROW |60024 |1278 |30080 |
-ROW |60025 |1278 |30081 |
-ROW |60026 |1278 |30082 |
-ROW |60027 |1272 |30083 |
-ROW |60028 |1272 |30084 |
-ROW |60029 |1272 |30085 |
-ROW |60030 |1070 |28341 |
-ROW |60031 |1073 |28342 |
-ROW |60032 |1073 |28344 |
-ROW |60033 |1073 |28345 |
-ROW |60034 |1073 |30141 |
-ROW |60035 |1076 |28354 |
-ROW |60036 |1076 |28355 |
-ROW |60037 |1076 |28356 |
-ROW |60038 |1076 |28357 |
-ROW |60039 |1075 |28358 |
-ROW |60040 |1072 |28359 |
-ROW |60041 |1072 |28360 |
-ROW |60042 |1074 |28361 |
-ROW |60043 |1074 |28362 |
-ROW |60044 |1074 |28363 |
-ROW |60045 |1074 |28364 |
-ROW |60046 |1074 |28365 |
-ROW |60047 |1074 |28366 |
-ROW |60048 |1074 |28367 |
-ROW |60049 |1077 |28368 |
-ROW |60050 |1077 |28369 |
-ROW |60051 |1077 |28370 |
-ROW |60052 |1077 |28371 |
-ROW |60053 |1077 |28372 |
-ROW |60054 |1077 |28373 |
-ROW |60055 |1071 |28374 |
-ROW |60056 |1071 |28375 |
-ROW |60057 |1071 |28376 |
-ROW |60058 |1085 |28388 |
-ROW |60059 |1082 |28390 |
-ROW |60060 |1082 |28391 |
-ROW |60061 |1079 |29994 |
-ROW |60062 |1085 |28404 |
-ROW |60063 |1085 |28405 |
-ROW |60064 |1085 |28406 |
-ROW |60065 |1085 |28407 |
-ROW |60066 |1085 |28408 |
-ROW |60067 |1085 |28409 |
-ROW |60068 |1085 |28410 |
-ROW |60069 |1084 |28411 |
-ROW |60070 |1081 |28412 |
-ROW |60071 |1080 |28413 |
-ROW |60072 |1080 |28414 |
-ROW |60073 |1080 |28415 |
-ROW |60074 |1080 |28416 |
-ROW |60075 |1083 |28417 |
-ROW |60076 |1083 |28418 |
-ROW |60077 |1083 |28419 |
-ROW |60078 |1083 |28420 |
-ROW |60079 |1083 |28421 |
-ROW |60080 |1083 |28422 |
-ROW |60081 |1086 |28423 |
-ROW |60082 |1086 |28424 |
-ROW |60083 |1086 |28425 |
-ROW |60084 |1088 |28437 |
-ROW |60085 |1090 |28438 |
-ROW |60086 |1090 |28439 |
-ROW |60087 |1093 |28446 |
-ROW |60088 |1093 |28447 |
-ROW |60089 |1093 |28448 |
-ROW |60090 |1092 |28449 |
-ROW |60091 |1089 |28450 |
-ROW |60092 |1089 |28451 |
-ROW |60093 |1091 |28452 |
-ROW |60094 |1091 |28453 |
-ROW |60095 |1095 |28465 |
-ROW |60096 |1097 |28466 |
-ROW |60097 |1097 |28467 |
-ROW |60098 |1100 |28474 |
-ROW |60099 |1100 |28475 |
-ROW |60100 |1100 |28476 |
-ROW |60101 |1099 |28477 |
-ROW |60102 |1096 |28478 |
-ROW |60103 |1096 |28479 |
-ROW |60104 |1098 |28480 |
-ROW |60105 |1098 |28481 |
-ROW |60106 |1104 |28495 |
-ROW |60107 |1103 |28496 |
+ROW |60108 |1117 |28742 |
+ROW |60109 |1116 |28743 |
+ROW |60110 |1116 |28744 |
+ROW |60111 |1116 |28745 |
+ROW |60112 |1116 |28746 |
+ROW |60113 |1116 |28747 |
+ROW |60114 |1116 |28748 |
+ROW |60115 |1116 |28749 |
+ROW |60116 |1116 |28750 |
+ROW |60117 |1116 |28751 |
+ROW |60118 |1116 |28752 |
+ROW |60119 |1116 |28753 |
+ROW |60120 |1116 |28754 |
+ROW |60121 |1116 |28755 |
+ROW |60122 |1116 |28756 |
+ROW |60123 |1116 |28757 |
+ROW |60124 |1116 |28758 |
+ROW |60125 |1116 |28759 |
+ROW |60126 |1116 |28760 |
+ROW |60127 |1116 |28761 |
+ROW |60128 |1116 |28762 |
+ROW |60129 |1116 |28763 |
+ROW |60130 |1116 |28764 |
+ROW |60131 |1116 |28765 |
+ROW |60132 |1116 |28766 |
+ROW |60133 |1116 |28767 |
+ROW |60134 |1116 |28769 |
+ROW |60135 |1116 |28770 |
+ROW |60136 |1116 |28771 |
+ROW |60137 |1116 |28772 |
+ROW |60138 |1116 |28773 |
+ROW |60139 |1116 |28774 |
+ROW |60140 |1119 |28775 |
+ROW |60141 |1118 |28776 |
+ROW |60142 |1118 |28777 |
+ROW |60143 |1118 |28778 |
+ROW |60144 |1118 |28779 |
+ROW |60145 |1118 |28780 |
+ROW |60146 |1118 |28781 |
+ROW |60147 |1118 |28782 |
+ROW |60148 |1118 |28783 |
+ROW |60149 |1118 |28784 |
+ROW |60150 |1118 |28785 |
+ROW |60151 |1118 |28786 |
+ROW |60152 |1118 |28787 |
+ROW |60153 |1118 |28788 |
+ROW |60154 |1118 |28789 |
+ROW |60155 |1118 |28790 |
+ROW |60156 |1118 |28791 |
+ROW |60157 |1118 |28792 |
+ROW |60158 |1118 |28793 |
+ROW |60159 |1118 |28794 |
+ROW |60160 |1118 |28795 |
+ROW |60161 |1118 |28796 |
+ROW |60162 |1118 |28798 |
+ROW |60163 |1118 |28799 |
+ROW |60164 |1118 |28800 |
+ROW |60165 |1118 |28801 |
+ROW |60166 |1118 |28802 |
+ROW |60167 |1118 |28803 |
+ROW |60168 |1319 |30527 |
+ROW |60169 |1319 |30528 |
+ROW |60170 |1319 |30529 |
+ROW |60171 |1318 |30530 |
+ROW |60172 |1319 |30531 |
+ROW |60173 |1318 |30532 |
+ROW |60174 |1318 |30533 |
+ROW |60175 |1318 |30534 |
+ROW |60176 |1318 |30535 |
+ROW |60177 |1318 |30536 |
+ROW |60178 |1318 |30537 |
+ROW |60179 |1318 |30538 |
+ROW |60180 |1318 |30539 |
+ROW |60181 |1318 |30540 |
+ROW |60182 |1318 |30541 |
+ROW |60183 |1318 |30542 |
+ROW |60184 |1318 |30543 |
+ROW |60185 |1318 |30544 |
+ROW |60186 |1318 |30545 |
+ROW |60187 |1318 |30546 |
+ROW |60188 |1318 |30547 |
+ROW |60189 |1318 |30548 |
+ROW |60190 |1318 |30549 |
+ROW |60191 |1318 |30550 |
+ROW |60192 |1318 |30551 |
+ROW |60193 |1318 |30552 |
+ROW |60194 |1318 |30553 |
+ROW |60195 |1318 |30554 |
+ROW |60196 |1318 |30555 |
+ROW |60197 |1318 |30556 |
+ROW |60198 |1318 |30557 |
+ROW |60199 |1318 |30558 |
+ROW |60200 |1318 |30559 |
+ROW |60201 |1318 |30560 |
+ROW |60202 |1318 |30561 |
+ROW |60203 |1318 |30562 |
+ROW |60204 |1318 |30563 |
+ROW |60205 |1318 |30564 |
+ROW |60206 |1318 |30565 |
+ROW |60207 |1318 |30566 |
+ROW |60208 |1318 |30567 |
+ROW |60209 |1318 |30568 |
+ROW |60210 |1318 |30569 |
+ROW |60211 |1318 |30570 |
+ROW |60212 |1326 |30690 |
+ROW |60213 |1327 |30691 |
+ROW |60214 |1326 |30692 |
+ROW |60215 |1327 |30693 |
+ROW |60216 |1327 |30694 |
+ROW |60217 |1326 |30695 |
+ROW |60218 |1326 |30696 |
+ROW |60219 |1326 |30697 |
+ROW |60220 |1326 |30698 |
+ROW |60221 |1326 |30699 |
+ROW |60222 |1326 |30700 |
+ROW |60223 |1326 |30701 |
+ROW |60224 |1326 |30702 |
+ROW |60225 |1326 |30703 |
+ROW |60226 |1326 |30704 |
+ROW |60227 |1326 |30705 |
+ROW |60228 |1326 |30706 |
+ROW |60229 |1326 |30707 |
+ROW |60230 |1326 |30708 |
+ROW |60231 |1326 |30709 |
+ROW |60232 |1326 |30710 |
+ROW |60233 |1326 |30711 |
+ROW |60234 |1326 |30712 |
+ROW |60235 |1327 |30719 |
+ROW |60236 |1327 |30739 |
+ROW |60237 |1327 |30743 |
+ROW |60238 |1327 |30744 |
+ROW |60239 |1327 |30746 |
+ROW |60240 |1327 |30747 |
+ROW |60241 |1327 |30754 |
+ROW |60242 |1327 |30756 |
+ROW |60243 |1298 |30187 |
+ROW |60244 |1298 |30188 |
+ROW |60245 |1299 |30189 |
+ROW |60246 |1299 |30190 |
+ROW |60247 |1298 |30191 |
+ROW |60248 |1298 |30192 |
+ROW |60249 |1301 |30230 |
+ROW |60250 |1301 |30231 |
+ROW |60251 |1300 |30789 |
+ROW |60252 |1300 |30790 |
+ROW |60253 |1300 |30234 |
+ROW |60254 |1300 |30235 |
+ROW |60255 |1320 |30611 |
+ROW |60256 |1321 |30612 |
+ROW |60257 |1320 |30613 |
+ROW |60258 |1320 |30614 |
+ROW |60259 |1320 |30615 |
+ROW |60260 |1320 |30616 |
+ROW |60261 |1320 |30617 |
+ROW |60262 |1320 |30618 |
+ROW |60263 |1320 |30619 |
+ROW |60264 |1320 |30620 |
+ROW |60265 |1320 |30621 |
+ROW |60266 |1320 |30622 |
+ROW |60267 |1320 |30623 |
+ROW |60268 |1320 |30624 |
+ROW |60269 |1320 |30625 |
+ROW |60270 |1320 |30626 |
+ROW |60271 |1320 |30627 |
+ROW |60272 |1320 |30628 |
+ROW |60273 |1320 |30629 |
+ROW |60274 |1320 |30630 |
+ROW |60275 |1320 |30631 |
+ROW |60276 |1320 |30632 |
+ROW |60277 |1320 |30633 |
+ROW |60278 |1320 |30634 |
+ROW |60279 |1320 |30635 |
+ROW |60280 |1320 |30636 |
+ROW |60281 |1121 |28804 |
+ROW |60282 |1120 |28805 |
+ROW |60283 |1120 |28806 |
+ROW |60284 |1120 |28807 |
+ROW |60285 |1120 |28808 |
+ROW |60286 |1120 |28809 |
+ROW |60287 |1120 |28810 |
+ROW |60288 |1120 |28811 |
+ROW |60289 |1120 |28812 |
+ROW |60290 |1120 |28813 |
+ROW |60291 |1120 |28814 |
+ROW |60292 |1120 |28815 |
+ROW |60293 |1120 |28816 |
+ROW |60294 |1120 |28817 |
+ROW |60295 |1120 |28818 |
+ROW |60296 |1120 |28819 |
+ROW |60297 |1120 |28820 |
+ROW |60298 |1123 |28821 |
+ROW |60299 |1122 |28822 |
+ROW |60300 |1122 |28823 |
+ROW |60301 |1122 |28824 |
+ROW |60302 |1122 |28825 |
+ROW |60303 |1122 |28826 |
+ROW |60304 |1122 |28827 |
+ROW |60305 |1122 |28828 |
+ROW |60306 |1122 |28829 |
+ROW |60307 |1122 |28830 |
+ROW |60308 |1122 |28831 |
+ROW |60309 |1122 |28832 |
+ROW |60310 |1122 |28833 |
+ROW |60311 |1264 |29653 |
+ROW |60312 |1264 |29654 |
+ROW |60313 |1263 |29655 |
+ROW |60314 |1263 |29656 |
+ROW |60315 |1263 |29657 |
+ROW |60316 |1263 |29658 |
+ROW |60317 |1263 |29659 |
+ROW |60318 |1263 |29660 |
+ROW |60319 |1264 |29661 |
+ROW |60320 |1263 |29662 |
+ROW |60321 |1262 |29998 |
+ROW |60322 |1262 |29999 |
+ROW |60323 |1263 |29687 |
+ROW |60324 |1263 |29688 |
+ROW |60325 |1263 |29691 |
+ROW |60326 |1263 |29692 |
+ROW |60327 |1263 |29693 |
+ROW |60328 |1263 |29694 |
+ROW |60329 |1263 |29695 |
+ROW |60330 |1263 |29696 |
+ROW |60331 |1263 |29697 |
+ROW |60332 |1263 |29698 |
+ROW |60333 |1263 |29699 |
+ROW |60334 |1263 |29700 |
+ROW |60335 |1263 |29701 |
+ROW |60336 |1261 |30000 |
+ROW |60337 |1261 |30001 |
+ROW |60338 |1261 |30002 |
+ROW |60339 |1261 |30003 |
+ROW |60340 |1261 |30004 |
+ROW |60341 |1261 |30005 |
+ROW |60342 |1261 |30006 |
+ROW |60343 |1261 |30007 |
+ROW |60344 |1261 |30008 |
+ROW |60345 |1261 |30009 |
+ROW |60346 |1261 |30010 |
+ROW |60347 |1261 |30011 |
+ROW |60348 |1261 |30012 |
+ROW |60349 |1261 |30013 |
+ROW |60350 |1261 |30014 |
+ROW |60351 |1261 |30015 |
+ROW |60352 |1261 |30016 |
+ROW |60353 |1261 |30017 |
+ROW |60354 |1261 |30018 |
+ROW |60355 |1261 |30019 |
+ROW |60356 |1261 |30020 |
+ROW |60357 |1261 |30021 |
+ROW |60358 |1261 |30022 |
+ROW |60359 |1261 |30023 |
+ROW |60360 |1263 |30024 |
+ROW |60361 |1263 |30025 |
+ROW |60362 |1266 |29738 |
+ROW |60363 |1266 |29739 |
+ROW |60364 |1268 |29741 |
+ROW |60365 |1267 |29742 |
+ROW |60366 |1267 |29743 |
+ROW |60367 |1267 |29744 |
+ROW |60368 |1268 |29745 |
+ROW |60369 |1268 |30043 |
+ROW |60370 |1265 |29746 |
+ROW |60371 |1265 |29747 |
+ROW |60372 |1265 |29748 |
+ROW |60373 |1265 |29749 |
+ROW |60374 |1265 |29750 |
+ROW |60375 |1265 |29751 |
+ROW |60376 |1265 |29752 |
+ROW |60377 |1265 |29753 |
+ROW |60378 |1265 |29754 |
+ROW |60379 |1265 |29755 |
+ROW |60380 |1265 |29756 |
+ROW |60381 |1265 |29757 |
+ROW |60382 |1265 |29758 |
+ROW |60383 |1265 |29759 |
+ROW |60384 |1265 |29760 |
+ROW |60385 |1265 |29761 |
+ROW |60386 |1265 |29762 |
+ROW |60387 |1265 |29763 |
+ROW |60388 |1265 |29764 |
+ROW |60389 |1265 |29765 |
+ROW |60390 |1265 |29766 |
+ROW |60391 |1265 |29767 |
+ROW |60392 |1265 |29768 |
+ROW |60393 |1265 |29769 |
+ROW |60394 |1267 |29771 |
+ROW |60395 |1267 |29772 |
+ROW |60396 |1267 |29773 |
+ROW |60397 |1267 |29774 |
+ROW |60398 |1267 |29775 |
+ROW |60399 |1267 |29776 |
+ROW |60400 |1267 |29777 |
+ROW |60401 |1267 |29779 |
+ROW |60402 |1267 |29780 |
+ROW |60403 |1267 |29781 |
+ROW |60404 |1267 |29782 |
+ROW |60405 |1267 |29783 |
+ROW |60406 |1267 |29784 |
+ROW |60407 |1267 |30044 |
+ROW |60408 |1267 |30045 |
+ROW |60409 |1107 |28501 |
+ROW |60410 |1108 |28502 |
+ROW |60411 |1105 |28503 |
+ROW |60412 |1105 |28504 |
+ROW |60413 |1106 |28505 |
+ROW |60414 |1106 |28506 |
+ROW |60415 |1106 |28507 |
+ROW |60416 |1107 |28508 |
+ROW |60417 |1107 |28509 |
+ROW |60418 |1107 |28510 |
+ROW |60419 |1109 |28511 |
+ROW |60420 |1106 |28512 |
+ROW |60421 |1105 |28513 |
+ROW |60422 |1108 |28514 |
+ROW |60423 |1108 |28515 |
+ROW |60424 |1108 |28516 |
+ROW |60425 |1107 |28517 |
+ROW |60426 |1108 |28518 |
+ROW |60427 |1105 |28519 |
+ROW |60428 |1105 |28520 |
+ROW |60429 |1105 |28521 |
+ROW |60430 |1105 |28522 |
+ROW |60431 |1105 |28523 |
+ROW |60432 |1106 |28524 |
+ROW |60433 |1106 |28525 |
+ROW |60434 |1106 |28526 |
+ROW |60435 |1106 |28527 |
+ROW |60436 |1106 |28528 |
+ROW |60437 |1107 |28529 |
+ROW |60438 |1107 |28530 |
+ROW |60439 |1107 |28531 |
+ROW |60440 |1105 |28532 |
+ROW |60441 |446 |23644 |
+ROW |60442 |736 |26856 |
+ROW |60443 |736 |26857 |
+ROW |60444 |736 |26858 |
+ROW |60445 |736 |26859 |
+ROW |60446 |736 |26860 |
+ROW |60447 |736 |26861 |
+ROW |60448 |736 |26862 |
+ROW |60449 |736 |26863 |
+ROW |60450 |736 |26864 |
+ROW |60451 |736 |26865 |
+ROW |60452 |736 |26866 |
+ROW |60453 |736 |26867 |
+ROW |60454 |736 |26868 |
+ROW |60455 |736 |26869 |
+ROW |60456 |739 |26870 |
+ROW |60457 |738 |26871 |
+ROW |60458 |739 |26872 |
+ROW |60459 |739 |26873 |
+ROW |60460 |739 |26874 |
+ROW |60461 |738 |26875 |
+ROW |60462 |738 |26876 |
+ROW |60463 |736 |26877 |
+ROW |60464 |736 |26878 |
+ROW |60465 |737 |26879 |
+ROW |60466 |737 |26880 |
+ROW |60467 |737 |26881 |
+ROW |60468 |736 |26882 |
+ROW |60469 |736 |26883 |
+ROW |60470 |734 |26884 |
+ROW |60471 |734 |26885 |
+ROW |60472 |734 |26886 |
+ROW |60473 |734 |26887 |
+ROW |60474 |734 |26888 |
+ROW |60475 |734 |26889 |
+ROW |60476 |734 |26890 |
+ROW |60477 |732 |26891 |
+ROW |60478 |732 |26892 |
+ROW |60479 |733 |26893 |
+ROW |60480 |733 |26894 |
+ROW |60481 |734 |26895 |
+ROW |60482 |734 |26896 |
+ROW |60483 |734 |26897 |
+ROW |60484 |735 |26898 |
+ROW |60485 |735 |26899 |
+ROW |60486 |736 |26900 |
+ROW |60487 |736 |26901 |
+ROW |60488 |736 |26902 |
+ROW |60489 |735 |26903 |
+ROW |60490 |735 |26904 |
+ROW |60491 |734 |26905 |
+ROW |60492 |734 |26906 |
+ROW |60493 |735 |26907 |
+ROW |60494 |735 |26908 |
+ROW |60495 |735 |26909 |
+ROW |60496 |732 |26910 |
+ROW |60497 |447 |23645 |
+ROW |60498 |448 |23646 |
+ROW |60499 |449 |23647 |
+ROW |60500 |450 |23648 |
+ROW |60501 |451 |23649 |
+ROW |60502 |452 |23650 |
+ROW |60503 |453 |23651 |
+ROW |60504 |1111 |28585 |
+ROW |60505 |1111 |28586 |
+ROW |60506 |1111 |28587 |
+ROW |60507 |1111 |28588 |
+ROW |60508 |1111 |28589 |
+ROW |60509 |1111 |28590 |
+ROW |60510 |1111 |28591 |
+ROW |60511 |1111 |28592 |
+ROW |60512 |1111 |28593 |
+ROW |60513 |1111 |28594 |
+ROW |60514 |1111 |28595 |
+ROW |60515 |1111 |28596 |
+ROW |60516 |1111 |28597 |
+ROW |60517 |1111 |28598 |
+ROW |60518 |1111 |28599 |
+ROW |60519 |1111 |28600 |
+ROW |60520 |1111 |28601 |
+ROW |60521 |1111 |28602 |
+ROW |60522 |1111 |28603 |
+ROW |60523 |1111 |28604 |
+ROW |60524 |1111 |28605 |
+ROW |60525 |1111 |28606 |
+ROW |60526 |1111 |28607 |
+ROW |60527 |1111 |28608 |
+ROW |60528 |1111 |28609 |
+ROW |60529 |1111 |28610 |
+ROW |60530 |1111 |28611 |
+ROW |60531 |1111 |28612 |
+ROW |60532 |1111 |28613 |
+ROW |60533 |1111 |28614 |
+ROW |60534 |1111 |28615 |
+ROW |60535 |1111 |28616 |
+ROW |60536 |1110 |28539 |
+ROW |60537 |1110 |28540 |
+ROW |60538 |1110 |28541 |
+ROW |60539 |1110 |28542 |
+ROW |60540 |1110 |28543 |
+ROW |60541 |1110 |28544 |
+ROW |60542 |1110 |28545 |
+ROW |60543 |1110 |28546 |
+ROW |60544 |1110 |28547 |
+ROW |60545 |1110 |28548 |
+ROW |60546 |1110 |28549 |
+ROW |60547 |1110 |28550 |
+ROW |60548 |1110 |28551 |
+ROW |60549 |1110 |28552 |
+ROW |60550 |1110 |28553 |
+ROW |60551 |1110 |28554 |
+ROW |60552 |1110 |28555 |
+ROW |60553 |1110 |28556 |
+ROW |60554 |1110 |28557 |
+ROW |60555 |1110 |28558 |
+ROW |60556 |1110 |28559 |
+ROW |60557 |1110 |28560 |
+ROW |60558 |1110 |28561 |
+ROW |60559 |1110 |28562 |
+ROW |60560 |1110 |28563 |
+ROW |60561 |1110 |28564 |
+ROW |60562 |1110 |28565 |
+ROW |60563 |1110 |28566 |
+ROW |60564 |1110 |28567 |
+ROW |60565 |1110 |28568 |
+ROW |60566 |1110 |28569 |
+ROW |60567 |1110 |28570 |
+ROW |60568 |1110 |28571 |
+ROW |60569 |1110 |28572 |
+ROW |60570 |1110 |28573 |
+ROW |60571 |1110 |28574 |
+ROW |60572 |1110 |28575 |
+ROW |60573 |1110 |28576 |
+ROW |60574 |1110 |28577 |
+ROW |60575 |1110 |28578 |
+ROW |60576 |1110 |28579 |
+ROW |60577 |1110 |28580 |
+ROW |60578 |1110 |28581 |
+ROW |60579 |1110 |28582 |
+ROW |60580 |1110 |28583 |
+ROW |60581 |1110 |28584 |
+ROW |60582 |1110 |29821 |
+ROW |60583 |454 |23652 |
+ROW |60584 |455 |23653 |
+ROW |60585 |456 |23654 |
+ROW |60586 |356 |10067 |
+ROW |60587 |356 |10068 |
+ROW |60588 |356 |10069 |
+ROW |60589 |356 |10070 |
+ROW |60590 |356 |10071 |
+ROW |60591 |356 |10072 |
+ROW |60592 |356 |23340 |
+ROW |60593 |356 |23341 |
+ROW |60594 |356 |23342 |
+ROW |60595 |356 |23343 |
+ROW |60596 |356 |23344 |
+ROW |60597 |356 |23345 |
+ROW |60598 |356 |23346 |
+ROW |60599 |356 |23347 |
+ROW |60600 |356 |23348 |
+ROW |60601 |356 |23349 |
+ROW |60602 |356 |23350 |
+ROW |60603 |356 |23351 |
+ROW |60604 |356 |23352 |
+ROW |60605 |356 |23353 |
+ROW |60606 |356 |23354 |
+ROW |60607 |356 |23355 |
+ROW |60608 |356 |23356 |
+ROW |60609 |356 |23357 |
+ROW |60610 |356 |23358 |
+ROW |60611 |356 |23359 |
+ROW |60612 |356 |23360 |
+ROW |60613 |356 |25368 |
+ROW |60614 |356 |25369 |
+ROW |60615 |356 |28250 |
+ROW |60616 |356 |28251 |
+ROW |60617 |356 |28617 |
+ROW |60618 |356 |28618 |
+ROW |60619 |356 |28619 |
+ROW |60620 |179 |10061 |
+ROW |60621 |179 |10062 |
+ROW |60622 |179 |10063 |
+ROW |60623 |179 |10064 |
+ROW |60624 |179 |10065 |
+ROW |60625 |179 |10066 |
+ROW |60626 |179 |22183 |
+ROW |60627 |179 |22185 |
+ROW |60628 |179 |22187 |
+ROW |60629 |179 |22189 |
+ROW |60630 |179 |22191 |
+ROW |60631 |179 |22196 |
+ROW |60632 |179 |22199 |
+ROW |60633 |179 |22219 |
+ROW |60634 |179 |22396 |
+ROW |60635 |179 |22399 |
+ROW |60636 |179 |22400 |
+ROW |60637 |179 |22401 |
+ROW |60638 |179 |22402 |
+ROW |60639 |179 |22404 |
+ROW |60640 |179 |22406 |
+ROW |60641 |179 |22408 |
+ROW |60642 |179 |22412 |
+ROW |60643 |179 |22414 |
+ROW |60644 |179 |22416 |
+ROW |60645 |179 |22418 |
+ROW |60646 |179 |22420 |
+ROW |60647 |179 |22422 |
+ROW |60648 |179 |22424 |
+ROW |60649 |179 |22426 |
+ROW |60650 |179 |22430 |
+ROW |60651 |179 |22689 |
+ROW |60652 |179 |23171 |
+ROW |60653 |179 |23251 |
+ROW |60654 |179 |23634 |
+ROW |60655 |179 |23661 |
+ROW |60656 |179 |23663 |
+ROW |60657 |179 |25366 |
+ROW |60658 |179 |25370 |
+ROW |60659 |179 |25665 |
+ROW |60660 |179 |25666 |
+ROW |60661 |179 |28248 |
+ROW |60662 |179 |28533 |
+ROW |60663 |179 |28535 |
+ROW |60664 |179 |28537 |
+ROW |60665 |179 |29822 |
+ROW |60666 |345 |10073 |
+ROW |60667 |345 |10074 |
+ROW |60668 |345 |10075 |
+ROW |60669 |345 |10076 |
+ROW |60670 |345 |10077 |
+ROW |60671 |345 |10078 |
+ROW |60672 |345 |23252 |
+ROW |60673 |345 |23253 |
+ROW |60674 |345 |23255 |
+ROW |60675 |345 |23256 |
+ROW |60676 |345 |23257 |
+ROW |60677 |345 |23258 |
+ROW |60678 |345 |23259 |
+ROW |60679 |345 |23260 |
+ROW |60680 |345 |23261 |
+ROW |60681 |345 |23262 |
+ROW |60682 |345 |23264 |
+ROW |60683 |345 |23265 |
+ROW |60684 |345 |23266 |
+ROW |60685 |345 |23267 |
+ROW |60686 |345 |23268 |
+ROW |60687 |345 |23269 |
+ROW |60688 |345 |23270 |
+ROW |60689 |345 |23271 |
+ROW |60690 |345 |23272 |
+ROW |60691 |345 |23273 |
+ROW |60692 |345 |23274 |
+ROW |60693 |345 |23275 |
+ROW |60694 |345 |23276 |
+ROW |60695 |345 |23277 |
+ROW |60696 |345 |23328 |
+ROW |60697 |345 |23620 |
+ROW |60698 |345 |23625 |
+ROW |60699 |345 |23628 |
+ROW |60700 |345 |23635 |
+ROW |60701 |345 |23662 |
+ROW |60702 |345 |23664 |
+ROW |60703 |345 |25367 |
+ROW |60704 |345 |25371 |
+ROW |60705 |345 |25667 |
+ROW |60706 |345 |25668 |
+ROW |60707 |345 |28249 |
+ROW |60708 |345 |28534 |
+ROW |60709 |345 |28536 |
+ROW |60710 |345 |28538 |
+ROW |60711 |345 |29823 |
+ROW |60712 |280 |22917 |
+ROW |60713 |280 |22918 |
+ROW |60714 |273 |22920 |
+ROW |60715 |279 |22920 |
+ROW |60716 |273 |22921 |
+ROW |60717 |279 |22921 |
+ROW |60718 |273 |22922 |
+ROW |60719 |279 |22922 |
+ROW |60720 |273 |22923 |
+ROW |60721 |279 |22923 |
+ROW |60722 |273 |22924 |
+ROW |60723 |279 |22924 |
+ROW |60724 |275 |22933 |
+ROW |60725 |278 |22933 |
+ROW |60726 |275 |22934 |
+ROW |60727 |278 |22934 |
+ROW |60728 |275 |22938 |
+ROW |60729 |278 |22938 |
+ROW |60730 |275 |22939 |
+ROW |60731 |278 |22939 |
+ROW |60732 |278 |22940 |
+ROW |60733 |281 |22940 |
+ROW |60734 |281 |22941 |
+ROW |60735 |276 |22942 |
+ROW |60736 |276 |22943 |
+ROW |60737 |273 |23108 |
+ROW |60738 |331 |23108 |
+ROW |60739 |279 |23108 |
+ROW |60740 |273 |23109 |
+ROW |60741 |331 |23109 |
+ROW |60742 |279 |23109 |
+ROW |60743 |273 |23110 |
+ROW |60744 |279 |23110 |
+ROW |60745 |273 |23111 |
+ROW |60746 |331 |23111 |
+ROW |60747 |279 |23111 |
+ROW |60748 |273 |23112 |
+ROW |60749 |331 |23112 |
+ROW |60750 |279 |23112 |
+ROW |60751 |273 |23113 |
+ROW |60752 |279 |23113 |
+ROW |60753 |273 |23114 |
+ROW |60754 |279 |23114 |
+ROW |60755 |273 |23115 |
+ROW |60756 |279 |23115 |
+ROW |60757 |274 |23116 |
+ROW |60758 |279 |23116 |
+ROW |60759 |274 |23117 |
+ROW |60760 |279 |23117 |
+ROW |60761 |273 |23118 |
+ROW |60762 |331 |23118 |
+ROW |60763 |273 |23119 |
+ROW |60764 |279 |23119 |
+ROW |60765 |273 |23120 |
+ROW |60766 |279 |23120 |
+ROW |60767 |273 |23121 |
+ROW |60768 |279 |23121 |
+ROW |60769 |276 |23122 |
+ROW |60770 |279 |23122 |
+ROW |60771 |273 |23123 |
+ROW |60772 |279 |23123 |
+ROW |60773 |276 |23124 |
+ROW |60774 |276 |23125 |
+ROW |60775 |276 |23126 |
+ROW |60776 |276 |23127 |
+ROW |60777 |276 |23128 |
+ROW |60778 |276 |23129 |
+ROW |60779 |276 |23130 |
+ROW |60780 |276 |23131 |
+ROW |60781 |277 |22945 |
+ROW |60782 |277 |22946 |
+ROW |60783 |274 |22948 |
+ROW |60784 |274 |22949 |
+ROW |60785 |274 |22950 |
+ROW |60786 |274 |22951 |
+ROW |60787 |274 |22952 |
+ROW |60788 |268 |22875 |
+ROW |60789 |268 |22876 |
+ROW |60790 |270 |22877 |
+ROW |60791 |270 |22878 |
+ROW |60792 |265 |22879 |
+ROW |60793 |268 |22879 |
+ROW |60794 |263 |22880 |
+ROW |60795 |269 |22880 |
+ROW |60796 |263 |22881 |
+ROW |60797 |269 |22881 |
+ROW |60798 |263 |22882 |
+ROW |60799 |269 |22882 |
+ROW |60800 |263 |22883 |
+ROW |60801 |269 |22883 |
+ROW |60802 |263 |22884 |
+ROW |60803 |269 |22884 |
+ROW |60804 |263 |22885 |
+ROW |60805 |269 |22885 |
+ROW |60806 |263 |22886 |
+ROW |60807 |269 |22886 |
+ROW |60808 |263 |22888 |
+ROW |60809 |269 |22888 |
+ROW |60810 |263 |22891 |
+ROW |60811 |269 |22891 |
+ROW |60812 |263 |22892 |
+ROW |60813 |269 |22892 |
+ROW |60814 |265 |22893 |
+ROW |60815 |268 |22893 |
+ROW |60816 |265 |22894 |
+ROW |60817 |268 |22894 |
+ROW |60818 |266 |22895 |
+ROW |60819 |266 |22896 |
+ROW |60820 |266 |22897 |
+ROW |60821 |265 |22898 |
+ROW |60822 |268 |22898 |
+ROW |60823 |265 |22899 |
+ROW |60824 |268 |22899 |
+ROW |60825 |268 |22900 |
+ROW |60826 |271 |22900 |
+ROW |60827 |271 |22901 |
+ROW |60828 |266 |22902 |
+ROW |60829 |266 |22903 |
+ROW |60830 |264 |22908 |
+ROW |60831 |264 |22909 |
+ROW |60832 |264 |22910 |
+ROW |60833 |264 |22911 |
+ROW |60834 |264 |22912 |
+ROW |60835 |267 |23073 |
+ROW |60836 |267 |23074 |
+ROW |60837 |283 |22961 |
+ROW |60838 |289 |22961 |
+ROW |60839 |283 |22962 |
+ROW |60840 |289 |22962 |
+ROW |60841 |283 |22963 |
+ROW |60842 |289 |22963 |
+ROW |60843 |283 |22965 |
+ROW |60844 |289 |22965 |
+ROW |60845 |283 |22968 |
+ROW |60846 |289 |22968 |
+ROW |60847 |283 |22971 |
+ROW |60848 |289 |22971 |
+ROW |60849 |283 |22972 |
+ROW |60850 |289 |22972 |
+ROW |60851 |285 |22973 |
+ROW |60852 |288 |22973 |
+ROW |60853 |285 |22974 |
+ROW |60854 |288 |22974 |
+ROW |60855 |285 |22978 |
+ROW |60856 |288 |22978 |
+ROW |60857 |288 |22980 |
+ROW |60858 |291 |22980 |
+ROW |60859 |291 |22981 |
+ROW |60860 |286 |22982 |
+ROW |60861 |286 |22983 |
+ROW |60862 |287 |22985 |
+ROW |60863 |287 |22986 |
+ROW |60864 |284 |22988 |
+ROW |60865 |284 |22989 |
+ROW |60866 |284 |22990 |
+ROW |60867 |284 |22991 |
+ROW |60868 |284 |22992 |
+ROW |60869 |308 |23035 |
+ROW |60870 |308 |23036 |
+ROW |60871 |305 |23039 |
+ROW |60872 |308 |23039 |
+ROW |60873 |303 |23041 |
+ROW |60874 |309 |23041 |
+ROW |60875 |303 |23042 |
+ROW |60876 |309 |23042 |
+ROW |60877 |303 |23043 |
+ROW |60878 |309 |23043 |
+ROW |60879 |305 |23053 |
+ROW |60880 |308 |23053 |
+ROW |60881 |305 |23054 |
+ROW |60882 |308 |23054 |
+ROW |60883 |305 |23058 |
+ROW |60884 |308 |23058 |
+ROW |60885 |305 |23059 |
+ROW |60886 |308 |23059 |
+ROW |60887 |308 |23060 |
+ROW |60888 |311 |23060 |
+ROW |60889 |311 |23061 |
+ROW |60890 |306 |23062 |
+ROW |60891 |306 |23063 |
+ROW |60892 |307 |23077 |
+ROW |60893 |307 |23078 |
+ROW |60894 |304 |23068 |
+ROW |60895 |304 |23069 |
+ROW |60896 |304 |23070 |
+ROW |60897 |304 |23071 |
+ROW |60898 |304 |23072 |
+ROW |60899 |258 |22835 |
+ROW |60900 |258 |22836 |
+ROW |60901 |260 |22837 |
+ROW |60902 |260 |22838 |
+ROW |60903 |255 |22839 |
+ROW |60904 |258 |22839 |
+ROW |60905 |253 |22840 |
+ROW |60906 |259 |22840 |
+ROW |60907 |253 |22841 |
+ROW |60908 |259 |22841 |
+ROW |60909 |253 |22842 |
+ROW |60910 |259 |22842 |
+ROW |60911 |253 |22843 |
+ROW |60912 |259 |22843 |
+ROW |60913 |253 |22844 |
+ROW |60914 |259 |22844 |
+ROW |60915 |253 |22845 |
+ROW |60916 |259 |22845 |
+ROW |60917 |253 |22846 |
+ROW |60918 |259 |22846 |
+ROW |60919 |253 |22848 |
+ROW |60920 |259 |22848 |
+ROW |60921 |253 |22851 |
+ROW |60922 |259 |22851 |
+ROW |60923 |253 |22852 |
+ROW |60924 |259 |22852 |
+ROW |60925 |255 |22853 |
+ROW |60926 |258 |22853 |
+ROW |60927 |255 |22854 |
+ROW |60928 |258 |22854 |
+ROW |60929 |256 |22855 |
+ROW |60930 |256 |22856 |
+ROW |60931 |256 |22857 |
+ROW |60932 |255 |22858 |
+ROW |60933 |258 |22858 |
+ROW |60934 |255 |22859 |
+ROW |60935 |258 |22859 |
+ROW |60936 |258 |22860 |
+ROW |60937 |261 |22860 |
+ROW |60938 |261 |22861 |
+ROW |60939 |256 |22862 |
+ROW |60940 |256 |22863 |
+ROW |60941 |254 |22868 |
+ROW |60942 |254 |22869 |
+ROW |60943 |254 |22870 |
+ROW |60944 |254 |22871 |
+ROW |60945 |254 |22872 |
+ROW |60946 |257 |23075 |
+ROW |60947 |257 |23076 |
+ROW |60948 |298 |22996 |
+ROW |60949 |300 |22997 |
+ROW |60950 |300 |22998 |
+ROW |60951 |295 |22999 |
+ROW |60952 |298 |22999 |
+ROW |60953 |293 |23000 |
+ROW |60954 |299 |23000 |
+ROW |60955 |293 |23001 |
+ROW |60956 |299 |23001 |
+ROW |60957 |293 |23002 |
+ROW |60958 |299 |23002 |
+ROW |60959 |293 |23003 |
+ROW |60960 |299 |23003 |
+ROW |60961 |293 |23004 |
+ROW |60962 |299 |23004 |
+ROW |60963 |293 |23005 |
+ROW |60964 |299 |23005 |
+ROW |60965 |293 |23007 |
+ROW |60966 |299 |23007 |
+ROW |60967 |293 |23011 |
+ROW |60968 |299 |23011 |
+ROW |60969 |293 |23012 |
+ROW |60970 |299 |23012 |
+ROW |60971 |295 |23013 |
+ROW |60972 |298 |23013 |
+ROW |60973 |295 |23014 |
+ROW |60974 |298 |23014 |
+ROW |60975 |296 |23015 |
+ROW |60976 |296 |23016 |
+ROW |60977 |296 |23017 |
+ROW |60978 |295 |23018 |
+ROW |60979 |298 |23018 |
+ROW |60980 |295 |23019 |
+ROW |60981 |298 |23019 |
+ROW |60982 |298 |23020 |
+ROW |60983 |301 |23020 |
+ROW |60984 |301 |23021 |
+ROW |60985 |296 |23022 |
+ROW |60986 |296 |23023 |
+ROW |60987 |297 |23025 |
+ROW |60988 |297 |23026 |
+ROW |60989 |294 |23028 |
+ROW |60990 |294 |23029 |
+ROW |60991 |294 |23030 |
+ROW |60992 |294 |23031 |
+ROW |60993 |294 |23032 |
+ROW |60994 |743 |26925 |
+ROW |60995 |743 |26926 |
+ROW |60996 |741 |26927 |
+ROW |60997 |742 |26928 |
+ROW |60998 |743 |26929 |
+ROW |60999 |743 |26930 |
+ROW |61000 |743 |26931 |
+ROW |61001 |743 |26932 |
+ROW |61002 |745 |26933 |
+ROW |61003 |746 |26934 |
+ROW |61004 |744 |26935 |
+ROW |61005 |744 |26936 |
+ROW |61006 |746 |26937 |
+ROW |61007 |746 |26938 |
+ROW |61008 |746 |26939 |
+ROW |61009 |746 |26940 |
+ROW |61010 |746 |26941 |
+ROW |61011 |746 |26942 |
+ROW |61012 |745 |26943 |
+ROW |61013 |748 |26944 |
+ROW |61014 |748 |26945 |
+ROW |61015 |749 |26946 |
+ROW |61016 |755 |26947 |
+ROW |61017 |755 |26948 |
+ROW |61018 |755 |26949 |
+ROW |61019 |753 |26950 |
+ROW |61020 |757 |26951 |
+ROW |61021 |753 |26952 |
+ROW |61022 |757 |26953 |
+ROW |61023 |757 |26954 |
+ROW |61024 |755 |26955 |
+ROW |61025 |755 |26956 |
+ROW |61026 |750 |26957 |
+ROW |61027 |750 |26958 |
+ROW |61028 |750 |26959 |
+ROW |61029 |753 |26960 |
+ROW |61030 |753 |26961 |
+ROW |61031 |755 |26962 |
+ROW |61032 |755 |26963 |
+ROW |61033 |755 |26964 |
+ROW |61034 |753 |26965 |
+ROW |61035 |763 |26966 |
+ROW |61036 |763 |26967 |
+ROW |61037 |762 |26968 |
+ROW |61038 |762 |26969 |
+ROW |61039 |760 |26970 |
+ROW |61040 |760 |26971 |
+ROW |61041 |760 |26972 |
+ROW |61042 |760 |26973 |
+ROW |61043 |760 |26974 |
+ROW |61044 |761 |26975 |
+ROW |61045 |761 |26976 |
+ROW |61046 |758 |26977 |
+ROW |61047 |761 |26977 |
+ROW |61048 |760 |26978 |
+ROW |61049 |760 |26979 |
+ROW |61050 |758 |26980 |
+ROW |61051 |758 |26981 |
+ROW |61052 |761 |26981 |
+ROW |61053 |758 |26982 |
+ROW |61054 |761 |26982 |
+ROW |61055 |761 |26983 |
+ROW |61056 |761 |26984 |
+ROW |61057 |762 |26984 |
+ROW |61058 |758 |26985 |
+ROW |61059 |761 |26985 |
+ROW |61060 |760 |26986 |
+ROW |61061 |747 |26994 |
+ROW |61062 |754 |26995 |
+ROW |61063 |754 |26996 |
+ROW |61064 |754 |26997 |
+ROW |61065 |754 |26998 |
+ROW |61066 |751 |26999 |
+ROW |61067 |751 |27000 |
+ROW |61068 |751 |27001 |
+ROW |61069 |751 |27002 |
+ROW |61070 |752 |27003 |
+ROW |61071 |752 |27004 |
+ROW |61072 |752 |27005 |
+ROW |61073 |752 |27006 |
+ROW |61074 |759 |27007 |
+ROW |61075 |759 |27008 |
+ROW |61076 |759 |27009 |
+ROW |61077 |759 |27010 |
+ROW |61078 |1112 |28621 |
+ROW |61079 |1112 |28622 |
+ROW |61080 |1112 |28623 |
+ROW |61081 |1112 |28624 |
+ROW |61082 |1328 |30821 |
+ROW |61083 |1328 |30822 |
+ROW |61084 |1330 |30823 |
+ROW |61085 |1330 |30824 |
+ROW |61086 |1330 |30825 |
+ROW |61087 |1330 |30826 |
+ROW |61088 |1328 |30827 |
+ROW |61089 |1330 |30828 |
+ROW |61090 |1330 |30829 |
+ROW |61091 |1330 |30830 |
+ROW |61092 |1328 |30831 |
+ROW |61093 |1328 |30832 |
+ROW |61094 |1328 |30833 |
+ROW |61095 |1328 |30834 |
+ROW |61096 |1328 |30835 |
+ROW |61097 |1329 |30836 |
+ROW |61098 |1328 |30837 |
+ROW |61099 |1328 |30838 |
+ROW |61100 |1328 |30839 |
+ROW |61101 |1329 |30840 |
+ROW |61102 |1328 |30841 |
+ROW |61103 |1329 |30842 |
+ROW |61104 |1329 |30843 |
+ROW |61105 |1329 |30844 |
+ROW |61106 |1329 |30845 |
+ROW |61107 |1328 |30846 |
+ROW |61108 |1328 |30847 |
+ROW |61109 |1328 |30848 |
+ROW |61110 |1328 |30849 |
+ROW |61111 |1328 |30850 |
+ROW |61112 |1328 |30851 |
+ROW |61113 |1328 |30852 |
+ROW |61114 |1328 |30853 |
+ROW |61115 |1328 |30854 |
+ROW |61116 |1328 |30855 |
+ROW |61117 |1328 |30856 |
+ROW |61118 |1328 |30857 |
+ROW |61119 |1328 |30858 |
+ROW |61120 |1328 |30859 |
+ROW |61121 |1328 |30860 |
+ROW |61122 |1328 |30861 |
+ROW |61123 |1328 |30862 |
+ROW |61124 |1328 |30863 |
+ROW |61125 |1328 |30864 |
+ROW |61126 |1328 |30865 |
+ROW |61127 |1328 |30866 |
+ROW |61128 |1328 |30867 |
+ROW |61129 |1328 |30868 |
+ROW |61130 |1328 |30869 |
+ROW |61131 |1328 |30870 |
+ROW |61132 |1328 |30871 |
+ROW |61133 |1328 |30872 |
+ROW |61134 |1329 |30873 |
+ROW |61135 |1314 |30431 |
+ROW |61136 |1314 |30432 |
+ROW |61137 |1315 |30433 |
+ROW |61138 |1314 |30434 |
+ROW |61139 |1314 |30435 |
+ROW |61140 |1315 |30436 |
+ROW |61141 |1314 |30437 |
+ROW |61142 |1314 |30438 |
+ROW |61143 |1314 |30439 |
+ROW |61144 |1314 |30440 |
+ROW |61145 |1314 |30441 |
+ROW |61146 |1314 |30442 |
+ROW |61147 |1315 |30443 |
+ROW |61148 |1314 |30444 |
+ROW |61149 |1314 |30445 |
+ROW |61150 |1314 |30446 |
+ROW |61151 |1314 |30447 |
+ROW |61152 |1314 |30448 |
+ROW |61153 |1314 |30449 |
+ROW |61154 |1314 |30450 |
+ROW |61155 |1314 |30451 |
+ROW |61156 |1314 |30452 |
+ROW |61157 |1314 |30453 |
+ROW |61158 |1314 |30454 |
+ROW |61159 |1314 |30455 |
+ROW |61160 |1314 |30456 |
+ROW |61161 |1314 |30457 |
+ROW |61162 |1314 |30458 |
+ROW |61163 |1314 |30459 |
+ROW |61164 |1314 |30460 |
+ROW |61165 |1314 |30461 |
+ROW |61166 |1314 |30462 |
+ROW |61167 |1314 |30463 |
+ROW |61168 |1314 |30464 |
+ROW |61169 |1314 |30465 |
+ROW |61170 |1314 |30466 |
+ROW |61171 |1314 |30467 |
+ROW |61172 |1314 |30468 |
+ROW |61173 |1314 |30469 |
+ROW |61174 |1314 |30470 |
+ROW |61175 |1314 |30471 |
+ROW |61176 |1314 |30474 |
+ROW |61177 |1315 |30475 |
+ROW |61178 |1314 |30476 |
+ROW |61179 |1314 |30477 |
+ROW |61180 |1314 |30478 |
+ROW |61181 |1322 |30637 |
+ROW |61182 |1322 |30638 |
+ROW |61183 |1323 |30639 |
+ROW |61184 |1322 |30640 |
+ROW |61185 |1322 |30641 |
+ROW |61186 |1323 |30642 |
+ROW |61187 |1322 |30643 |
+ROW |61188 |1322 |30644 |
+ROW |61189 |1322 |30645 |
+ROW |61190 |1322 |30646 |
+ROW |61191 |1322 |30647 |
+ROW |61192 |1322 |30648 |
+ROW |61193 |1323 |30649 |
+ROW |61194 |1322 |30650 |
+ROW |61195 |1322 |30651 |
+ROW |61196 |1322 |30652 |
+ROW |61197 |1322 |30653 |
+ROW |61198 |1322 |30654 |
+ROW |61199 |1322 |30655 |
+ROW |61200 |1322 |30656 |
+ROW |61201 |1322 |30657 |
+ROW |61202 |1322 |30658 |
+ROW |61203 |1322 |30659 |
+ROW |61204 |1322 |30660 |
+ROW |61205 |1322 |30661 |
+ROW |61206 |1322 |30662 |
+ROW |61207 |1322 |30663 |
+ROW |61208 |1322 |30664 |
+ROW |61209 |1322 |30665 |
+ROW |61210 |1322 |30666 |
+ROW |61211 |1322 |30667 |
+ROW |61212 |1322 |30668 |
+ROW |61213 |1322 |30669 |
+ROW |61214 |1322 |30670 |
+ROW |61215 |1322 |30671 |
+ROW |61216 |1322 |30672 |
+ROW |61217 |1322 |30673 |
+ROW |61218 |1322 |30674 |
+ROW |61219 |1322 |30675 |
+ROW |61220 |1322 |30676 |
+ROW |61221 |1322 |30677 |
+ROW |61222 |1322 |30680 |
+ROW |61223 |1323 |30681 |
+ROW |61224 |1322 |30682 |
+ROW |61225 |1322 |30683 |
+ROW |61226 |1322 |30684 |
+ROW |61227 |1317 |30479 |
+ROW |61228 |1316 |30480 |
+ROW |61229 |1316 |30481 |
+ROW |61230 |1316 |30482 |
+ROW |61231 |1316 |30483 |
+ROW |61232 |1316 |30484 |
+ROW |61233 |1317 |30485 |
+ROW |61234 |1316 |30486 |
+ROW |61235 |1317 |30487 |
+ROW |61236 |1316 |30488 |
+ROW |61237 |1316 |30489 |
+ROW |61238 |1316 |30490 |
+ROW |61239 |1316 |30491 |
+ROW |61240 |1316 |30492 |
+ROW |61241 |1316 |30493 |
+ROW |61242 |1316 |30494 |
+ROW |61243 |1316 |30495 |
+ROW |61244 |1316 |30496 |
+ROW |61245 |1316 |30497 |
+ROW |61246 |1316 |30498 |
+ROW |61247 |1316 |30499 |
+ROW |61248 |1316 |30500 |
+ROW |61249 |1316 |30501 |
+ROW |61250 |1316 |30502 |
+ROW |61251 |1316 |30503 |
+ROW |61252 |1316 |30504 |
+ROW |61253 |1316 |30505 |
+ROW |61254 |1316 |30506 |
+ROW |61255 |1316 |30507 |
+ROW |61256 |1316 |30508 |
+ROW |61257 |1316 |30509 |
+ROW |61258 |1316 |30510 |
+ROW |61259 |1316 |30511 |
+ROW |61260 |1316 |30512 |
+ROW |61261 |1316 |30513 |
+ROW |61262 |1316 |30514 |
+ROW |61263 |1316 |30515 |
+ROW |61264 |1316 |30516 |
+ROW |61265 |1316 |30517 |
+ROW |61266 |1316 |30518 |
+ROW |61267 |1316 |30519 |
+ROW |61268 |1316 |30522 |
+ROW |61269 |1317 |30523 |
+ROW |61270 |1316 |30524 |
+ROW |61271 |1316 |30525 |
+ROW |61272 |1316 |30526 |
+ROW |61273 |1115 |28671 |
+ROW |61274 |1115 |28672 |
+ROW |61275 |1114 |28673 |
+ROW |61276 |1114 |28674 |
+ROW |61277 |1115 |28675 |
+ROW |61278 |1114 |28676 |
+ROW |61279 |1114 |28677 |
+ROW |61280 |1114 |28678 |
+ROW |61281 |1114 |28679 |
+ROW |61282 |1114 |28680 |
+ROW |61283 |1114 |28681 |
+ROW |61284 |1115 |28682 |
+ROW |61285 |1115 |28683 |
+ROW |61286 |1114 |28684 |
+ROW |61287 |1114 |28685 |
+ROW |61288 |1115 |28686 |
+ROW |61289 |1115 |28687 |
+ROW |61290 |1114 |28688 |
+ROW |61291 |1114 |28689 |
+ROW |61292 |1114 |28690 |
+ROW |61293 |1114 |28691 |
+ROW |61294 |1114 |28692 |
+ROW |61295 |1114 |28693 |
+ROW |61296 |1114 |28694 |
+ROW |61297 |1114 |28695 |
+ROW |61298 |1114 |28696 |
+ROW |61299 |1114 |28697 |
+ROW |61300 |1114 |28698 |
+ROW |61301 |1114 |28699 |
+ROW |61302 |1114 |28700 |
+ROW |61303 |1114 |28701 |
+ROW |61304 |1114 |28702 |
+ROW |61305 |1114 |28703 |
+ROW |61306 |1114 |28704 |
+ROW |61307 |1114 |28705 |
+ROW |61308 |1114 |28706 |
+ROW |61309 |1114 |28707 |
+ROW |61310 |1114 |28708 |
+ROW |61311 |1114 |28709 |
+ROW |61312 |1114 |28710 |
+ROW |61313 |1115 |28713 |
+ROW |61314 |1115 |28714 |
+ROW |61315 |1302 |30273 |
+ROW |61316 |1302 |30274 |
+ROW |61317 |1303 |30275 |
+ROW |61318 |1303 |30276 |
+ROW |61319 |1302 |30277 |
+ROW |61320 |1302 |30278 |
+ROW |61321 |1302 |30279 |
+ROW |61322 |1302 |30280 |
+ROW |61323 |1302 |30281 |
+ROW |61324 |1302 |30282 |
+ROW |61325 |1302 |30283 |
+ROW |61326 |1302 |30284 |
+ROW |61327 |1302 |30285 |
+ROW |61328 |1302 |30286 |
+ROW |61329 |1302 |30287 |
+ROW |61330 |1302 |30288 |
+ROW |61331 |1302 |30289 |
+ROW |61332 |1302 |30290 |
+ROW |61333 |1302 |30291 |
+ROW |61334 |1302 |30292 |
+ROW |61335 |1302 |30293 |
+ROW |61336 |1302 |30294 |
+ROW |61337 |1302 |30295 |
+ROW |61338 |1302 |30296 |
+ROW |61339 |1302 |30297 |
+ROW |61340 |1302 |30298 |
+ROW |61341 |1302 |30299 |
+ROW |61342 |1302 |30300 |
+ROW |61343 |1302 |30301 |
+ROW |61344 |1302 |30302 |
+ROW |61345 |1302 |30303 |
+ROW |61346 |1302 |30304 |
+ROW |61347 |1302 |30305 |
+ROW |61348 |1302 |30306 |
+ROW |61349 |1302 |30307 |
+ROW |61350 |1302 |30308 |
+ROW |61351 |1302 |30309 |
+ROW |61352 |1302 |30310 |
+ROW |61353 |1302 |30311 |
+ROW |61354 |1302 |30312 |
+ROW |61355 |1302 |30313 |
+ROW |61356 |1302 |30314 |
+ROW |61357 |1302 |30315 |
+ROW |61358 |1302 |30316 |
+ROW |61359 |1302 |30317 |
+ROW |61360 |1302 |30318 |
+ROW |61361 |1302 |30319 |
+ROW |61362 |1302 |30320 |
+ROW |61363 |1302 |30321 |
+ROW |61364 |1302 |30322 |
+ROW |61365 |1302 |30323 |
+ROW |61366 |1302 |30324 |
+ROW |61367 |1302 |30325 |
+ROW |61368 |1302 |30326 |
+ROW |61369 |1302 |30327 |
+ROW |61370 |1302 |30328 |
+ROW |61371 |1302 |30329 |
+ROW |61372 |1302 |30330 |
+ROW |61373 |1302 |30331 |
+ROW |61374 |1302 |30332 |
+ROW |61375 |1302 |30333 |
+ROW |61376 |1302 |30334 |
+ROW |61377 |1302 |30335 |
+ROW |61378 |1302 |30336 |
+ROW |61379 |1302 |30344 |
+ROW |61380 |1302 |30345 |
+ROW |61381 |1302 |30346 |
+ROW |61382 |1302 |30347 |
+ROW |61383 |1302 |30351 |
+ROW |61384 |1302 |30352 |
+ROW |61385 |1302 |30353 |
+ROW |61386 |1302 |30354 |
+ROW |61387 |1302 |30355 |
+ROW |61388 |1302 |30356 |
+ROW |61389 |1302 |30357 |
+ROW |61390 |1302 |30358 |
+ROW |61391 |1302 |30359 |
+ROW |61392 |1302 |30360 |
+ROW |61393 |1302 |30361 |
+ROW |61394 |1302 |30362 |
+ROW |61395 |1302 |30363 |
+ROW |61396 |1302 |30364 |
+ROW |61397 |1302 |30365 |
+ROW |61398 |1302 |30366 |
+ROW |61399 |1302 |30367 |
+ROW |61400 |1302 |30368 |
+ROW |61401 |1302 |30369 |
+ROW |61402 |1302 |30370 |
+ROW |61403 |1302 |30371 |
+ROW |61404 |1302 |30372 |
+ROW |61405 |1302 |30373 |
+ROW |61406 |1302 |30374 |
+ROW |61407 |1302 |30375 |
+ROW |61408 |1302 |30376 |
+ROW |61409 |1302 |30377 |
+ROW |61410 |1302 |30378 |
+ROW |61411 |1302 |30379 |
+ROW |61412 |1302 |30380 |
+ROW |61413 |1302 |30381 |
+ROW |61414 |1302 |30382 |
+ROW |61415 |1302 |30383 |
+ROW |61416 |1302 |30384 |
+ROW |61417 |1302 |30385 |
+ROW |61418 |1302 |30386 |
+ROW |61419 |1302 |30387 |
+ROW |61420 |1302 |30388 |
+ROW |61421 |1302 |30389 |
+ROW |61422 |1302 |30390 |
+ROW |61423 |1302 |30391 |
+ROW |61424 |1302 |30392 |
+ROW |61425 |1302 |30393 |
+ROW |61426 |1302 |30394 |
+ROW |61427 |1302 |30395 |
+ROW |61428 |1302 |30397 |
+ROW |61429 |1302 |30398 |
+ROW |61430 |1302 |30399 |
+ROW |61431 |1302 |30400 |
+ROW |61432 |1302 |30401 |
+ROW |61433 |1302 |30402 |
+ROW |61434 |1302 |30403 |
+ROW |61435 |1302 |30404 |
+ROW |61436 |780 |27065 |
+ROW |61437 |780 |27066 |
+ROW |61438 |780 |27067 |
+ROW |61439 |797 |27138 |
+ROW |61440 |797 |27139 |
+ROW |61441 |797 |27140 |
+ROW |61442 |799 |27149 |
+ROW |61443 |799 |27150 |
+ROW |61444 |799 |27151 |
+ROW |61445 |805 |27192 |
+ROW |61446 |805 |27193 |
+ROW |61447 |805 |27194 |
+ROW |61448 |813 |27225 |
+ROW |61449 |813 |27226 |
+ROW |61450 |813 |27227 |
+ROW |61451 |822 |27261 |
+ROW |61452 |822 |27262 |
+ROW |61453 |822 |27263 |
+ROW |61454 |825 |27282 |
+ROW |61455 |825 |27283 |
+ROW |61456 |825 |27284 |
+ROW |61457 |842 |27333 |
+ROW |61458 |842 |27334 |
+ROW |61459 |842 |27335 |
+ROW |61460 |847 |27365 |
+ROW |61461 |847 |27366 |
+ROW |61462 |847 |27367 |
+ROW |61463 |876 |27462 |
+ROW |61464 |876 |27463 |
+ROW |61465 |876 |27464 |
+ROW |61466 |885 |27496 |
+ROW |61467 |885 |27497 |
+ROW |61468 |885 |27498 |
+ROW |61469 |894 |27532 |
+ROW |61470 |894 |27533 |
+ROW |61471 |894 |27534 |
+ROW |61472 |903 |27568 |
+ROW |61473 |903 |27569 |
+ROW |61474 |903 |27570 |
+ROW |61475 |912 |27608 |
+ROW |61476 |912 |27609 |
+ROW |61477 |912 |27610 |
+ROW |61478 |915 |27631 |
+ROW |61479 |915 |27632 |
+ROW |61480 |915 |27633 |
+ROW |61481 |918 |27654 |
+ROW |61482 |918 |27655 |
+ROW |61483 |918 |27656 |
+ROW |61484 |936 |27734 |
+ROW |61485 |936 |27735 |
+ROW |61486 |936 |27736 |
+ROW |61487 |944 |27766 |
+ROW |61488 |944 |27767 |
+ROW |61489 |944 |27768 |
+ROW |61490 |951 |27800 |
+ROW |61491 |951 |27801 |
+ROW |61492 |951 |27802 |
+ROW |61493 |971 |27882 |
+ROW |61494 |971 |27883 |
+ROW |61495 |971 |27884 |
+ROW |61496 |979 |27919 |
+ROW |61497 |979 |27920 |
+ROW |61498 |979 |27921 |
+ROW |61499 |988 |27956 |
+ROW |61500 |988 |27957 |
+ROW |61501 |988 |27958 |
+ROW |61502 |994 |27986 |
+ROW |61503 |994 |27987 |
+ROW |61504 |994 |27988 |
+ROW |61505 |1000 |28015 |
+ROW |61506 |1000 |28016 |
+ROW |61507 |1000 |28017 |
+ROW |61508 |1030 |28130 |
+ROW |61509 |1030 |28131 |
+ROW |61510 |1030 |28132 |
+ROW |61511 |1043 |28185 |
+ROW |61512 |1043 |28186 |
+ROW |61513 |1043 |28187 |
+ROW |61514 |1055 |28233 |
+ROW |61515 |1055 |28234 |
+ROW |61516 |1055 |28235 |
+ROW |61517 |1060 |28282 |
+ROW |61518 |1060 |28283 |
+ROW |61519 |1060 |28284 |
+ROW |61520 |1070 |28330 |
+ROW |61521 |1070 |28331 |
+ROW |61522 |1070 |28332 |
+ROW |61523 |1079 |28377 |
+ROW |61524 |1079 |28378 |
+ROW |61525 |1079 |28379 |
+ROW |61526 |1088 |28426 |
+ROW |61527 |1088 |28427 |
+ROW |61528 |1088 |28428 |
+ROW |61529 |1095 |28454 |
+ROW |61530 |1095 |28455 |
+ROW |61531 |1095 |28456 |
+ROW |61532 |1102 |28482 |
+ROW |61533 |1102 |28483 |
+ROW |61534 |1102 |28484 |
+ROW |61535 |1127 |28957 |
+ROW |61536 |1127 |28958 |
+ROW |61537 |1127 |28959 |
+ROW |61538 |1136 |29050 |
+ROW |61539 |1136 |29051 |
+ROW |61540 |1136 |29052 |
+ROW |61541 |1271 |30046 |
+ROW |61542 |1271 |30047 |
+ROW |61543 |1271 |30048 |
+ROW |61544 |798 |27141 |
+ROW |61545 |797 |27143 |
+ROW |61546 |798 |27146 |
+ROW |61547 |797 |29824 |
+ROW |61548 |798 |29825 |
+ROW |61549 |798 |29826 |
+ROW |61550 |798 |29827 |
+ROW |61551 |798 |29828 |
+ROW |61552 |911 |27611 |
+ROW |61553 |911 |27615 |
+ROW |61554 |912 |27618 |
+ROW |61555 |999 |28018 |
+ROW |61556 |999 |28022 |
+ROW |61557 |1000 |28025 |
+ROW |61558 |1087 |28429 |
+ROW |61559 |1087 |28433 |
+ROW |61560 |1088 |28436 |
+ROW |61561 |912 |29829 |
+ROW |61562 |911 |29830 |
+ROW |61563 |911 |29831 |
+ROW |61564 |911 |29832 |
+ROW |61565 |911 |29833 |
+ROW |61566 |1000 |29834 |
+ROW |61567 |999 |29835 |
+ROW |61568 |999 |29836 |
+ROW |61569 |999 |29837 |
+ROW |61570 |999 |29838 |
+ROW |61571 |1088 |29839 |
+ROW |61572 |1087 |29840 |
+ROW |61573 |1087 |29841 |
+ROW |61574 |1087 |29842 |
+ROW |61575 |1087 |29843 |
+ROW |61576 |800 |27152 |
+ROW |61577 |799 |27154 |
+ROW |61578 |800 |27157 |
+ROW |61579 |799 |29844 |
+ROW |61580 |800 |29845 |
+ROW |61581 |800 |29846 |
+ROW |61582 |800 |29847 |
+ROW |61583 |800 |29848 |
+ROW |61584 |804 |27195 |
+ROW |61585 |804 |27199 |
+ROW |61586 |805 |27202 |
+ROW |61587 |812 |27228 |
+ROW |61588 |812 |27232 |
+ROW |61589 |813 |27235 |
+ROW |61590 |821 |27264 |
+ROW |61591 |821 |27268 |
+ROW |61592 |822 |27271 |
+ROW |61593 |824 |27285 |
+ROW |61594 |824 |27289 |
+ROW |61595 |825 |27292 |
+ROW |61596 |841 |27336 |
+ROW |61597 |841 |27340 |
+ROW |61598 |842 |27343 |
+ROW |61599 |846 |27368 |
+ROW |61600 |846 |27372 |
+ROW |61601 |847 |27375 |
+ROW |61602 |875 |27465 |
+ROW |61603 |875 |27469 |
+ROW |61604 |876 |27472 |
+ROW |61605 |884 |27499 |
+ROW |61606 |884 |27503 |
+ROW |61607 |885 |27506 |
+ROW |61608 |893 |27535 |
+ROW |61609 |893 |27539 |
+ROW |61610 |894 |27542 |
+ROW |61611 |902 |27571 |
+ROW |61612 |902 |27575 |
+ROW |61613 |903 |27578 |
+ROW |61614 |914 |27634 |
+ROW |61615 |914 |27638 |
+ROW |61616 |915 |27641 |
+ROW |61617 |917 |27657 |
+ROW |61618 |917 |27661 |
+ROW |61619 |918 |27664 |
+ROW |61620 |935 |27737 |
+ROW |61621 |935 |27741 |
+ROW |61622 |936 |27744 |
+ROW |61623 |943 |27769 |
+ROW |61624 |943 |27773 |
+ROW |61625 |944 |27776 |
+ROW |61626 |950 |27803 |
+ROW |61627 |950 |27807 |
+ROW |61628 |951 |27810 |
+ROW |61629 |970 |27885 |
+ROW |61630 |970 |27889 |
+ROW |61631 |971 |27892 |
+ROW |61632 |978 |27922 |
+ROW |61633 |978 |27926 |
+ROW |61634 |979 |27929 |
+ROW |61635 |987 |27959 |
+ROW |61636 |987 |27963 |
+ROW |61637 |988 |27966 |
+ROW |61638 |993 |27989 |
+ROW |61639 |993 |27993 |
+ROW |61640 |994 |27996 |
+ROW |61641 |1029 |28133 |
+ROW |61642 |1029 |28137 |
+ROW |61643 |1030 |28140 |
+ROW |61644 |1042 |28188 |
+ROW |61645 |1042 |28192 |
+ROW |61646 |1043 |28195 |
+ROW |61647 |1054 |28236 |
+ROW |61648 |1054 |28240 |
+ROW |61649 |1055 |28243 |
+ROW |61650 |1059 |28285 |
+ROW |61651 |1059 |28289 |
+ROW |61652 |1060 |28292 |
+ROW |61653 |1069 |28333 |
+ROW |61654 |1069 |28337 |
+ROW |61655 |1070 |28340 |
+ROW |61656 |1078 |28380 |
+ROW |61657 |1078 |28384 |
+ROW |61658 |1079 |28387 |
+ROW |61659 |1094 |28457 |
+ROW |61660 |1094 |28461 |
+ROW |61661 |1095 |28464 |
+ROW |61662 |1101 |28485 |
+ROW |61663 |1101 |28489 |
+ROW |61664 |1102 |28492 |
+ROW |61665 |1126 |28960 |
+ROW |61666 |1126 |28964 |
+ROW |61667 |1127 |28967 |
+ROW |61668 |1135 |29053 |
+ROW |61669 |1135 |29057 |
+ROW |61670 |1136 |29060 |
+ROW |61671 |805 |29849 |
+ROW |61672 |804 |29850 |
+ROW |61673 |804 |29851 |
+ROW |61674 |804 |29852 |
+ROW |61675 |804 |29853 |
+ROW |61676 |813 |29854 |
+ROW |61677 |812 |29855 |
+ROW |61678 |812 |29856 |
+ROW |61679 |812 |29857 |
+ROW |61680 |812 |29858 |
+ROW |61681 |822 |29859 |
+ROW |61682 |821 |29860 |
+ROW |61683 |821 |29861 |
+ROW |61684 |821 |29862 |
+ROW |61685 |821 |29863 |
+ROW |61686 |825 |29864 |
+ROW |61687 |824 |29865 |
+ROW |61688 |824 |29866 |
+ROW |61689 |824 |29867 |
+ROW |61690 |824 |29868 |
+ROW |61691 |842 |29869 |
+ROW |61692 |841 |29870 |
+ROW |61693 |841 |29871 |
+ROW |61694 |841 |29872 |
+ROW |61695 |841 |29873 |
+ROW |61696 |847 |29874 |
+ROW |61697 |846 |29875 |
+ROW |61698 |846 |29876 |
+ROW |61699 |846 |29877 |
+ROW |61700 |846 |29878 |
+ROW |61701 |876 |29879 |
+ROW |61702 |875 |29880 |
+ROW |61703 |875 |29881 |
+ROW |61704 |875 |29882 |
+ROW |61705 |875 |29883 |
+ROW |61706 |885 |29884 |
+ROW |61707 |884 |29885 |
+ROW |61708 |884 |29886 |
+ROW |61709 |884 |29887 |
+ROW |61710 |884 |29888 |
+ROW |61711 |894 |29889 |
+ROW |61712 |893 |29890 |
+ROW |61713 |893 |29891 |
+ROW |61714 |893 |29892 |
+ROW |61715 |893 |29893 |
+ROW |61716 |903 |29894 |
+ROW |61717 |902 |29895 |
+ROW |61718 |902 |29896 |
+ROW |61719 |902 |29897 |
+ROW |61720 |902 |29898 |
+ROW |61721 |915 |29899 |
+ROW |61722 |914 |29900 |
+ROW |61723 |914 |29901 |
+ROW |61724 |914 |29902 |
+ROW |61725 |914 |29903 |
+ROW |61726 |918 |29904 |
+ROW |61727 |917 |29905 |
+ROW |61728 |917 |29906 |
+ROW |61729 |917 |29907 |
+ROW |61730 |917 |29908 |
+ROW |61731 |936 |29909 |
+ROW |61732 |935 |29910 |
+ROW |61733 |935 |29911 |
+ROW |61734 |935 |29912 |
+ROW |61735 |935 |29913 |
+ROW |61736 |944 |29914 |
+ROW |61737 |943 |29915 |
+ROW |61738 |943 |29916 |
+ROW |61739 |943 |29917 |
+ROW |61740 |943 |29918 |
+ROW |61741 |951 |29919 |
+ROW |61742 |950 |29920 |
+ROW |61743 |950 |29921 |
+ROW |61744 |950 |29922 |
+ROW |61745 |950 |29923 |
+ROW |61746 |971 |29924 |
+ROW |61747 |970 |29925 |
+ROW |61748 |970 |29926 |
+ROW |61749 |970 |29927 |
+ROW |61750 |970 |29928 |
+ROW |61751 |979 |29929 |
+ROW |61752 |978 |29930 |
+ROW |61753 |978 |29931 |
+ROW |61754 |978 |29932 |
+ROW |61755 |978 |29933 |
+ROW |61756 |988 |29934 |
+ROW |61757 |987 |29935 |
+ROW |61758 |987 |29936 |
+ROW |61759 |987 |29937 |
+ROW |61760 |987 |29938 |
+ROW |61761 |994 |29939 |
+ROW |61762 |993 |29940 |
+ROW |61763 |993 |29941 |
+ROW |61764 |993 |29942 |
+ROW |61765 |993 |29943 |
+ROW |61766 |1030 |29944 |
+ROW |61767 |1029 |29945 |
+ROW |61768 |1029 |29946 |
+ROW |61769 |1029 |29947 |
+ROW |61770 |1029 |29948 |
+ROW |61771 |1043 |29949 |
+ROW |61772 |1042 |29950 |
+ROW |61773 |1042 |29951 |
+ROW |61774 |1042 |29952 |
+ROW |61775 |1042 |29953 |
+ROW |61776 |1055 |29954 |
+ROW |61777 |1054 |29955 |
+ROW |61778 |1054 |29956 |
+ROW |61779 |1054 |29957 |
+ROW |61780 |1054 |29958 |
+ROW |61781 |1060 |29959 |
+ROW |61782 |1059 |29960 |
+ROW |61783 |1059 |29961 |
+ROW |61784 |1059 |29962 |
+ROW |61785 |1059 |29963 |
+ROW |61786 |1070 |29964 |
+ROW |61787 |1069 |29965 |
+ROW |61788 |1069 |29966 |
+ROW |61789 |1069 |29967 |
+ROW |61790 |1069 |29968 |
+ROW |61791 |1079 |29969 |
+ROW |61792 |1078 |29970 |
+ROW |61793 |1078 |29971 |
+ROW |61794 |1078 |29972 |
+ROW |61795 |1078 |29973 |
+ROW |61796 |1095 |29974 |
+ROW |61797 |1094 |29975 |
+ROW |61798 |1094 |29976 |
+ROW |61799 |1094 |29977 |
+ROW |61800 |1094 |29978 |
+ROW |61801 |1102 |29979 |
+ROW |61802 |1101 |29980 |
+ROW |61803 |1101 |29981 |
+ROW |61804 |1101 |29982 |
+ROW |61805 |1101 |29983 |
+ROW |61806 |1127 |29984 |
+ROW |61807 |1126 |29985 |
+ROW |61808 |1126 |29986 |
+ROW |61809 |1126 |29987 |
+ROW |61810 |1126 |29988 |
+ROW |61811 |1136 |29989 |
+ROW |61812 |1135 |29990 |
+ROW |61813 |1135 |29991 |
+ROW |61814 |1135 |29992 |
+ROW |61815 |1135 |29993 |
+ROW |61816 |1270 |30049 |
+ROW |61817 |1270 |30050 |
+ROW |61818 |1270 |30051 |
+ROW |61819 |1270 |30052 |
+ROW |61820 |1270 |30053 |
+ROW |61821 |1270 |30054 |
+ROW |61822 |1271 |30055 |
+ROW |61823 |1271 |30056 |
+ROW |61824 |1304 |30405 |
+ROW |61825 |1307 |30406 |
+ROW |61826 |1305 |30411 |
+ROW |61827 |1305 |30412 |
+ROW |61828 |1305 |30413 |
+ROW |61829 |1308 |30417 |
+ROW |61830 |1308 |30418 |
+ROW |61831 |1308 |30419 |
+ROW |61832 |1283 |30142 |
+ROW |61833 |1286 |30143 |
+ROW |61834 |1289 |30144 |
+ROW |61835 |1292 |30145 |
+ROW |61836 |1295 |30146 |
+ROW |61837 |1284 |30157 |
+ROW |61838 |1284 |30158 |
+ROW |61839 |1284 |30159 |
+ROW |61840 |1287 |30163 |
+ROW |61841 |1287 |30164 |
+ROW |61842 |1287 |30165 |
+ROW |61843 |1290 |30169 |
+ROW |61844 |1290 |30170 |
+ROW |61845 |1290 |30171 |
+ROW |61846 |1293 |30175 |
+ROW |61847 |1293 |30176 |
+ROW |61848 |1293 |30177 |
+ROW |61849 |1296 |30181 |
+ROW |61850 |1296 |30182 |
+ROW |61851 |1296 |30183 |
+ROW |61852 |1221 |22231 |
+ROW |61853 |1221 |22232 |
+ROW |61854 |1221 |23318 |
+ROW |61855 |1222 |29544 |
+ROW |61856 |1223 |29545 |
+ROW |61857 |1223 |29546 |
+ROW |61858 |1224 |29547 |
+ROW |61859 |1225 |10020 |
+ROW |61860 |1225 |10059 |
+ROW |61861 |1226 |22833 |
+ROW |61862 |1226 |22834 |
+ROW |61863 |1228 |22873 |
+ROW |61864 |1228 |22874 |
+ROW |61865 |1230 |22913 |
+ROW |61866 |1230 |22914 |
+ROW |61867 |1232 |22953 |
+ROW |61868 |1232 |22954 |
+ROW |61869 |1234 |22993 |
+ROW |61870 |1234 |22994 |
+ROW |61871 |1236 |23033 |
+ROW |61872 |1236 |23034 |
+ROW |61873 |1238 |23160 |
+ROW |61874 |1238 |23161 |
+ROW |61875 |1225 |23319 |
+ROW |61876 |1226 |23320 |
+ROW |61877 |1228 |23321 |
+ROW |61878 |1230 |23322 |
+ROW |61879 |1232 |23323 |
+ROW |61880 |1234 |23324 |
+ROW |61881 |1236 |23325 |
+ROW |61882 |1238 |23326 |
+ROW |61883 |1161 |29548 |
+ROW |61884 |1227 |29549 |
+ROW |61885 |1229 |29550 |
+ROW |61886 |1231 |29551 |
+ROW |61887 |1233 |29552 |
+ROW |61888 |1235 |29553 |
+ROW |61889 |1237 |29554 |
+ROW |61890 |1219 |29555 |
+ROW |61891 |1241 |29558 |
+ROW |61892 |1242 |29559 |
+ROW |61893 |1241 |29560 |
+ROW |61894 |1269 |29995 |
+ROW |61895 |1192 |29996 |
+ROW |61896 |1269 |29997 |
+ROW |61897 |1240 |23287 |
+ROW |61898 |1240 |23288 |
+ROW |61899 |1240 |23327 |
+ROW |61900 |1171 |29557 |
+ROW |61901 |810 |27203 |
+ROW |61902 |807 |27207 |
+ROW |61903 |806 |27208 |
+ROW |61904 |810 |30086 |
+ROW |61905 |807 |30087 |
+ROW |61906 |807 |30088 |
+ROW |61907 |807 |30089 |
+ROW |61908 |808 |27212 |
+ROW |61909 |809 |27213 |
+ROW |61910 |810 |27214 |
+ROW |61911 |1279 |30091 |
+ROW |61912 |1279 |30092 |
+ROW |61913 |1068 |28323 |
+ROW |61914 |1068 |28324 |
+ROW |61915 |1062 |28325 |
+ROW |61916 |1062 |28326 |
+ROW |61917 |1064 |28327 |
+ROW |61918 |1064 |28328 |
+ROW |61919 |1066 |28329 |
+ROW |61920 |819 |27236 |
+ROW |61921 |819 |27237 |
+ROW |61922 |813 |27238 |
+ROW |61923 |814 |27240 |
+ROW |61924 |815 |30093 |
+ROW |61925 |816 |27246 |
+ROW |61926 |816 |27247 |
+ROW |61927 |817 |27248 |
+ROW |61928 |818 |27249 |
+ROW |61929 |818 |27250 |
+ROW |61930 |826 |27294 |
+ROW |61931 |831 |27295 |
+ROW |61932 |831 |27296 |
+ROW |61933 |835 |27297 |
+ROW |61934 |827 |30094 |
+ROW |61935 |836 |27299 |
+ROW |61936 |838 |27301 |
+ROW |61937 |837 |30095 |
+ROW |61938 |839 |30096 |
+ROW |61939 |829 |27312 |
+ROW |61940 |830 |27313 |
+ROW |61941 |828 |27314 |
+ROW |61942 |828 |27315 |
+ROW |61943 |833 |27316 |
+ROW |61944 |834 |27317 |
+ROW |61945 |832 |27318 |
+ROW |61946 |835 |27319 |
+ROW |61947 |835 |27320 |
+ROW |61948 |851 |27376 |
+ROW |61949 |852 |27378 |
+ROW |61950 |852 |27379 |
+ROW |61951 |852 |30097 |
+ROW |61952 |869 |27380 |
+ROW |61953 |870 |27382 |
+ROW |61954 |870 |27383 |
+ROW |61955 |858 |27385 |
+ROW |61956 |858 |27386 |
+ROW |61957 |1048 |28209 |
+ROW |61958 |1048 |28210 |
+ROW |61959 |858 |30098 |
+ROW |61960 |870 |30099 |
+ROW |61961 |1048 |30100 |
+ROW |61962 |848 |27415 |
+ROW |61963 |848 |27416 |
+ROW |61964 |849 |27417 |
+ROW |61965 |852 |27419 |
+ROW |61966 |853 |27420 |
+ROW |61967 |853 |27421 |
+ROW |61968 |854 |27422 |
+ROW |61969 |855 |27423 |
+ROW |61970 |1056 |28246 |
+ROW |61971 |848 |30101 |
+ROW |61972 |856 |27425 |
+ROW |61973 |856 |27426 |
+ROW |61974 |857 |27427 |
+ROW |61975 |858 |27428 |
+ROW |61976 |859 |27429 |
+ROW |61977 |859 |27430 |
+ROW |61978 |860 |27431 |
+ROW |61979 |861 |27432 |
+ROW |61980 |868 |27443 |
+ROW |61981 |868 |27444 |
+ROW |61982 |870 |27445 |
+ROW |61983 |871 |27446 |
+ROW |61984 |871 |27447 |
+ROW |61985 |872 |27448 |
+ROW |61986 |873 |27449 |
+ROW |61987 |1048 |28208 |
+ROW |61988 |1049 |28215 |
+ROW |61989 |1050 |28216 |
+ROW |61990 |1051 |28217 |
+ROW |61991 |1051 |28218 |
+ROW |61992 |1052 |28220 |
+ROW |61993 |1052 |28222 |
+ROW |61994 |1057 |28247 |
+ROW |61995 |856 |30102 |
+ROW |61996 |868 |30103 |
+ROW |61997 |1052 |30104 |
+ROW |61998 |877 |27478 |
+ROW |61999 |880 |27479 |
+ROW |62000 |881 |27480 |
+ROW |62001 |882 |27481 |
+ROW |62002 |882 |27482 |
+ROW |62003 |882 |27483 |
+ROW |62004 |882 |27484 |
+ROW |62005 |879 |27485 |
+ROW |62006 |878 |30105 |
+ROW |62007 |891 |27508 |
+ROW |62008 |891 |27509 |
+ROW |62009 |891 |27510 |
+ROW |62010 |886 |27511 |
+ROW |62011 |891 |30106 |
+ROW |62012 |888 |27517 |
+ROW |62013 |890 |27518 |
+ROW |62014 |889 |27519 |
+ROW |62015 |887 |30107 |
+ROW |62016 |900 |27543 |
+ROW |62017 |900 |27544 |
+ROW |62018 |900 |27545 |
+ROW |62019 |900 |27546 |
+ROW |62020 |895 |27547 |
+ROW |62021 |897 |27553 |
+ROW |62022 |899 |27554 |
+ROW |62023 |898 |27555 |
+ROW |62024 |896 |30108 |
+ROW |62025 |909 |27579 |
+ROW |62026 |909 |27580 |
+ROW |62027 |909 |27582 |
+ROW |62028 |909 |27583 |
+ROW |62029 |906 |27584 |
+ROW |62030 |906 |27585 |
+ROW |62031 |904 |27586 |
+ROW |62032 |909 |30109 |
+ROW |62033 |905 |27591 |
+ROW |62034 |907 |27593 |
+ROW |62035 |908 |27594 |
+ROW |62036 |908 |27595 |
+ROW |62037 |905 |30110 |
+ROW |62038 |905 |30111 |
+ROW |62039 |919 |27671 |
+ROW |62040 |921 |27672 |
+ROW |62041 |922 |27673 |
+ROW |62042 |923 |27674 |
+ROW |62043 |924 |27675 |
+ROW |62044 |924 |27676 |
+ROW |62045 |924 |27677 |
+ROW |62046 |924 |27678 |
+ROW |62047 |924 |27679 |
+ROW |62048 |920 |30112 |
+ROW |62049 |1036 |28141 |
+ROW |62050 |1036 |28142 |
+ROW |62051 |1031 |28143 |
+ROW |62052 |1033 |28150 |
+ROW |62053 |1032 |28153 |
+ROW |62054 |1034 |28154 |
+ROW |62055 |1035 |28155 |
+ROW |62056 |1033 |28156 |
+ROW |62057 |1036 |28157 |
+ROW |62058 |1036 |28158 |
+ROW |62059 |1032 |30113 |
+ROW |62060 |1032 |30114 |
+ROW |62061 |1032 |30115 |
+ROW |62062 |941 |27748 |
+ROW |62063 |941 |27749 |
+ROW |62064 |941 |27750 |
+ROW |62065 |939 |27751 |
+ROW |62066 |937 |27753 |
+ROW |62067 |941 |27754 |
+ROW |62068 |940 |27755 |
+ROW |62069 |938 |30116 |
+ROW |62070 |948 |27777 |
+ROW |62071 |948 |27778 |
+ROW |62072 |945 |27783 |
+ROW |62073 |945 |27784 |
+ROW |62074 |948 |27785 |
+ROW |62075 |946 |27786 |
+ROW |62076 |947 |27787 |
+ROW |62077 |957 |27812 |
+ROW |62078 |957 |27813 |
+ROW |62079 |951 |27814 |
+ROW |62080 |957 |30117 |
+ROW |62081 |954 |27821 |
+ROW |62082 |956 |27822 |
+ROW |62083 |955 |27823 |
+ROW |62084 |952 |28894 |
+ROW |62085 |953 |30118 |
+ROW |62086 |1044 |28200 |
+ROW |62087 |1044 |28201 |
+ROW |62088 |1045 |28202 |
+ROW |62089 |1045 |28203 |
+ROW |62090 |1047 |28204 |
+ROW |62091 |1047 |28205 |
+ROW |62092 |1046 |28206 |
+ROW |62093 |976 |27893 |
+ROW |62094 |976 |27894 |
+ROW |62095 |976 |27895 |
+ROW |62096 |974 |27897 |
+ROW |62097 |973 |27898 |
+ROW |62098 |973 |27900 |
+ROW |62099 |976 |30119 |
+ROW |62100 |973 |30120 |
+ROW |62101 |972 |27904 |
+ROW |62102 |974 |27905 |
+ROW |62103 |975 |27906 |
+ROW |62104 |975 |27907 |
+ROW |62105 |975 |27908 |
+ROW |62106 |985 |27930 |
+ROW |62107 |985 |27931 |
+ROW |62108 |981 |27935 |
+ROW |62109 |980 |27936 |
+ROW |62110 |985 |30121 |
+ROW |62111 |981 |30122 |
+ROW |62112 |981 |30123 |
+ROW |62113 |982 |27940 |
+ROW |62114 |982 |27941 |
+ROW |62115 |984 |27942 |
+ROW |62116 |983 |27943 |
+ROW |62117 |991 |27967 |
+ROW |62118 |991 |27968 |
+ROW |62119 |991 |27970 |
+ROW |62120 |991 |27971 |
+ROW |62121 |990 |27972 |
+ROW |62122 |990 |27973 |
+ROW |62123 |989 |27975 |
+ROW |62124 |1282 |30124 |
+ROW |62125 |991 |30125 |
+ROW |62126 |990 |30126 |
+ROW |62127 |1280 |30129 |
+ROW |62128 |1281 |30130 |
+ROW |62129 |997 |27997 |
+ROW |62130 |997 |27998 |
+ROW |62131 |997 |27999 |
+ROW |62132 |997 |28000 |
+ROW |62133 |995 |28003 |
+ROW |62134 |996 |30131 |
+ROW |62135 |1003 |28026 |
+ROW |62136 |1003 |28027 |
+ROW |62137 |1001 |28031 |
+ROW |62138 |1002 |30132 |
+ROW |62139 |1002 |30133 |
+ROW |62140 |1002 |30134 |
+ROW |62141 |1002 |30135 |
+ROW |62142 |1002 |30136 |
+ROW |62143 |1142 |29087 |
+ROW |62144 |1142 |29088 |
+ROW |62145 |1142 |29089 |
+ROW |62146 |1142 |29090 |
+ROW |62147 |1142 |29091 |
+ROW |62148 |1142 |29092 |
+ROW |62149 |1142 |29093 |
+ROW |62150 |1142 |29094 |
+ROW |62151 |1142 |29095 |
+ROW |62152 |1142 |29096 |
+ROW |62153 |1142 |29097 |
+ROW |62154 |1142 |29098 |
+ROW |62155 |1142 |29099 |
+ROW |62156 |1142 |29100 |
+ROW |62157 |1142 |29101 |
+ROW |62158 |1142 |29102 |
+ROW |62159 |1144 |29103 |
+ROW |62160 |1144 |29104 |
+ROW |62161 |1144 |29105 |
+ROW |62162 |1144 |29106 |
+ROW |62163 |1144 |29107 |
+ROW |62164 |1144 |29108 |
+ROW |62165 |1146 |29109 |
+ROW |62166 |1151 |29110 |
+ROW |62167 |1148 |29111 |
+ROW |62168 |1148 |29112 |
+ROW |62169 |1148 |29113 |
+ROW |62170 |1148 |29114 |
+ROW |62171 |1148 |29115 |
+ROW |62172 |1148 |29116 |
+ROW |62173 |1148 |29117 |
+ROW |62174 |1148 |29118 |
+ROW |62175 |1148 |29119 |
+ROW |62176 |1150 |29120 |
+ROW |62177 |1149 |29121 |
+ROW |62178 |1149 |29122 |
+ROW |62179 |1149 |29123 |
+ROW |62180 |1152 |29124 |
+ROW |62181 |1152 |29125 |
+ROW |62182 |1152 |29126 |
+ROW |62183 |1152 |29127 |
+ROW |62184 |1152 |29128 |
+ROW |62185 |1152 |29129 |
+ROW |62186 |1152 |29130 |
+ROW |62187 |1152 |29131 |
+ROW |62188 |1152 |29132 |
+ROW |62189 |1152 |29133 |
+ROW |62190 |1152 |29134 |
+ROW |62191 |1152 |29135 |
+ROW |62192 |1152 |29136 |
+ROW |62193 |1152 |29137 |
+ROW |62194 |1152 |29138 |
+ROW |62195 |1152 |29139 |
+ROW |62196 |1154 |29140 |
+ROW |62197 |1154 |29141 |
+ROW |62198 |1154 |29142 |
+ROW |62199 |1154 |29143 |
+ROW |62200 |1154 |29144 |
+ROW |62201 |1154 |29145 |
+ROW |62202 |1156 |29146 |
+ROW |62203 |1161 |29147 |
+ROW |62204 |1158 |29148 |
+ROW |62205 |1158 |29149 |
+ROW |62206 |1158 |29150 |
+ROW |62207 |1158 |29151 |
+ROW |62208 |1158 |29152 |
+ROW |62209 |1158 |29153 |
+ROW |62210 |1158 |29154 |
+ROW |62211 |1158 |29155 |
+ROW |62212 |1158 |29156 |
+ROW |62213 |1160 |29157 |
+ROW |62214 |1159 |29158 |
+ROW |62215 |1159 |29159 |
+ROW |62216 |1159 |29160 |
+ROW |62217 |1162 |29161 |
+ROW |62218 |1162 |29162 |
+ROW |62219 |1162 |29163 |
+ROW |62220 |1162 |29164 |
+ROW |62221 |1162 |29165 |
+ROW |62222 |1162 |29166 |
+ROW |62223 |1162 |29167 |
+ROW |62224 |1162 |29168 |
+ROW |62225 |1162 |29169 |
+ROW |62226 |1162 |29170 |
+ROW |62227 |1162 |29171 |
+ROW |62228 |1162 |29172 |
+ROW |62229 |1162 |29173 |
+ROW |62230 |1162 |29174 |
+ROW |62231 |1162 |29175 |
+ROW |62232 |1162 |29176 |
+ROW |62233 |1164 |29177 |
+ROW |62234 |1164 |29178 |
+ROW |62235 |1164 |29179 |
+ROW |62236 |1164 |29180 |
+ROW |62237 |1164 |29181 |
+ROW |62238 |1164 |29182 |
+ROW |62239 |1166 |29183 |
+ROW |62240 |1171 |29184 |
+ROW |62241 |1168 |29185 |
+ROW |62242 |1168 |29186 |
+ROW |62243 |1168 |29187 |
+ROW |62244 |1168 |29188 |
+ROW |62245 |1168 |29189 |
+ROW |62246 |1168 |29190 |
+ROW |62247 |1168 |29191 |
+ROW |62248 |1168 |29192 |
+ROW |62249 |1168 |29193 |
+ROW |62250 |1170 |29194 |
+ROW |62251 |1169 |29195 |
+ROW |62252 |1169 |29196 |
+ROW |62253 |1169 |29197 |
+ROW |62254 |1142 |29198 |
+ROW |62255 |1152 |29199 |
+ROW |62256 |1162 |29200 |
+ROW |62257 |1146 |29254 |
+ROW |62258 |1146 |29255 |
+ROW |62259 |1156 |29260 |
+ROW |62260 |1156 |29261 |
+ROW |62261 |1166 |29266 |
+ROW |62262 |1166 |29267 |
+ROW |62263 |1173 |29273 |
+ROW |62264 |1173 |29274 |
+ROW |62265 |1173 |29275 |
+ROW |62266 |1173 |29276 |
+ROW |62267 |1173 |29277 |
+ROW |62268 |1173 |29278 |
+ROW |62269 |1173 |29279 |
+ROW |62270 |1173 |29280 |
+ROW |62271 |1173 |29281 |
+ROW |62272 |1173 |29282 |
+ROW |62273 |1173 |29283 |
+ROW |62274 |1173 |29284 |
+ROW |62275 |1173 |29285 |
+ROW |62276 |1173 |29286 |
+ROW |62277 |1173 |29287 |
+ROW |62278 |1173 |29288 |
+ROW |62279 |1175 |29289 |
+ROW |62280 |1175 |29290 |
+ROW |62281 |1175 |29291 |
+ROW |62282 |1175 |29292 |
+ROW |62283 |1175 |29293 |
+ROW |62284 |1175 |29294 |
+ROW |62285 |1177 |29295 |
+ROW |62286 |1182 |29296 |
+ROW |62287 |1179 |29297 |
+ROW |62288 |1179 |29298 |
+ROW |62289 |1179 |29299 |
+ROW |62290 |1179 |29300 |
+ROW |62291 |1179 |29301 |
+ROW |62292 |1179 |29302 |
+ROW |62293 |1179 |29303 |
+ROW |62294 |1179 |29304 |
+ROW |62295 |1179 |29305 |
+ROW |62296 |1181 |29306 |
+ROW |62297 |1180 |29307 |
+ROW |62298 |1180 |29308 |
+ROW |62299 |1180 |29309 |
+ROW |62300 |1183 |29310 |
+ROW |62301 |1183 |29311 |
+ROW |62302 |1183 |29312 |
+ROW |62303 |1183 |29313 |
+ROW |62304 |1183 |29314 |
+ROW |62305 |1183 |29315 |
+ROW |62306 |1183 |29316 |
+ROW |62307 |1183 |29317 |
+ROW |62308 |1183 |29318 |
+ROW |62309 |1183 |29319 |
+ROW |62310 |1183 |29320 |
+ROW |62311 |1183 |29321 |
+ROW |62312 |1183 |29322 |
+ROW |62313 |1183 |29323 |
+ROW |62314 |1183 |29324 |
+ROW |62315 |1183 |29325 |
+ROW |62316 |1185 |29326 |
+ROW |62317 |1185 |29327 |
+ROW |62318 |1185 |29328 |
+ROW |62319 |1185 |29329 |
+ROW |62320 |1185 |29330 |
+ROW |62321 |1185 |29331 |
+ROW |62322 |1187 |29332 |
+ROW |62323 |1192 |29333 |
+ROW |62324 |1189 |29334 |
+ROW |62325 |1189 |29335 |
+ROW |62326 |1189 |29336 |
+ROW |62327 |1189 |29337 |
+ROW |62328 |1189 |29338 |
+ROW |62329 |1189 |29339 |
+ROW |62330 |1189 |29340 |
+ROW |62331 |1189 |29341 |
+ROW |62332 |1189 |29342 |
+ROW |62333 |1191 |29343 |
+ROW |62334 |1190 |29344 |
+ROW |62335 |1190 |29345 |
+ROW |62336 |1190 |29346 |
+ROW |62337 |1173 |29347 |
+ROW |62338 |1183 |29348 |
+ROW |62339 |1177 |29385 |
+ROW |62340 |1177 |29386 |
+ROW |62341 |1187 |29391 |
+ROW |62342 |1187 |29392 |
+ROW |62343 |1201 |29395 |
+ROW |62344 |1196 |29396 |
+ROW |62345 |1196 |29397 |
+ROW |62346 |1194 |29398 |
+ROW |62347 |1193 |29399 |
+ROW |62348 |1196 |29400 |
+ROW |62349 |1196 |29401 |
+ROW |62350 |1196 |29402 |
+ROW |62351 |1196 |29403 |
+ROW |62352 |1194 |29404 |
+ROW |62353 |1193 |29405 |
+ROW |62354 |1193 |29406 |
+ROW |62355 |1193 |29407 |
+ROW |62356 |1193 |29408 |
+ROW |62357 |1193 |29409 |
+ROW |62358 |1193 |29410 |
+ROW |62359 |1193 |29411 |
+ROW |62360 |1193 |29412 |
+ROW |62361 |1193 |29413 |
+ROW |62362 |1194 |29414 |
+ROW |62363 |1197 |29415 |
+ROW |62364 |1193 |29416 |
+ROW |62365 |1193 |29417 |
+ROW |62366 |1193 |29418 |
+ROW |62367 |1193 |29419 |
+ROW |62368 |1193 |29420 |
+ROW |62369 |1199 |29421 |
+ROW |62370 |1195 |29422 |
+ROW |62371 |1194 |29423 |
+ROW |62372 |1194 |29424 |
+ROW |62373 |1194 |29425 |
+ROW |62374 |1193 |29426 |
+ROW |62375 |1193 |29427 |
+ROW |62376 |1195 |29428 |
+ROW |62377 |1201 |29450 |
+ROW |62378 |1201 |29451 |
+ROW |62379 |1128 |28978 |
+ROW |62380 |1128 |28979 |
+ROW |62381 |1128 |28980 |
+ROW |62382 |1128 |28981 |
+ROW |62383 |1128 |28982 |
+ROW |62384 |1128 |28983 |
+ROW |62385 |1128 |28984 |
+ROW |62386 |1128 |28985 |
+ROW |62387 |1128 |28986 |
+ROW |62388 |1130 |28987 |
+ROW |62389 |1130 |28988 |
+ROW |62390 |1130 |28989 |
+ROW |62391 |1130 |28990 |
+ROW |62392 |1130 |28991 |
+ROW |62393 |1130 |28992 |
+ROW |62394 |1132 |28993 |
+ROW |62395 |1132 |28994 |
+ROW |62396 |1132 |28995 |
+ROW |62397 |1132 |28996 |
+ROW |62398 |1132 |28997 |
+ROW |62399 |1132 |28998 |
+ROW |62400 |1132 |28999 |
+ROW |62401 |1132 |29000 |
+ROW |62402 |1132 |29001 |
+ROW |62403 |1134 |29002 |
+ROW |62404 |1134 |29003 |
+ROW |62405 |1134 |29004 |
+ROW |62406 |1134 |29005 |
+ROW |62407 |1134 |29006 |
+ROW |62408 |1134 |29007 |
+ROW |62409 |1130 |29017 |
+ROW |62410 |1130 |29018 |
+ROW |62411 |1130 |29019 |
+ROW |62412 |1130 |29020 |
+ROW |62413 |1130 |29021 |
+ROW |62414 |1130 |29022 |
+ROW |62415 |1130 |29023 |
+ROW |62416 |1130 |29024 |
+ROW |62417 |1130 |29025 |
+ROW |62418 |1130 |29026 |
+ROW |62419 |1134 |29034 |
+ROW |62420 |1134 |29035 |
+ROW |62421 |1134 |29036 |
+ROW |62422 |1134 |29037 |
+ROW |62423 |1134 |29038 |
+ROW |62424 |1134 |29039 |
+ROW |62425 |1134 |29040 |
+ROW |62426 |1134 |29041 |
+ROW |62427 |1134 |29042 |
+ROW |62428 |1134 |29043 |
+ROW |62429 |1130 |29048 |
+ROW |62430 |1134 |29049 |
+ROW |62431 |1202 |29454 |
+ROW |62432 |1202 |29455 |
+ROW |62433 |1202 |29456 |
+ROW |62434 |1202 |29457 |
+ROW |62435 |1202 |29458 |
+ROW |62436 |1202 |29459 |
+ROW |62437 |1203 |29460 |
+ROW |62438 |1203 |29461 |
+ROW |62439 |1203 |29462 |
+ROW |62440 |1203 |29463 |
+ROW |62441 |1203 |29464 |
+ROW |62442 |1203 |29465 |
+ROW |62443 |1203 |29466 |
+ROW |62444 |1203 |29467 |
+ROW |62445 |1203 |29468 |
+ROW |62446 |1203 |29469 |
+ROW |62447 |1203 |29470 |
+ROW |62448 |1206 |29471 |
+ROW |62449 |1209 |29472 |
+ROW |62450 |1207 |29473 |
+ROW |62451 |1207 |29474 |
+ROW |62452 |1207 |29475 |
+ROW |62453 |1207 |29476 |
+ROW |62454 |1207 |29477 |
+ROW |62455 |1208 |29478 |
+ROW |62456 |1211 |29479 |
+ROW |62457 |1202 |30137 |
+ROW |62458 |1212 |29480 |
+ROW |62459 |1212 |29481 |
+ROW |62460 |1212 |29482 |
+ROW |62461 |1212 |29483 |
+ROW |62462 |1212 |29484 |
+ROW |62463 |1212 |29485 |
+ROW |62464 |1213 |29486 |
+ROW |62465 |1213 |29487 |
+ROW |62466 |1213 |29488 |
+ROW |62467 |1213 |29489 |
+ROW |62468 |1213 |29490 |
+ROW |62469 |1213 |29491 |
+ROW |62470 |1213 |29492 |
+ROW |62471 |1213 |29493 |
+ROW |62472 |1213 |29494 |
+ROW |62473 |1213 |29495 |
+ROW |62474 |1213 |29496 |
+ROW |62475 |1216 |29497 |
+ROW |62476 |1219 |29498 |
+ROW |62477 |1217 |29499 |
+ROW |62478 |1217 |29500 |
+ROW |62479 |1217 |29501 |
+ROW |62480 |1217 |29502 |
+ROW |62481 |1217 |29503 |
+ROW |62482 |1218 |29504 |
+ROW |62483 |1216 |29505 |
+ROW |62484 |1212 |30138 |
+ROW |62485 |1310 |30425 |
+ROW |62486 |1311 |30426 |
+ROW |62487 |1243 |29561 |
+ROW |62488 |1243 |29562 |
+ROW |62489 |1243 |29563 |
+ROW |62490 |1243 |29564 |
+ROW |62491 |1243 |29565 |
+ROW |62492 |1243 |29566 |
+ROW |62493 |1244 |29567 |
+ROW |62494 |1244 |29568 |
+ROW |62495 |1244 |29569 |
+ROW |62496 |1244 |29570 |
+ROW |62497 |1244 |29571 |
+ROW |62498 |1244 |29572 |
+ROW |62499 |1244 |29573 |
+ROW |62500 |1244 |29574 |
+ROW |62501 |1244 |29575 |
+ROW |62502 |1244 |29576 |
+ROW |62503 |1244 |29577 |
+ROW |62504 |1247 |29578 |
+ROW |62505 |1250 |29579 |
+ROW |62506 |1248 |29580 |
+ROW |62507 |1248 |29581 |
+ROW |62508 |1248 |29582 |
+ROW |62509 |1248 |29583 |
+ROW |62510 |1248 |29584 |
+ROW |62511 |1249 |29585 |
+ROW |62512 |1252 |29586 |
+ROW |62513 |1243 |30139 |
+ROW |62514 |1253 |29587 |
+ROW |62515 |1253 |29588 |
+ROW |62516 |1253 |29589 |
+ROW |62517 |1253 |29590 |
+ROW |62518 |1253 |29591 |
+ROW |62519 |1253 |29592 |
+ROW |62520 |1254 |29593 |
+ROW |62521 |1254 |29594 |
+ROW |62522 |1254 |29595 |
+ROW |62523 |1254 |29596 |
+ROW |62524 |1254 |29597 |
+ROW |62525 |1254 |29598 |
+ROW |62526 |1254 |29599 |
+ROW |62527 |1254 |29600 |
+ROW |62528 |1254 |29601 |
+ROW |62529 |1254 |29602 |
+ROW |62530 |1254 |29603 |
+ROW |62531 |1257 |29604 |
+ROW |62532 |1242 |29605 |
+ROW |62533 |1258 |29606 |
+ROW |62534 |1258 |29607 |
+ROW |62535 |1258 |29608 |
+ROW |62536 |1258 |29609 |
+ROW |62537 |1258 |29610 |
+ROW |62538 |1259 |29611 |
+ROW |62539 |1257 |29612 |
+ROW |62540 |1253 |30140 |
+ROW |62541 |1312 |30429 |
+ROW |62542 |1313 |30430 |
+ROW |62543 |1325 |30685 |
+ROW |62544 |1277 |30066 |
+ROW |62545 |1277 |30067 |
+ROW |62546 |1277 |30068 |
+ROW |62547 |1277 |30069 |
+ROW |62548 |1277 |30070 |
+ROW |62549 |1276 |30071 |
+ROW |62550 |1271 |30072 |
+ROW |62551 |1274 |30073 |
+ROW |62552 |1274 |30074 |
+ROW |62553 |1273 |30075 |
+ROW |62554 |1275 |30076 |
+ROW |62555 |1275 |30077 |
+ROW |62556 |1275 |30078 |
+ROW |62557 |1275 |30079 |
+ROW |62558 |1278 |30080 |
+ROW |62559 |1278 |30081 |
+ROW |62560 |1278 |30082 |
+ROW |62561 |1272 |30083 |
+ROW |62562 |1272 |30084 |
+ROW |62563 |1272 |30085 |
+ROW |62564 |1070 |28341 |
+ROW |62565 |1073 |28342 |
+ROW |62566 |1073 |28344 |
+ROW |62567 |1073 |28345 |
+ROW |62568 |1073 |30141 |
+ROW |62569 |1076 |28354 |
+ROW |62570 |1076 |28355 |
+ROW |62571 |1076 |28356 |
+ROW |62572 |1076 |28357 |
+ROW |62573 |1075 |28358 |
+ROW |62574 |1072 |28359 |
+ROW |62575 |1072 |28360 |
+ROW |62576 |1074 |28361 |
+ROW |62577 |1074 |28362 |
+ROW |62578 |1074 |28363 |
+ROW |62579 |1074 |28364 |
+ROW |62580 |1074 |28365 |
+ROW |62581 |1074 |28366 |
+ROW |62582 |1074 |28367 |
+ROW |62583 |1077 |28368 |
+ROW |62584 |1077 |28369 |
+ROW |62585 |1077 |28370 |
+ROW |62586 |1077 |28371 |
+ROW |62587 |1077 |28372 |
+ROW |62588 |1077 |28373 |
+ROW |62589 |1071 |28374 |
+ROW |62590 |1071 |28375 |
+ROW |62591 |1071 |28376 |
+ROW |62592 |1085 |28388 |
+ROW |62593 |1082 |28390 |
+ROW |62594 |1082 |28391 |
+ROW |62595 |1079 |29994 |
+ROW |62596 |1085 |28404 |
+ROW |62597 |1085 |28405 |
+ROW |62598 |1085 |28406 |
+ROW |62599 |1085 |28407 |
+ROW |62600 |1085 |28408 |
+ROW |62601 |1085 |28409 |
+ROW |62602 |1085 |28410 |
+ROW |62603 |1084 |28411 |
+ROW |62604 |1081 |28412 |
+ROW |62605 |1080 |28413 |
+ROW |62606 |1080 |28414 |
+ROW |62607 |1080 |28415 |
+ROW |62608 |1080 |28416 |
+ROW |62609 |1083 |28417 |
+ROW |62610 |1083 |28418 |
+ROW |62611 |1083 |28419 |
+ROW |62612 |1083 |28420 |
+ROW |62613 |1083 |28421 |
+ROW |62614 |1083 |28422 |
+ROW |62615 |1086 |28423 |
+ROW |62616 |1086 |28424 |
+ROW |62617 |1086 |28425 |
+ROW |62618 |1088 |28437 |
+ROW |62619 |1090 |28438 |
+ROW |62620 |1090 |28439 |
+ROW |62621 |1093 |28446 |
+ROW |62622 |1093 |28447 |
+ROW |62623 |1093 |28448 |
+ROW |62624 |1092 |28449 |
+ROW |62625 |1089 |28450 |
+ROW |62626 |1089 |28451 |
+ROW |62627 |1091 |28452 |
+ROW |62628 |1091 |28453 |
+ROW |62629 |1095 |28465 |
+ROW |62630 |1097 |28466 |
+ROW |62631 |1097 |28467 |
+ROW |62632 |1100 |28474 |
+ROW |62633 |1100 |28475 |
+ROW |62634 |1100 |28476 |
+ROW |62635 |1099 |28477 |
+ROW |62636 |1096 |28478 |
+ROW |62637 |1096 |28479 |
+ROW |62638 |1098 |28480 |
+ROW |62639 |1098 |28481 |
+ROW |62640 |1104 |28495 |
+ROW |62641 |1103 |28496 |
TABLE |mappings
FIELDS|mappingid|valuemapid|value|newvalue |
@@ -19285,2773 +19285,2773 @@ 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 |34144 |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 |34145 |28743 |1 |20 |10m |0 | |
-ROW |34146 |28749 |1 |12 |$["Total Accesses"] |0 | |
-ROW |34147 |28750 |1 |12 |$.Workers.reading |0 | |
-ROW |34148 |28751 |1 |12 |$["Total kBytes"] |0 | |
-ROW |34149 |28751 |2 |1 |1024 |0 | |
-ROW |34150 |28752 |1 |12 |$["Total kBytes"] |0 | |
-ROW |34151 |28752 |2 |1 |1024 |0 | |
-ROW |34152 |28752 |3 |10 | |0 | |
-ROW |34153 |28753 |1 |12 |$.Workers.waiting |0 | |
-ROW |34154 |28754 |1 |12 |$.Workers.starting |0 | |
-ROW |34155 |28755 |1 |12 |$.Workers.slot |0 | |
-ROW |34156 |28756 |1 |12 |$.Workers.sending |0 | |
-ROW |34157 |28757 |1 |12 |$.Workers.logging |0 | |
-ROW |34158 |28758 |1 |12 |$.ServerUptimeSeconds |0 | |
-ROW |34159 |28759 |1 |12 |$.Workers.keepalive |0 | |
-ROW |34160 |28760 |1 |12 |$.Workers.cleanup |0 | |
-ROW |34161 |28761 |1 |12 |$["Total Accesses"] |0 | |
-ROW |34162 |28761 |2 |10 | |0 | |
-ROW |34163 |28762 |1 |12 |$.Workers.dnslookup |0 | |
-ROW |34164 |28763 |1 |12 |$.Workers.closing |0 | |
-ROW |34165 |28764 |1 |12 |$.IdleWorkers |0 | |
-ROW |34166 |28765 |1 |12 |$.BusyWorkers |0 | |
-ROW |34167 |28766 |1 |12 |$.ServerVersion |0 | |
-ROW |34168 |28766 |2 |20 |1d |0 | |
-ROW |34169 |28767 |1 |12 |$.Workers.finishing |0 | |
-ROW |34170 |28768 |1 |12 |$.ServerMPM |0 | |
-ROW |34171 |28768 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |34172 |28769 |1 |12 |$.ConnsAsyncClosing |0 | |
-ROW |34173 |28770 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
-ROW |34174 |28771 |1 |12 |$.ConnsAsyncWriting |0 | |
-ROW |34175 |28772 |1 |12 |$.ConnsTotal |0 | |
-ROW |34176 |28773 |1 |12 |$.BytesPerReq |0 | |
-ROW |34177 |28774 |1 |12 |$.Processes |0 | |
-ROW |34178 |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 |34179 |28776 |1 |20 |10m |0 | |
-ROW |34180 |28778 |1 |12 |$.Workers.starting |0 | |
-ROW |34181 |28779 |1 |12 |$.Workers.slot |0 | |
-ROW |34182 |28780 |1 |12 |$.Workers.sending |0 | |
-ROW |34183 |28781 |1 |12 |$.Workers.reading |0 | |
-ROW |34184 |28782 |1 |12 |$.Workers.logging |0 | |
-ROW |34185 |28783 |1 |12 |$.Workers.keepalive |0 | |
-ROW |34186 |28784 |1 |12 |$.Workers.cleanup |0 | |
-ROW |34187 |28785 |1 |12 |$.Workers.finishing |0 | |
-ROW |34188 |28786 |1 |12 |$.Workers.closing |0 | |
-ROW |34189 |28787 |1 |12 |$.Workers.dnslookup |0 | |
-ROW |34190 |28788 |1 |12 |$.IdleWorkers |0 | |
-ROW |34191 |28789 |1 |12 |$.BusyWorkers |0 | |
-ROW |34192 |28790 |1 |12 |$.ServerVersion |0 | |
-ROW |34193 |28790 |2 |20 |1d |0 | |
-ROW |34194 |28791 |1 |12 |$.ServerUptimeSeconds |0 | |
-ROW |34195 |28792 |1 |12 |$["Total Accesses"] |0 | |
-ROW |34196 |28793 |1 |12 |$["Total Accesses"] |0 | |
-ROW |34197 |28793 |2 |10 | |0 | |
-ROW |34198 |28794 |1 |12 |$["Total kBytes"] |0 | |
-ROW |34199 |28794 |2 |1 |1024 |0 | |
-ROW |34200 |28794 |3 |10 | |0 | |
-ROW |34201 |28795 |1 |12 |$["Total kBytes"] |0 | |
-ROW |34202 |28795 |2 |1 |1024 |0 | |
-ROW |34203 |28796 |1 |12 |$.Workers.waiting |0 | |
-ROW |34204 |28797 |1 |12 |$.ServerMPM |0 | |
-ROW |34205 |28797 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |34206 |28798 |1 |12 |$.ConnsAsyncClosing |0 | |
-ROW |34207 |28799 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
-ROW |34208 |28800 |1 |12 |$.ConnsAsyncWriting |0 | |
-ROW |34209 |28801 |1 |12 |$.ConnsTotal |0 | |
-ROW |34210 |28802 |1 |12 |$.BytesPerReq |0 | |
-ROW |34211 |28803 |1 |12 |$.Processes |0 | |
-ROW |34212 |30530 |1 |20 |10m |0 | |
-ROW |34213 |30532 |1 |12 |$.Architecture |0 | |
-ROW |34214 |30532 |2 |20 |1d |0 | |
-ROW |34215 |30533 |1 |12 |$.LiveRestoreEnabled |0 | |
-ROW |34216 |30533 |2 |6 | |0 | |
-ROW |34217 |30533 |3 |20 |1d |0 | |
-ROW |34218 |30534 |1 |12 |$.LoggingDriver |0 | |
-ROW |34219 |30534 |2 |20 |1d |0 | |
-ROW |34220 |30535 |1 |12 |$.MemoryLimit |0 | |
-ROW |34221 |30535 |2 |6 | |0 | |
-ROW |34222 |30535 |3 |20 |1d |0 | |
-ROW |34223 |30536 |1 |12 |$.MemTotal |0 | |
-ROW |34224 |30537 |1 |12 |$.Name |0 | |
-ROW |34225 |30538 |1 |12 |$.NCPU |0 | |
-ROW |34226 |30539 |1 |12 |$.NFd |0 | |
-ROW |34227 |30540 |1 |12 |$.NEventsListener |0 | |
-ROW |34228 |30541 |1 |12 |$.KernelVersion |0 | |
-ROW |34229 |30541 |2 |20 |1d |0 | |
-ROW |34230 |30542 |1 |12 |$.OomKillDisable |0 | |
-ROW |34231 |30542 |2 |6 | |0 | |
-ROW |34232 |30542 |3 |20 |1d |0 | |
-ROW |34233 |30543 |1 |12 |$.OperatingSystem |0 | |
-ROW |34234 |30543 |2 |20 |1d |0 | |
-ROW |34235 |30544 |1 |12 |$.OSType |0 | |
-ROW |34236 |30544 |2 |20 |1d |0 | |
-ROW |34237 |30545 |1 |12 |$.PidsLimit |0 | |
-ROW |34238 |30545 |2 |6 | |0 | |
-ROW |34239 |30545 |3 |20 |1d |0 | |
-ROW |34240 |30546 |1 |12 |$.DockerRootDir |0 | |
-ROW |34241 |30546 |2 |20 |1d |0 | |
-ROW |34242 |30547 |1 |12 |$.ServerVersion |0 | |
-ROW |34243 |30547 |2 |20 |1d |0 | |
-ROW |34244 |30548 |1 |12 |$.SwapLimit |0 | |
-ROW |34245 |30548 |2 |6 | |0 | |
-ROW |34246 |30548 |3 |20 |1d |0 | |
-ROW |34247 |30549 |1 |12 |$.LayersSize |0 | |
-ROW |34248 |30550 |1 |12 |$.IPv4Forwarding |0 | |
-ROW |34249 |30550 |2 |6 | |0 | |
-ROW |34250 |30550 |3 |20 |1d |0 | |
-ROW |34251 |30551 |1 |12 |$.KernelMemory |0 | |
-ROW |34252 |30551 |2 |6 | |0 | |
-ROW |34253 |30551 |3 |20 |1d |0 | |
-ROW |34254 |30552 |1 |12 |$.CPUSet |0 | |
-ROW |34255 |30552 |2 |6 | |0 | |
-ROW |34256 |30552 |3 |20 |1d |0 | |
-ROW |34257 |30553 |1 |12 |$.Containers[*].SizeRw.sum() |0 | |
-ROW |34258 |30554 |1 |12 |$.ContainersPaused |0 | |
-ROW |34259 |30555 |1 |12 |$.ContainersRunning |0 | |
-ROW |34260 |30556 |1 |12 |$.ContainersStopped |0 | |
-ROW |34261 |30557 |1 |12 |$.Containers |0 | |
-ROW |34262 |30558 |1 |12 |$.CpuCfsPeriod |0 | |
-ROW |34263 |30558 |2 |6 | |0 | |
-ROW |34264 |30558 |3 |20 |1d |0 | |
-ROW |34265 |30559 |1 |12 |$.CpuCfsQuota |0 | |
-ROW |34266 |30559 |2 |6 | |0 | |
-ROW |34267 |30559 |3 |20 |1d |0 | |
-ROW |34268 |30560 |1 |12 |$.CPUShares |0 | |
-ROW |34269 |30560 |2 |6 | |0 | |
-ROW |34270 |30560 |3 |20 |1d |0 | |
-ROW |34271 |30561 |1 |12 |$.KernelMemoryTCP |0 | |
-ROW |34272 |30561 |2 |6 | |0 | |
-ROW |34273 |30561 |3 |20 |1d |0 | |
-ROW |34274 |30562 |1 |12 |$.Debug |0 | |
-ROW |34275 |30562 |2 |6 | |0 | |
-ROW |34276 |30562 |3 |20 |1d |0 | |
-ROW |34277 |30563 |1 |12 |$.DefaultRuntime |0 | |
-ROW |34278 |30563 |2 |20 |1d |0 | |
-ROW |34279 |30564 |1 |12 |$.Driver |0 | |
-ROW |34280 |30564 |2 |20 |1d |0 | |
-ROW |34281 |30565 |1 |12 |$.NGoroutines |0 | |
-ROW |34282 |30566 |1 |12 |$.Images[*].Size.sum() |0 | |
-ROW |34283 |30567 |1 |12 |$.length() |0 | |
-ROW |34284 |30568 |1 |12 |$.Images |0 | |
-ROW |34285 |30569 |1 |12 |$.CgroupDriver |0 | |
-ROW |34286 |30569 |2 |20 |1d |0 | |
-ROW |34287 |30570 |1 |12 |$.Volumes[*].UsageData.Size.sum() |0 | |
-ROW |34288 |30575 |1 |12 |$.cpu_stats.online_cpus |0 | |
-ROW |34289 |30576 |1 |12 |$.memory_stats.commitbytes |0 | |
-ROW |34290 |30577 |1 |12 |$.memory_stats.commitpeakbytes |0 | |
-ROW |34291 |30578 |1 |12 |$.memory_stats.max_usage |0 | |
-ROW |34292 |30579 |1 |12 |$.memory_stats.privateworkingset |0 | |
-ROW |34293 |30580 |1 |12 |$.memory_stats.usage |0 | |
-ROW |34294 |30581 |1 |12 |$.Created |0 | |
-ROW |34295 |30581 |2 |20 |1d |0 | |
-ROW |34296 |30582 |1 |12 |$.cpu_stats.cpu_usage.total_usage |0 | |
-ROW |34297 |30582 |2 |10 | |0 | |
-ROW |34298 |30582 |3 |1 |1.0E-9 |0 | |
-ROW |34299 |30583 |1 |12 |$.networks[*].rx_bytes.sum() |2 |0 |
-ROW |34300 |30583 |2 |10 | |0 | |
-ROW |34301 |30584 |1 |12 |$.networks[*].rx_dropped.sum() |2 |0 |
-ROW |34302 |30584 |2 |10 | |0 | |
-ROW |34303 |30585 |1 |12 |$.networks[*].rx_errors.sum() |2 |0 |
-ROW |34304 |30585 |2 |10 | |0 | |
-ROW |34305 |30586 |1 |12 |$.networks[*].rx_packets.sum() |2 |0 |
-ROW |34306 |30586 |2 |10 | |0 | |
-ROW |34307 |30587 |1 |12 |$.networks[*].tx_bytes.sum() |2 |0 |
-ROW |34308 |30587 |2 |10 | |0 | |
-ROW |34309 |30588 |1 |12 |$.networks[*].tx_dropped.sum() |2 |0 |
-ROW |34310 |30588 |2 |10 | |0 | |
-ROW |34311 |30589 |1 |12 |$.networks[*].tx_errors.sum() |2 |0 |
-ROW |34312 |30589 |2 |10 | |0 | |
-ROW |34313 |30590 |1 |12 |$.cpu_stats.cpu_usage.usage_in_usermode |0 | |
-ROW |34314 |30590 |2 |10 | |0 | |
-ROW |34315 |30590 |3 |1 |1.0E-9 |0 | |
-ROW |34316 |30591 |1 |12 |$.cpu_stats.throttling_data.periods |0 | |
-ROW |34317 |30592 |1 |12 |$.State.FinishedAt |0 | |
-ROW |34318 |30592 |2 |20 |1d |0 | |
-ROW |34319 |30593 |1 |12 |$.State.OOMKilled |0 | |
-ROW |34320 |30593 |2 |6 | |0 | |
-ROW |34321 |30594 |1 |12 |$[?(@.Names[0] == "{#NAME}")].Image.first() |0 | |
-ROW |34322 |30594 |2 |20 |1d |0 | |
-ROW |34323 |30595 |1 |12 |$.RestartCount |0 | |
-ROW |34324 |30596 |1 |12 |$.State.StartedAt |0 | |
-ROW |34325 |30596 |2 |20 |1d |0 | |
-ROW |34326 |30597 |1 |12 |$.State.Dead |0 | |
-ROW |34327 |30597 |2 |6 | |0 | |
-ROW |34328 |30598 |1 |12 |$.State.Error |0 | |
-ROW |34329 |30598 |2 |20 |1d |0 | |
-ROW |34330 |30599 |1 |12 |$.State.ExitCode |0 | |
-ROW |34331 |30599 |2 |20 |1d |0 | |
-ROW |34332 |30600 |1 |12 |$.State.Paused |0 | |
-ROW |34333 |30600 |2 |6 | |0 | |
-ROW |34334 |30601 |1 |12 |$.cpu_stats.throttling_data.throttled_time |0 | |
-ROW |34335 |30601 |2 |1 |1.0E-9 |0 | |
-ROW |34336 |30602 |1 |12 |$.State.Pid |0 | |
-ROW |34337 |30602 |2 |20 |1d |0 | |
-ROW |34338 |30603 |1 |12 |$.State.Restarting |0 | |
-ROW |34339 |30603 |2 |6 | |0 | |
-ROW |34340 |30604 |1 |12 |$.State.Running |0 | |
-ROW |34341 |30604 |2 |6 | |0 | |
-ROW |34342 |30605 |1 |12 |$.State.Status |0 | |
-ROW |34343 |30605 |2 |20 |1h |0 | |
-ROW |34344 |30606 |1 |12 |$.cpu_stats.cpu_usage.usage_in_kernelmode |0 | |
-ROW |34345 |30606 |2 |10 | |0 | |
-ROW |34346 |30606 |3 |1 |1.0E-9 |0 | |
-ROW |34347 |30607 |1 |12 |$.cpu_stats.throttling_data.throttled_periods |0 | |
-ROW |34348 |30608 |1 |12 |$.networks[*].tx_packets.sum() |2 |0 |
-ROW |34349 |30608 |2 |10 | |0 | |
-ROW |34350 |30609 |1 |12 |$[?(@.Id == "{#ID}")].Created.first() |0 | |
-ROW |34351 |30609 |2 |20 |1d |0 | |
-ROW |34352 |30610 |1 |12 |$[?(@.Id == "{#ID}")].Size.first() |0 | |
-ROW |34353 |30690 |1 |20 |10m |0 | |
-ROW |34354 |30695 |1 |12 |$.indices.docs.count |0 | |
-ROW |34355 |30695 |2 |20 |1h |0 | |
-ROW |34356 |30696 |1 |12 |$.nodes.jvm.max_uptime_in_millis |0 | |
-ROW |34357 |30696 |2 |1 |0.001 |0 | |
-ROW |34358 |30697 |1 |12 |$.nodes.fs.total_in_bytes |0 | |
-ROW |34359 |30697 |2 |20 |1h |0 | |
-ROW |34360 |30698 |1 |12 |$.nodes.fs.available_in_bytes |0 | |
-ROW |34361 |30698 |2 |20 |1h |0 | |
-ROW |34362 |30699 |1 |12 |$.nodes.count.master |0 | |
-ROW |34363 |30699 |2 |20 |1h |0 | |
-ROW |34364 |30700 |1 |12 |$.nodes.count.ingest |0 | |
-ROW |34365 |30700 |2 |20 |1h |0 | |
-ROW |34366 |30701 |1 |12 |$.nodes.count.data |0 | |
-ROW |34367 |30701 |2 |20 |1h |0 | |
-ROW |34368 |30702 |1 |12 |$.delayed_unassigned_shards |0 | |
-ROW |34369 |30703 |1 |12 |$.indices.count |0 | |
-ROW |34370 |30703 |2 |20 |1h |0 | |
-ROW |34371 |30704 |1 |12 |$.task_max_waiting_in_queue_millis |0 | |
-ROW |34372 |30704 |2 |1 |0.001 |0 | |
-ROW |34373 |30705 |1 |12 |$.status |0 | |
-ROW |34374 |30705 |2 |21 |var state = ['green', 'yellow', 'red'];&bsn;&bsn;return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());&bsn; |0 | |
-ROW |34375 |30705 |3 |20 |1h |0 | |
-ROW |34376 |30706 |1 |12 |$.relocating_shards |0 | |
-ROW |34377 |30707 |1 |12 |$.number_of_pending_tasks |0 | |
-ROW |34378 |30708 |1 |12 |$.number_of_nodes |0 | |
-ROW |34379 |30708 |2 |20 |1h |0 | |
-ROW |34380 |30709 |1 |12 |$.number_of_data_nodes |0 | |
-ROW |34381 |30709 |2 |20 |1h |0 | |
-ROW |34382 |30710 |1 |12 |$.initializing_shards |0 | |
-ROW |34383 |30711 |1 |12 |$.active_shards_percent_as_number |0 | |
-ROW |34384 |30711 |2 |21 |return (100 - value) |0 | |
-ROW |34385 |30712 |1 |12 |$.unassigned_shards |0 | |
-ROW |34386 |30713 |1 |12 |$.nodes.[*] |0 | |
-ROW |34387 |30713 |2 |20 |1d |0 | |
-ROW |34388 |30718 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.active.first() |0 | |
-ROW |34389 |30719 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_total.first() |0 | |
-ROW |34390 |30719 |2 |20 |1h |0 | |
-ROW |34391 |30720 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_total.first() |0 | |
-ROW |34392 |30720 |2 |10 | |0 | |
-ROW |34393 |30721 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_committed_in_bytes.first() |0 | |
-ROW |34394 |30721 |2 |20 |1h |0 | |
-ROW |34395 |30722 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_max_in_bytes.first() |0 | |
-ROW |34396 |30722 |2 |20 |1d |0 | |
-ROW |34397 |30723 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_used_in_bytes.first() |0 | |
-ROW |34398 |30723 |2 |20 |1h |0 | |
-ROW |34399 |30724 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_used_percent.first() |0 | |
-ROW |34400 |30724 |2 |20 |1h |0 | |
-ROW |34401 |30725 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.uptime_in_millis.first() |0 | |
-ROW |34402 |30725 |2 |1 |0.001 |0 | |
-ROW |34403 |30726 |1 |12 |$..[?(@.name=='{#ES.NODE}')].fs.total.available_in_bytes.first() |0 | |
-ROW |34404 |30726 |2 |20 |1h |0 | |
-ROW |34405 |30727 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.completed.first() |0 | |
-ROW |34406 |30727 |2 |10 | |0 | |
-ROW |34407 |30728 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_time_in_millis.first() |0 | |
-ROW |34408 |30728 |2 |1 |0.001 |0 | |
-ROW |34409 |30728 |3 |9 | |0 | |
-ROW |34410 |30729 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.rejected.first() |0 | |
-ROW |34411 |30729 |2 |10 | |0 | |
-ROW |34412 |30730 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.active.first() |0 | |
-ROW |34413 |30731 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.completed.first() |0 | |
-ROW |34414 |30731 |2 |10 | |0 | |
-ROW |34415 |30732 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.queue.first() |0 | |
-ROW |34416 |30733 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.rejected.first() |0 | |
-ROW |34417 |30733 |2 |10 | |0 | |
-ROW |34418 |30734 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.active.first() |0 | |
-ROW |34419 |30735 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.completed.first() |0 | |
-ROW |34420 |30735 |2 |10 | |0 | |
-ROW |34421 |30736 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.queue.first() |0 | |
-ROW |34422 |30737 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.queue.first() |0 | |
-ROW |34423 |30738 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_current.first() |0 | |
-ROW |34424 |30739 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_time_in_millis.first() |0 | |
-ROW |34425 |30739 |2 |20 |1h |0 | |
-ROW |34426 |30740 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.throttle_time_in_millis.first() |0 | |
-ROW |34427 |30740 |2 |1 |0.001 |0 | |
-ROW |34428 |30740 |3 |9 | |0 | |
-ROW |34429 |30741 |1 |12 |$..[?(@.name=='{#ES.NODE}')].http.current_open.first() |0 | |
-ROW |34430 |30741 |2 |20 |1h |0 | |
-ROW |34431 |30742 |1 |12 |$..[?(@.name=='{#ES.NODE}')].http.total_opened.first() |0 | |
-ROW |34432 |30742 |2 |10 | |0 | |
-ROW |34433 |30743 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.flush.total_time_in_millis.first() |0 | |
-ROW |34434 |30743 |2 |20 |1h |0 | |
-ROW |34435 |30744 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.flush.total.first() |0 | |
-ROW |34436 |30744 |2 |20 |1h |0 | |
-ROW |34437 |30745 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_current.first() |0 | |
-ROW |34438 |30745 |2 |20 |1h |0 | |
-ROW |34439 |30746 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_time_in_millis.first() |0 | |
-ROW |34440 |30746 |2 |20 |1h |0 | |
-ROW |34441 |30747 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_total.first() |0 | |
-ROW |34442 |30747 |2 |20 |1h |0 | |
-ROW |34443 |30748 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.merges.total_throttled_time_in_millis.first() |0 | |
-ROW |34444 |30748 |2 |1 |0.001 |0 | |
-ROW |34445 |30748 |3 |9 | |0 | |
-ROW |34446 |30749 |1 |12 |$..[?(@.name=='{#ES.NODE}')].fs.total.total_in_bytes.first() |0 | |
-ROW |34447 |30749 |2 |20 |1d |0 | |
-ROW |34448 |30750 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.recovery.throttle_time_in_millis.first() |0 | |
-ROW |34449 |30750 |2 |1 |0.001 |0 | |
-ROW |34450 |30750 |3 |9 | |0 | |
-ROW |34451 |30751 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.refresh.total.first() |0 | |
-ROW |34452 |30751 |2 |10 | |0 | |
-ROW |34453 |30752 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.refresh.total_time_in_millis.first() |0 | |
-ROW |34454 |30752 |2 |1 |0.001 |0 | |
-ROW |34455 |30752 |3 |9 | |0 | |
-ROW |34456 |30753 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_current.first() |0 | |
-ROW |34457 |30754 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_time_in_millis.first() |0 | |
-ROW |34458 |30754 |2 |20 |1h |0 | |
-ROW |34459 |30755 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_time_in_millis.first() |0 | |
-ROW |34460 |30755 |2 |1 |0.001 |0 | |
-ROW |34461 |30755 |3 |9 | |0 | |
-ROW |34462 |30756 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_total.first() |0 | |
-ROW |34463 |30756 |2 |20 |1h |0 | |
-ROW |34464 |30757 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_total.first() |0 | |
-ROW |34465 |30757 |2 |10 | |0 | |
-ROW |34466 |30758 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.rejected.first() |0 | |
-ROW |34467 |30758 |2 |10 | |0 | |
-ROW |34468 |30188 |1 |20 |10m |0 | |
-ROW |34469 |30189 |1 |5 |# ([\s\S]*)&bsn;\1 |0 | |
-ROW |34470 |30189 |2 |24 |&bsn;&bsn;1 |0 | |
-ROW |34471 |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 |34472 |30192 |1 |5 |HAProxy version ([^,]*),&bsn;\1 |3 |HAProxy version is not found |
-ROW |34473 |30192 |2 |20 |1d |0 | |
-ROW |34474 |30763 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |34475 |30763 |2 |10 | |0 | |
-ROW |34476 |30764 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |34477 |30764 |2 |10 | |0 | |
-ROW |34478 |30765 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |34479 |30765 |2 |10 | |0 | |
-ROW |34480 |30766 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |34481 |30767 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |34482 |30767 |2 |1 |0.001 |0 | |
-ROW |34483 |30768 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |34484 |30768 |2 |1 |0.001 |0 | |
-ROW |34485 |30769 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |34486 |30769 |2 |6 | |0 | |
-ROW |34487 |30769 |3 |20 |10m |0 | |
-ROW |34488 |30770 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |34489 |30770 |2 |10 | |0 | |
-ROW |34490 |30771 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |34491 |30771 |2 |10 | |0 | |
-ROW |34492 |30772 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |34493 |30772 |2 |1 |8 |0 | |
-ROW |34494 |30772 |3 |10 | |0 | |
-ROW |34495 |30773 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |34496 |30773 |2 |1 |8 |0 | |
-ROW |34497 |30773 |3 |10 | |0 | |
-ROW |34498 |30774 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |34499 |30774 |2 |10 | |0 | |
-ROW |34500 |30775 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |34501 |30775 |2 |10 | |0 | |
-ROW |34502 |30776 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |34503 |30777 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |34504 |30778 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |34505 |30779 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |34506 |30779 |2 |20 |1h |0 | |
-ROW |34507 |30780 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |34508 |30780 |2 |10 | |0 | |
-ROW |34509 |30781 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |34510 |30781 |2 |10 | |0 | |
-ROW |34511 |30782 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |34512 |30782 |2 |10 | |0 | |
-ROW |34513 |30783 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |34514 |30784 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |34515 |30784 |2 |1 |0.001 |0 | |
-ROW |34516 |30785 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |34517 |30785 |2 |1 |0.001 |0 | |
-ROW |34518 |30786 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |34519 |30786 |2 |6 | |0 | |
-ROW |34520 |30786 |3 |20 |10m |0 | |
-ROW |34521 |30787 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |34522 |30787 |2 |10 | |0 | |
-ROW |34523 |30788 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |34524 |30788 |2 |10 | |0 | |
-ROW |34525 |30197 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |34526 |30197 |2 |10 | |0 | |
-ROW |34527 |30198 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |34528 |30198 |2 |10 | |0 | |
-ROW |34529 |30199 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |34530 |30199 |2 |10 | |0 | |
-ROW |34531 |30200 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |34532 |30201 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |34533 |30201 |2 |1 |0.001 |0 | |
-ROW |34534 |30202 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |34535 |30202 |2 |1 |0.001 |0 | |
-ROW |34536 |30203 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |34537 |30203 |2 |6 | |0 | |
-ROW |34538 |30203 |3 |20 |10m |0 | |
-ROW |34539 |30204 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |34540 |30204 |2 |10 | |0 | |
-ROW |34541 |30205 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |34542 |30205 |2 |10 | |0 | |
-ROW |34543 |30206 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |34544 |30206 |2 |1 |8 |0 | |
-ROW |34545 |30206 |3 |10 | |0 | |
-ROW |34546 |30207 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |34547 |30207 |2 |1 |8 |0 | |
-ROW |34548 |30207 |3 |10 | |0 | |
-ROW |34549 |30208 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |34550 |30208 |2 |10 | |0 | |
-ROW |34551 |30209 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |34552 |30209 |2 |10 | |0 | |
-ROW |34553 |30210 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
-ROW |34554 |30210 |2 |10 | |0 | |
-ROW |34555 |30211 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
-ROW |34556 |30211 |2 |10 | |0 | |
-ROW |34557 |30212 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
-ROW |34558 |30212 |2 |10 | |0 | |
-ROW |34559 |30213 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |34560 |30213 |2 |10 | |0 | |
-ROW |34561 |30214 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |34562 |30214 |2 |10 | |0 | |
-ROW |34563 |30215 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |34564 |30216 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |34565 |30217 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |34566 |30218 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |34567 |30218 |2 |20 |1h |0 | |
-ROW |34568 |30219 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |34569 |30219 |2 |10 | |0 | |
-ROW |34570 |30220 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |34571 |30220 |2 |10 | |0 | |
-ROW |34572 |30221 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |34573 |30221 |2 |10 | |0 | |
-ROW |34574 |30222 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |34575 |30222 |2 |10 | |0 | |
-ROW |34576 |30223 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |34577 |30223 |2 |10 | |0 | |
-ROW |34578 |30224 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |34579 |30225 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |34580 |30225 |2 |1 |0.001 |0 | |
-ROW |34581 |30226 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |34582 |30226 |2 |1 |0.001 |0 | |
-ROW |34583 |30227 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |34584 |30227 |2 |6 | |0 | |
-ROW |34585 |30227 |3 |20 |10m |0 | |
-ROW |34586 |30228 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |34587 |30228 |2 |10 | |0 | |
-ROW |34588 |30229 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |34589 |30229 |2 |10 | |0 | |
-ROW |34590 |30790 |1 |20 |10m |0 | |
-ROW |34591 |30230 |1 |5 |# ([\s\S]*)\n&bsn;\1 |0 | |
-ROW |34592 |30230 |2 |24 |&bsn;&bsn;1 |0 | |
-ROW |34593 |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 |34594 |30235 |1 |5 |HAProxy version ([^,]*),&bsn;\1 |3 |HAProxy version is not found |
-ROW |34595 |30235 |2 |20 |1d |0 | |
-ROW |34596 |30795 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |34597 |30795 |2 |10 | |0 | |
-ROW |34598 |30796 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |34599 |30796 |2 |10 | |0 | |
-ROW |34600 |30797 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |34601 |30797 |2 |10 | |0 | |
-ROW |34602 |30798 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |34603 |30799 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |34604 |30799 |2 |1 |0.001 |0 | |
-ROW |34605 |30800 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |34606 |30800 |2 |1 |0.001 |0 | |
-ROW |34607 |30801 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |34608 |30801 |2 |6 | |0 | |
-ROW |34609 |30801 |3 |20 |10m |0 | |
-ROW |34610 |30802 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |34611 |30802 |2 |10 | |0 | |
-ROW |34612 |30803 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |34613 |30803 |2 |10 | |0 | |
-ROW |34614 |30804 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |34615 |30804 |2 |1 |8 |0 | |
-ROW |34616 |30804 |3 |10 | |0 | |
-ROW |34617 |30805 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |34618 |30805 |2 |1 |8 |0 | |
-ROW |34619 |30805 |3 |10 | |0 | |
-ROW |34620 |30806 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |34621 |30806 |2 |10 | |0 | |
-ROW |34622 |30807 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |34623 |30807 |2 |10 | |0 | |
-ROW |34624 |30808 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |34625 |30809 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |34626 |30810 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |34627 |30811 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |34628 |30811 |2 |20 |1h |0 | |
-ROW |34629 |30812 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |34630 |30812 |2 |10 | |0 | |
-ROW |34631 |30813 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |34632 |30813 |2 |10 | |0 | |
-ROW |34633 |30814 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |34634 |30814 |2 |10 | |0 | |
-ROW |34635 |30815 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |34636 |30816 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |34637 |30816 |2 |1 |0.001 |0 | |
-ROW |34638 |30817 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |34639 |30817 |2 |1 |0.001 |0 | |
-ROW |34640 |30818 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |34641 |30818 |2 |6 | |0 | |
-ROW |34642 |30818 |3 |20 |10m |0 | |
-ROW |34643 |30819 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |34644 |30819 |2 |10 | |0 | |
-ROW |34645 |30820 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |34646 |30820 |2 |10 | |0 | |
-ROW |34647 |30240 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |34648 |30240 |2 |10 | |0 | |
-ROW |34649 |30241 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |34650 |30241 |2 |10 | |0 | |
-ROW |34651 |30242 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |34652 |30242 |2 |10 | |0 | |
-ROW |34653 |30243 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |34654 |30244 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |34655 |30244 |2 |1 |0.001 |0 | |
-ROW |34656 |30245 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |34657 |30245 |2 |1 |0.001 |0 | |
-ROW |34658 |30246 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |34659 |30246 |2 |6 | |0 | |
-ROW |34660 |30246 |3 |20 |10m |0 | |
-ROW |34661 |30247 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |34662 |30247 |2 |10 | |0 | |
-ROW |34663 |30248 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |34664 |30248 |2 |10 | |0 | |
-ROW |34665 |30249 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
-ROW |34666 |30249 |2 |1 |8 |0 | |
-ROW |34667 |30249 |3 |10 | |0 | |
-ROW |34668 |30250 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
-ROW |34669 |30250 |2 |1 |8 |0 | |
-ROW |34670 |30250 |3 |10 | |0 | |
-ROW |34671 |30251 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
-ROW |34672 |30251 |2 |10 | |0 | |
-ROW |34673 |30252 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
-ROW |34674 |30252 |2 |10 | |0 | |
-ROW |34675 |30253 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
-ROW |34676 |30253 |2 |10 | |0 | |
-ROW |34677 |30254 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
-ROW |34678 |30254 |2 |10 | |0 | |
-ROW |34679 |30255 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
-ROW |34680 |30255 |2 |10 | |0 | |
-ROW |34681 |30256 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |34682 |30256 |2 |10 | |0 | |
-ROW |34683 |30257 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |34684 |30257 |2 |10 | |0 | |
-ROW |34685 |30258 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
-ROW |34686 |30259 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
-ROW |34687 |30260 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
-ROW |34688 |30261 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
-ROW |34689 |30261 |2 |20 |1h |0 | |
-ROW |34690 |30262 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
-ROW |34691 |30262 |2 |10 | |0 | |
-ROW |34692 |30263 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
-ROW |34693 |30263 |2 |10 | |0 | |
-ROW |34694 |30264 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
-ROW |34695 |30264 |2 |10 | |0 | |
-ROW |34696 |30265 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
-ROW |34697 |30265 |2 |10 | |0 | |
-ROW |34698 |30266 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
-ROW |34699 |30266 |2 |10 | |0 | |
-ROW |34700 |30267 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
-ROW |34701 |30268 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
-ROW |34702 |30268 |2 |1 |0.001 |0 | |
-ROW |34703 |30269 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
-ROW |34704 |30269 |2 |1 |0.001 |0 | |
-ROW |34705 |30270 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
-ROW |34706 |30270 |2 |6 | |0 | |
-ROW |34707 |30270 |3 |20 |10m |0 | |
-ROW |34708 |30271 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
-ROW |34709 |30271 |2 |10 | |0 | |
-ROW |34710 |30272 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
-ROW |34711 |30272 |2 |10 | |0 | |
-ROW |34712 |30611 |1 |20 |10m |0 | |
-ROW |34713 |30613 |1 |12 |$.cmd_flush |0 | |
-ROW |34714 |30613 |2 |10 | |0 | |
-ROW |34715 |30614 |1 |12 |$.bytes |0 | |
-ROW |34716 |30615 |1 |12 |$.uptime |0 | |
-ROW |34717 |30616 |1 |12 |$.total_items |0 | |
-ROW |34718 |30616 |2 |10 | |0 | |
-ROW |34719 |30617 |1 |12 |$.threads |0 | |
-ROW |34720 |30618 |1 |12 |$.get_misses |0 | |
-ROW |34721 |30618 |2 |10 | |0 | |
-ROW |34722 |30619 |1 |12 |$.get_hits |0 | |
-ROW |34723 |30619 |2 |10 | |0 | |
-ROW |34724 |30620 |1 |12 |$.evictions |0 | |
-ROW |34725 |30620 |2 |10 | |0 | |
-ROW |34726 |30621 |1 |12 |$.curr_items |0 | |
-ROW |34727 |30622 |1 |12 |$.bytes_written |0 | |
-ROW |34728 |30622 |2 |10 | |0 | |
-ROW |34729 |30623 |1 |12 |$.bytes_read |0 | |
-ROW |34730 |30623 |2 |10 | |0 | |
-ROW |34731 |30624 |1 |12 |$.pid |0 | |
-ROW |34732 |30624 |2 |20 |1d |0 | |
-ROW |34733 |30625 |1 |12 |$.cmd_get |0 | |
-ROW |34734 |30625 |2 |10 | |0 | |
-ROW |34735 |30626 |1 |12 |$.rusage_user |0 | |
-ROW |34736 |30627 |1 |12 |$.rusage_system |0 | |
-ROW |34737 |30628 |1 |12 |$.conn_yields |0 | |
-ROW |34738 |30628 |2 |10 | |0 | |
-ROW |34739 |30629 |1 |12 |$.connection_structures |0 | |
-ROW |34740 |30630 |1 |12 |$.total_connections |0 | |
-ROW |34741 |30630 |2 |10 | |0 | |
-ROW |34742 |30631 |1 |12 |$.listen_disabled_num |0 | |
-ROW |34743 |30631 |2 |10 | |0 | |
-ROW |34744 |30632 |1 |12 |$.max_connections |0 | |
-ROW |34745 |30632 |2 |20 |30m |0 | |
-ROW |34746 |30633 |1 |12 |$.curr_connections |0 | |
-ROW |34747 |30634 |1 |12 |$.limit_maxbytes |0 | |
-ROW |34748 |30634 |2 |20 |30m |0 | |
-ROW |34749 |30635 |1 |12 |$.cmd_set |0 | |
-ROW |34750 |30635 |2 |10 | |0 | |
-ROW |34751 |30636 |1 |12 |$.version |0 | |
-ROW |34752 |30636 |2 |20 |1d |0 | |
-ROW |34753 |28810 |1 |20 |10m |0 | |
-ROW |34754 |28811 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
-ROW |34755 |28812 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
-ROW |34756 |28813 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
-ROW |34757 |28814 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
-ROW |34758 |28815 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
-ROW |34759 |28815 |2 |10 | |0 | |
-ROW |34760 |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 |34761 |28816 |2 |10 | |0 | |
-ROW |34762 |28817 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
-ROW |34763 |28817 |2 |10 | |0 | |
-ROW |34764 |28818 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |34765 |28818 |2 |10 | |0 | |
-ROW |34766 |28819 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |34767 |28820 |1 |5 |Server: nginx/(.+)&bsn;\1 |0 | |
-ROW |34768 |28820 |2 |20 |1d |0 | |
-ROW |34769 |28822 |1 |20 |10m |0 | |
-ROW |34770 |28824 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |34771 |28825 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
-ROW |34772 |28825 |2 |10 | |0 | |
-ROW |34773 |28826 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
-ROW |34774 |28826 |2 |10 | |0 | |
-ROW |34775 |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 |34776 |28827 |2 |10 | |0 | |
-ROW |34777 |28828 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
-ROW |34778 |28828 |2 |10 | |0 | |
-ROW |34779 |28829 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
-ROW |34780 |28830 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
-ROW |34781 |28831 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
-ROW |34782 |28832 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
-ROW |34783 |28833 |1 |5 |Server: nginx/(.+)&bsn;\1 |0 | |
-ROW |34784 |28833 |2 |20 |1d |0 | |
-ROW |34785 |29653 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |34786 |29654 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |34787 |29655 |1 |20 |10m |0 | |
-ROW |34788 |29661 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |34789 |29662 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |34790 |29662 |2 |12 |$.status |0 | |
-ROW |34791 |29662 |3 |6 | |2 |0 |
-ROW |34792 |29998 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |34793 |29999 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |34794 |29687 |1 |12 |$.mem_used |0 | |
-ROW |34795 |29688 |1 |12 |$.disk_free_alarm |0 | |
-ROW |34796 |29688 |2 |6 | |0 | |
-ROW |34797 |29691 |1 |12 |$.fd_used |0 | |
-ROW |34798 |29692 |1 |12 |$.uptime |0 | |
-ROW |34799 |29692 |2 |1 |0.001 |0 | |
-ROW |34800 |29693 |1 |12 |$.mem_alarm |0 | |
-ROW |34801 |29693 |2 |6 | |0 | |
-ROW |34802 |29694 |1 |12 |$.mem_limit |0 | |
-ROW |34803 |29695 |1 |12 |$.running |0 | |
-ROW |34804 |29695 |2 |6 | |0 | |
-ROW |34805 |29696 |1 |12 |$.partitions |0 | |
-ROW |34806 |29696 |2 |21 |return JSON.parse(value).length; |0 | |
-ROW |34807 |29697 |1 |12 |$.sockets_total |0 | |
-ROW |34808 |29698 |1 |12 |$.disk_free |0 | |
-ROW |34809 |29699 |1 |12 |$.run_queue |0 | |
-ROW |34810 |29700 |1 |12 |$.disk_free_limit |0 | |
-ROW |34811 |29701 |1 |12 |$.sockets_used |0 | |
-ROW |34812 |30000 |1 |12 |$.message_stats.redeliver |2 |0 |
-ROW |34813 |30001 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
-ROW |34814 |30002 |1 |12 |$.message_stats.return_unroutable |2 |0 |
-ROW |34815 |30003 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
-ROW |34816 |30004 |1 |12 |$.message_stats.publish_out |2 |0 |
-ROW |34817 |30005 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
-ROW |34818 |30006 |1 |12 |$.message_stats.publish_in |2 |0 |
-ROW |34819 |30007 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
-ROW |34820 |30008 |1 |12 |$.message_stats.publish |2 |0 |
-ROW |34821 |30009 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
-ROW |34822 |30010 |1 |12 |$.message_stats.deliver_get |2 |0 |
-ROW |34823 |30011 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
-ROW |34824 |30012 |1 |12 |$.message_stats.confirm |2 |0 |
-ROW |34825 |30013 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
-ROW |34826 |30014 |1 |12 |$.message_stats.ack |2 |0 |
-ROW |34827 |30015 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
-ROW |34828 |30016 |1 |12 |$.queue_totals.messages_ready |0 | |
-ROW |34829 |30017 |1 |12 |$.queue_totals.messages |0 | |
-ROW |34830 |30018 |1 |12 |$.object_totals.exchanges |0 | |
-ROW |34831 |30019 |1 |12 |$.object_totals.consumers |0 | |
-ROW |34832 |30020 |1 |12 |$.object_totals.queues |0 | |
-ROW |34833 |30021 |1 |12 |$.object_totals.channels |0 | |
-ROW |34834 |30022 |1 |12 |$.object_totals.connections |0 | |
-ROW |34835 |30023 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
-ROW |34836 |30024 |1 |12 |$.management_version |0 | |
-ROW |34837 |30024 |2 |20 |1d |0 | |
-ROW |34838 |30025 |1 |12 |$.rabbitmq_version |0 | |
-ROW |34839 |30025 |2 |20 |1d |0 | |
-ROW |34840 |29720 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
-ROW |34841 |29721 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
-ROW |34842 |29722 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
-ROW |34843 |29723 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |34844 |29724 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
-ROW |34845 |29725 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |34846 |29726 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
-ROW |34847 |29727 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
-ROW |34848 |29728 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |34849 |29729 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
-ROW |34850 |29730 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
-ROW |34851 |29731 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
-ROW |34852 |29732 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
-ROW |34853 |29733 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
-ROW |34854 |29734 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
-ROW |34855 |29735 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
-ROW |34856 |29736 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
-ROW |34857 |29737 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |34858 |30027 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
-ROW |34859 |30028 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |34860 |30029 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
-ROW |34861 |30030 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
-ROW |34862 |30031 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
-ROW |34863 |30032 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |34864 |30033 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
-ROW |34865 |30034 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |34866 |30035 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
-ROW |34867 |30036 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
-ROW |34868 |30037 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
-ROW |34869 |30038 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
-ROW |34870 |30039 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
-ROW |34871 |30040 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
-ROW |34872 |30041 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
-ROW |34873 |30042 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |34874 |29742 |1 |20 |10m |0 | |
-ROW |34875 |29744 |1 |12 |$.status |0 | |
-ROW |34876 |29744 |2 |6 | |2 |0 |
-ROW |34877 |29746 |1 |12 |$.message_stats.redeliver |2 |0 |
-ROW |34878 |29747 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
-ROW |34879 |29748 |1 |12 |$.message_stats.return_unroutable |2 |0 |
-ROW |34880 |29749 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
-ROW |34881 |29750 |1 |12 |$.message_stats.publish_out |2 |0 |
-ROW |34882 |29751 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
-ROW |34883 |29752 |1 |12 |$.message_stats.publish_in |2 |0 |
-ROW |34884 |29753 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
-ROW |34885 |29754 |1 |12 |$.message_stats.publish |2 |0 |
-ROW |34886 |29755 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
-ROW |34887 |29756 |1 |12 |$.message_stats.deliver_get |2 |0 |
-ROW |34888 |29757 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
-ROW |34889 |29758 |1 |12 |$.message_stats.confirm |2 |0 |
-ROW |34890 |29759 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
-ROW |34891 |29760 |1 |12 |$.message_stats.ack |2 |0 |
-ROW |34892 |29761 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
-ROW |34893 |29762 |1 |12 |$.queue_totals.messages_ready |0 | |
-ROW |34894 |29763 |1 |12 |$.queue_totals.messages |0 | |
-ROW |34895 |29764 |1 |12 |$.object_totals.exchanges |0 | |
-ROW |34896 |29765 |1 |12 |$.object_totals.consumers |0 | |
-ROW |34897 |29766 |1 |12 |$.object_totals.queues |0 | |
-ROW |34898 |29767 |1 |12 |$.object_totals.channels |0 | |
-ROW |34899 |29768 |1 |12 |$.object_totals.connections |0 | |
-ROW |34900 |29769 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
-ROW |34901 |29771 |1 |12 |$.partitions |0 | |
-ROW |34902 |29771 |2 |21 |return JSON.parse(value).length; |0 | |
-ROW |34903 |29772 |1 |12 |$.uptime |0 | |
-ROW |34904 |29772 |2 |1 |0.001 |0 | |
-ROW |34905 |29773 |1 |12 |$.disk_free_alarm |0 | |
-ROW |34906 |29773 |2 |6 | |0 | |
-ROW |34907 |29774 |1 |12 |$.mem_alarm |0 | |
-ROW |34908 |29774 |2 |6 | |0 | |
-ROW |34909 |29775 |1 |12 |$.running |0 | |
-ROW |34910 |29775 |2 |6 | |0 | |
-ROW |34911 |29776 |1 |12 |$.sockets_used |0 | |
-ROW |34912 |29777 |1 |12 |$.sockets_total |0 | |
-ROW |34913 |29779 |1 |12 |$.run_queue |0 | |
-ROW |34914 |29780 |1 |12 |$.mem_used |0 | |
-ROW |34915 |29781 |1 |12 |$.disk_free_limit |0 | |
-ROW |34916 |29782 |1 |12 |$.disk_free |0 | |
-ROW |34917 |29783 |1 |12 |$.fd_used |0 | |
-ROW |34918 |29784 |1 |12 |$.mem_limit |0 | |
-ROW |34919 |30044 |1 |12 |$.management_version |0 | |
-ROW |34920 |30044 |2 |20 |1d |0 | |
-ROW |34921 |30045 |1 |12 |$.rabbitmq_version |0 | |
-ROW |34922 |30045 |2 |20 |1d |0 | |
-ROW |34923 |29787 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
-ROW |34924 |29788 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |34925 |29789 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
-ROW |34926 |29790 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
-ROW |34927 |29791 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
-ROW |34928 |29792 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |34929 |29793 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
-ROW |34930 |29794 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |34931 |29795 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
-ROW |34932 |29796 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
-ROW |34933 |29797 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
-ROW |34934 |29798 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
-ROW |34935 |29799 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
-ROW |34936 |29800 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
-ROW |34937 |29801 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
-ROW |34938 |29802 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |34939 |29803 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
-ROW |34940 |29804 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
-ROW |34941 |29805 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
-ROW |34942 |29806 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |34943 |29807 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
-ROW |34944 |29808 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |34945 |29809 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
-ROW |34946 |29810 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
-ROW |34947 |29811 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |34948 |29812 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
-ROW |34949 |29813 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
-ROW |34950 |29814 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
-ROW |34951 |29815 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
-ROW |34952 |29816 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
-ROW |34953 |29817 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
-ROW |34954 |29818 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
-ROW |34955 |29819 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
-ROW |34956 |29820 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |34957 |28501 |1 |10 | |0 | |
-ROW |34958 |28514 |1 |10 | |0 | |
-ROW |34959 |28517 |1 |10 | |0 | |
-ROW |34960 |28519 |1 |10 | |0 | |
-ROW |34961 |28520 |1 |1 |0.001 |0 | |
-ROW |34962 |28521 |1 |10 | |0 | |
-ROW |34963 |28522 |1 |10 | |0 | |
-ROW |34964 |28523 |1 |10 | |0 | |
-ROW |34965 |28524 |1 |10 | |0 | |
-ROW |34966 |28525 |1 |1 |0.001 |0 | |
-ROW |34967 |28526 |1 |10 | |0 | |
-ROW |34968 |28527 |1 |10 | |0 | |
-ROW |34969 |28528 |1 |10 | |0 | |
-ROW |34970 |28529 |1 |10 | |0 | |
-ROW |34971 |28530 |1 |1 |0.001 |0 | |
-ROW |34972 |28531 |1 |10 | |0 | |
-ROW |34973 |26876 |1 |1 |0.001 |0 | |
-ROW |34974 |26881 |1 |1 |100 |0 | |
-ROW |34975 |26884 |1 |10 | |0 | |
-ROW |34976 |26885 |1 |1 |0.001 |0 | |
-ROW |34977 |26886 |1 |1 |0.001 |0 | |
-ROW |34978 |26887 |1 |10 | |0 | |
-ROW |34979 |26888 |1 |1 |0.001 |0 | |
-ROW |34980 |26889 |1 |10 | |0 | |
-ROW |34981 |26890 |1 |1 |0.001 |0 | |
-ROW |34982 |26894 |1 |1 |0.001 |0 | |
-ROW |34983 |26895 |1 |10 | |0 | |
-ROW |34984 |26896 |1 |10 | |0 | |
-ROW |34985 |26897 |1 |1 |0.001 |0 | |
-ROW |34986 |26905 |1 |1 |0.001 |0 | |
-ROW |34987 |26906 |1 |10 | |0 | |
-ROW |34988 |28586 |1 |12 |$.queue |0 | |
-ROW |34989 |28587 |1 |12 |$.queue |0 | |
-ROW |34990 |28588 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
-ROW |34991 |28589 |1 |12 |$.data.wcache.values.uint |0 | |
-ROW |34992 |28589 |2 |10 | |0 | |
-ROW |34993 |28590 |1 |12 |$.data.wcache.values.text |0 | |
-ROW |34994 |28590 |2 |10 | |0 | |
-ROW |34995 |28591 |1 |12 |$.data.wcache.values.str |0 | |
-ROW |34996 |28591 |2 |10 | |0 | |
-ROW |34997 |28592 |1 |12 |$.data.wcache.values['not supported'] |0 | |
-ROW |34998 |28592 |2 |10 | |0 | |
-ROW |34999 |28593 |1 |12 |$.data.wcache.values.log |0 | |
-ROW |35000 |28593 |2 |10 | |0 | |
-ROW |35001 |28594 |1 |12 |$.data.wcache.values.float |0 | |
-ROW |35002 |28594 |2 |10 | |0 | |
-ROW |35003 |28595 |1 |12 |$.data.wcache.values.all |0 | |
-ROW |35004 |28595 |2 |10 | |0 | |
-ROW |35005 |28596 |1 |12 |$.data.wcache.index.pused |0 | |
-ROW |35006 |28597 |1 |12 |$.data.wcache.history.pused |0 | |
-ROW |35007 |28598 |1 |12 |$.data.vmware.pused |0 | |
-ROW |35008 |28599 |1 |12 |$.data.rcache.pused |0 | |
-ROW |35009 |28600 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
-ROW |35010 |28601 |1 |12 |$.data.process['data sender'].busy.avg |0 | |
-ROW |35011 |28602 |1 |12 |$.data.process.trapper.busy.avg |0 | |
-ROW |35012 |28603 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
-ROW |35013 |28604 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
-ROW |35014 |28605 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
-ROW |35015 |28606 |1 |12 |$.data.process.poller.busy.avg |0 | |
-ROW |35016 |28607 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
-ROW |35017 |28608 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
-ROW |35018 |28609 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
-ROW |35019 |28610 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
-ROW |35020 |28611 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
-ROW |35021 |28612 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
-ROW |35022 |28613 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
-ROW |35023 |28614 |1 |12 |$.data.process['heartbeat sender'].busy.avg |0 | |
-ROW |35024 |28615 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
-ROW |35025 |28616 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
-ROW |35026 |28540 |1 |12 |$.queue |0 | |
-ROW |35027 |28541 |1 |12 |$.queue |0 | |
-ROW |35028 |28542 |1 |12 |$.data.wcache.index.pused |0 | |
-ROW |35029 |28543 |1 |12 |$.data.rcache.pused |0 | |
-ROW |35030 |28544 |1 |12 |$.data.vcache.buffer.pused |0 | |
-ROW |35031 |28545 |1 |12 |$.data.vcache.cache.hits |0 | |
-ROW |35032 |28545 |2 |10 | |0 | |
-ROW |35033 |28546 |1 |12 |$.data.vcache.cache.misses |0 | |
-ROW |35034 |28546 |2 |10 | |0 | |
-ROW |35035 |28547 |1 |12 |$.data.vcache.cache.mode |0 | |
-ROW |35036 |28548 |1 |12 |$.data.vmware.pused |0 | |
-ROW |35037 |28549 |1 |12 |$.data.wcache.history.pused |0 | |
-ROW |35038 |28550 |1 |12 |$.data.wcache.values.all |0 | |
-ROW |35039 |28550 |2 |10 | |0 | |
-ROW |35040 |28551 |1 |12 |$.data.wcache.trend.pused |0 | |
-ROW |35041 |28552 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
-ROW |35042 |28553 |1 |12 |$.data.wcache.values.float |0 | |
-ROW |35043 |28553 |2 |10 | |0 | |
-ROW |35044 |28554 |1 |12 |$.data.wcache.values.log |0 | |
-ROW |35045 |28554 |2 |10 | |0 | |
-ROW |35046 |28555 |1 |12 |$.data.wcache.values['not supported'] |0 | |
-ROW |35047 |28555 |2 |10 | |0 | |
-ROW |35048 |28556 |1 |12 |$.data.wcache.values.str |0 | |
-ROW |35049 |28556 |2 |10 | |0 | |
-ROW |35050 |28557 |1 |12 |$.data.wcache.values.text |0 | |
-ROW |35051 |28557 |2 |10 | |0 | |
-ROW |35052 |28558 |1 |12 |$.data.wcache.values.uint |0 | |
-ROW |35053 |28558 |2 |10 | |0 | |
-ROW |35054 |28559 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
-ROW |35055 |28560 |1 |12 |$.data.preprocessing_queue |0 | |
-ROW |35056 |28561 |1 |12 |$.data.process.alerter.busy.avg |0 | |
-ROW |35057 |28562 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
-ROW |35058 |28563 |1 |12 |$.data.process['alert manager'].busy.avg |0 | |
-ROW |35059 |28564 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
-ROW |35060 |28565 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
-ROW |35061 |28566 |1 |12 |$.data.process.escalator.busy.avg |0 | |
-ROW |35062 |28567 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
-ROW |35063 |28568 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
-ROW |35064 |28569 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
-ROW |35065 |28570 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
-ROW |35066 |28571 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
-ROW |35067 |28572 |1 |12 |$.data.process.timer.busy.avg |0 | |
-ROW |35068 |28573 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
-ROW |35069 |28574 |1 |12 |$.data.process.poller.busy.avg |0 | |
-ROW |35070 |28575 |1 |12 |$.data.process['preprocessing manager'].busy.avg |0 | |
-ROW |35071 |28576 |1 |12 |$.data.process['preprocessing worker'].busy.avg |0 | |
-ROW |35072 |28577 |1 |12 |$.data.process['proxy poller'].busy.avg |0 | |
-ROW |35073 |28578 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
-ROW |35074 |28579 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
-ROW |35075 |28580 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
-ROW |35076 |28581 |1 |12 |$.data.process.trapper.busy.avg |0 | |
-ROW |35077 |28582 |1 |12 |$.data.process['lld manager'].busy.avg |0 | |
-ROW |35078 |28583 |1 |12 |$.data.process['lld worker'].busy.avg |0 | |
-ROW |35079 |28584 |1 |12 |$.data.lld_queue |0 | |
-ROW |35080 |29821 |1 |12 |$.data.process['alert syncer'].busy.avg |0 | |
-ROW |35081 |10067 |1 |10 | |0 | |
-ROW |35082 |10068 |1 |10 | |0 | |
-ROW |35083 |10069 |1 |10 | |0 | |
-ROW |35084 |10070 |1 |10 | |0 | |
-ROW |35085 |10071 |1 |10 | |0 | |
-ROW |35086 |10072 |1 |10 | |0 | |
-ROW |35087 |23340 |1 |10 | |0 | |
-ROW |35088 |10061 |1 |10 | |0 | |
-ROW |35089 |10062 |1 |10 | |0 | |
-ROW |35090 |10063 |1 |10 | |0 | |
-ROW |35091 |10064 |1 |10 | |0 | |
-ROW |35092 |10065 |1 |10 | |0 | |
-ROW |35093 |10066 |1 |10 | |0 | |
-ROW |35094 |22187 |1 |10 | |0 | |
-ROW |35095 |22196 |1 |10 | |0 | |
-ROW |35096 |22199 |1 |10 | |0 | |
-ROW |35097 |10073 |1 |10 | |0 | |
-ROW |35098 |10074 |1 |10 | |0 | |
-ROW |35099 |10075 |1 |10 | |0 | |
-ROW |35100 |10076 |1 |10 | |0 | |
-ROW |35101 |10077 |1 |10 | |0 | |
-ROW |35102 |10078 |1 |10 | |0 | |
-ROW |35103 |23277 |1 |10 | |0 | |
-ROW |35104 |23625 |1 |10 | |0 | |
-ROW |35105 |23628 |1 |10 | |0 | |
-ROW |35106 |22920 |1 |10 | |0 | |
-ROW |35107 |22924 |1 |10 | |0 | |
-ROW |35108 |22945 |1 |10 | |0 | |
-ROW |35109 |22945 |2 |1 |8 |0 | |
-ROW |35110 |22946 |1 |10 | |0 | |
-ROW |35111 |22946 |2 |1 |8 |0 | |
-ROW |35112 |22880 |1 |10 | |0 | |
-ROW |35113 |22884 |1 |10 | |0 | |
-ROW |35114 |23073 |1 |10 | |0 | |
-ROW |35115 |23073 |2 |1 |8 |0 | |
-ROW |35116 |23074 |1 |10 | |0 | |
-ROW |35117 |23074 |2 |1 |8 |0 | |
-ROW |35118 |22985 |1 |10 | |0 | |
-ROW |35119 |22985 |2 |1 |8 |0 | |
-ROW |35120 |22986 |1 |10 | |0 | |
-ROW |35121 |22986 |2 |1 |8 |0 | |
-ROW |35122 |23077 |1 |10 | |0 | |
-ROW |35123 |23077 |2 |1 |8 |0 | |
-ROW |35124 |23078 |1 |10 | |0 | |
-ROW |35125 |23078 |2 |1 |8 |0 | |
-ROW |35126 |22840 |1 |10 | |0 | |
-ROW |35127 |22844 |1 |10 | |0 | |
-ROW |35128 |23075 |1 |10 | |0 | |
-ROW |35129 |23075 |2 |1 |8 |0 | |
-ROW |35130 |23076 |1 |10 | |0 | |
-ROW |35131 |23076 |2 |1 |8 |0 | |
-ROW |35132 |23000 |1 |10 | |0 | |
-ROW |35133 |23004 |1 |10 | |0 | |
-ROW |35134 |23025 |1 |10 | |0 | |
-ROW |35135 |23025 |2 |1 |8 |0 | |
-ROW |35136 |23026 |1 |10 | |0 | |
-ROW |35137 |23026 |2 |1 |8 |0 | |
-ROW |35138 |30821 |1 |5 |Ok\.&bsn;1 |2 |0 |
-ROW |35139 |30821 |2 |20 |10m |0 | |
-ROW |35140 |30822 |1 |20 |1d |0 | |
-ROW |35141 |30823 |1 |12 |$.data |0 | |
-ROW |35142 |30824 |1 |12 |$.data |0 | |
-ROW |35143 |30825 |1 |12 |$.data |0 | |
-ROW |35144 |30826 |1 |12 |$.data |0 | |
-ROW |35145 |30828 |1 |12 |$.data |0 | |
-ROW |35146 |30829 |1 |12 |$.data |0 | |
-ROW |35147 |30829 |2 |20 |1h |0 | |
-ROW |35148 |30830 |1 |12 |$.data |0 | |
-ROW |35149 |30831 |1 |12 |$[?(@.metric == "Write")].value.first() |0 | |
-ROW |35150 |30832 |1 |12 |$[?(@.metric == "ReplicasSumQueueSize")].value.first() |0 | |
-ROW |35151 |30833 |1 |12 |$[?(@.data.event == "Query")].value.first() |2 |0 |
-ROW |35152 |30833 |2 |10 | |0 | |
-ROW |35153 |30834 |1 |12 |$[?(@.metric == "Read")].value.first() |0 | |
-ROW |35154 |30835 |1 |12 |$[?(@.event == "ReadCompressedBytes")].value.first() |2 |0 |
-ROW |35155 |30835 |2 |10 | |0 | |
-ROW |35156 |30836 |1 |12 |$[?(@.event == "ZooKeeperWaitMicroseconds")].value.first() |2 |0 |
-ROW |35157 |30836 |2 |1 |0.000001 |0 | |
-ROW |35158 |30836 |3 |10 | |0 | |
-ROW |35159 |30837 |1 |12 |$[?(@.metric == "ReplicasMaxAbsoluteDelay")].value.first() |0 | |
-ROW |35160 |30838 |1 |12 |$[?(@.metric == "ReadonlyReplica")].value.first() |0 | |
-ROW |35161 |30839 |1 |12 |$[?(@.metric == "Revision")].value.first() |0 | |
-ROW |35162 |30840 |1 |12 |$[?(@.event == "ZooKeeperOtherExceptions")].value.first() |2 |0 |
-ROW |35163 |30840 |2 |10 | |0 | |
-ROW |35164 |30841 |1 |12 |$[?(@.event == "SelectQuery")].value.first() |2 |0 |
-ROW |35165 |30841 |2 |10 | |0 | |
-ROW |35166 |30842 |1 |12 |$[?(@.event == "ZooKeeperUserExceptions")].value.first() |2 |0 |
-ROW |35167 |30842 |2 |10 | |0 | |
-ROW |35168 |30843 |1 |12 |$[?(@.metric == "ZooKeeperSession")].value.first() |0 | |
-ROW |35169 |30844 |1 |12 |$[?(@.metric == "ZooKeeperRequest")].value.first() |0 | |
-ROW |35170 |30845 |1 |12 |$[?(@.event == "ZooKeeperHardwareExceptions")].value.first() |2 |0 |
-ROW |35171 |30845 |2 |10 | |0 | |
-ROW |35172 |30846 |1 |12 |$[?(@.metric == "Uptime")].value.first() |0 | |
-ROW |35173 |30847 |1 |12 |$[?(@.metric == "Query")].value.first() |0 | |
-ROW |35174 |30848 |1 |12 |$[?(@.metric == "DistributedSend")].value.first() |0 | |
-ROW |35175 |30849 |1 |12 |$[?(@.metric == "HTTPConnection")].value.first() |0 | |
-ROW |35176 |30850 |1 |12 |$[?(@.metric == "jemalloc.allocated")].value.first() |0 | |
-ROW |35177 |30851 |1 |12 |$[?(@.metric == "InterserverConnection")].value.first() |0 | |
-ROW |35178 |30852 |1 |12 |$[?(@.metric == "MySQLConnection")].value.first() |2 |0 |
-ROW |35179 |30853 |1 |12 |$[?(@.metric == "TCPConnection")].value.first() |0 | |
-ROW |35180 |30854 |1 |12 |$[?(@.metric == "DistributedFilesToInsert")].value.first() |0 | |
-ROW |35181 |30855 |1 |12 |$[?(@.metric == "DistributedConnectionFailAtAll")].value.first() |2 |0 |
-ROW |35182 |30855 |2 |10 | |0 | |
-ROW |35183 |30856 |1 |12 |$[?(@.metric == "DistributedConnectionFailTry")].value.first() |2 |0 |
-ROW |35184 |30856 |2 |10 | |0 | |
-ROW |35185 |30857 |1 |12 |$[?(@.event == "InsertQuery")].value.first() |2 |0 |
-ROW |35186 |30857 |2 |10 | |0 | |
-ROW |35187 |30858 |1 |12 |$[?(@.metric == "DelayedInserts")].value.first() |0 | |
-ROW |35188 |30859 |1 |12 |$[?(@.event == "InsertedBytes")].value.first() |2 |0 |
-ROW |35189 |30859 |2 |10 | |0 | |
-ROW |35190 |30860 |1 |12 |$[?(@.event == "InsertedRows")].value.first() |2 |0 |
-ROW |35191 |30860 |2 |10 | |0 | |
-ROW |35192 |30861 |1 |12 |$[?(@.metric == "jemalloc.mapped")].value.first() |0 | |
-ROW |35193 |30862 |1 |12 |$[?(@.event == "NetworkErrors")].value.first() |2 |0 |
-ROW |35194 |30862 |2 |10 | |0 | |
-ROW |35195 |30863 |1 |12 |$[?(@.metric == "jemalloc.resident")].value.first() |0 | |
-ROW |35196 |30864 |1 |12 |$[?(@.metric == "MaxPartCountForPartition")].value.first() |0 | |
-ROW |35197 |30865 |1 |12 |$[?(@.metric == "MemoryTracking")].value.first() |0 | |
-ROW |35198 |30866 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundProcessingPool")].value.first() |0 | |
-ROW |35199 |30867 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundMoveProcessingPool")].value.first() |2 |0 |
-ROW |35200 |30868 |1 |12 |$[?(@.metric == "MemoryTrackingForMerges")].value.first() |0 | |
-ROW |35201 |30869 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundSchedulePool")].value.first() |0 | |
-ROW |35202 |30870 |1 |12 |$[?(@.event == "MergedUncompressedBytes")].value.first() |2 |0 |
-ROW |35203 |30870 |2 |10 | |0 | |
-ROW |35204 |30871 |1 |12 |$[?(@.event == "MergedRows")].value.first() |2 |0 |
-ROW |35205 |30871 |2 |10 | |0 | |
-ROW |35206 |30872 |1 |12 |$[?(@.metric == "Merge")].value.first() |0 | |
-ROW |35207 |30873 |1 |12 |$[?(@.metric == "ZooKeeperWatch")].value.first() |0 | |
-ROW |35208 |30877 |1 |12 |$[?(@.name == "{#NAME}")].bytes_allocated.first() |0 | |
-ROW |35209 |30878 |1 |12 |$[?(@.name == "{#NAME}")].element_count.first() |0 | |
-ROW |35210 |30879 |1 |12 |$[?(@.name == "{#NAME}")].bytes_allocated.first() |0 | |
-ROW |35211 |30879 |2 |1 |100 |0 | |
-ROW |35212 |30880 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].active_replicas.first() |0 | |
-ROW |35213 |30881 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].future_parts.first() |0 | |
-ROW |35214 |30882 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].inserts_in_queue.first() |0 | |
-ROW |35215 |30883 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].is_readonly.first() |0 | |
-ROW |35216 |30884 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].is_session_expired.first() |0 | |
-ROW |35217 |30885 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].replica_lag.first() |0 | |
-ROW |35218 |30886 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].log_max_index.first() |0 | |
-ROW |35219 |30887 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].log_pointer.first() |0 | |
-ROW |35220 |30888 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].merges_in_queue.first() |0 | |
-ROW |35221 |30889 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].parts_to_check.first() |0 | |
-ROW |35222 |30890 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].queue_size.first() |0 | |
-ROW |35223 |30891 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].total_replicas.first() |0 | |
-ROW |35224 |30892 |1 |12 |$[?(@.database == "{#DB}")].bytes.sum() |0 | |
-ROW |35225 |30893 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].bytes.first() |0 | |
-ROW |35226 |30894 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].parts.first() |0 | |
-ROW |35227 |30895 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].rows.first() |0 | |
-ROW |35228 |30431 |1 |5 |(Server version)\s+(.+)&bsn;\2 |0 | |
-ROW |35229 |30431 |2 |20 |1d |0 | |
-ROW |35230 |30432 |1 |21 |return value.indexOf('is alive') !== -1 ? 1 : 0; |0 | |
-ROW |35231 |30432 |2 |20 |10m |0 | |
-ROW |35232 |30436 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
-ROW |35233 |30437 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
-ROW |35234 |30437 |2 |10 | |0 | |
-ROW |35235 |30438 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time']/field[@name='Value']/text() |0 | |
-ROW |35236 |30438 |2 |1 |0.001 |0 | |
-ROW |35237 |30438 |3 |20 |1h |0 | |
-ROW |35238 |30439 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time_max']/field[@name='Value']/text() |0 | |
-ROW |35239 |30439 |2 |1 |0.001 |0 | |
-ROW |35240 |30439 |3 |20 |1h |0 | |
-ROW |35241 |30440 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_waits']/field[@name='Value']/text() |0 | |
-ROW |35242 |30441 |1 |11 |/resultset/row[field/text()='Max_used_connections']/field[@name='Value']/text() |0 | |
-ROW |35243 |30441 |2 |20 |1h |0 | |
-ROW |35244 |30442 |1 |11 |/resultset/row[field/text()='Queries']/field[@name='Value']/text() |0 | |
-ROW |35245 |30442 |2 |10 | |0 | |
-ROW |35246 |30443 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
-ROW |35247 |30444 |1 |11 |/resultset/row[field/text()='Questions']/field[@name='Value']/text() |0 | |
-ROW |35248 |30444 |2 |10 | |0 | |
-ROW |35249 |30445 |1 |11 |/resultset/row[field/text()='Slow_queries']/field[@name='Value']/text() |0 | |
-ROW |35250 |30445 |2 |10 | |0 | |
-ROW |35251 |30446 |1 |11 |/resultset/row[field/text()='Threads_cached']/field[@name='Value']/text() |0 | |
-ROW |35252 |30447 |1 |11 |/resultset/row[field/text()='Threads_connected']/field[@name='Value']/text() |0 | |
-ROW |35253 |30448 |1 |11 |/resultset/row[field/text()='Threads_created']/field[@name='Value']/text() |0 | |
-ROW |35254 |30449 |1 |11 |/resultset/row[field/text()='Threads_running']/field[@name='Value']/text() |0 | |
-ROW |35255 |30450 |1 |11 |/resultset/row[field/text()='Uptime']/field[@name='Value']/text() |0 | |
-ROW |35256 |30451 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
-ROW |35257 |30451 |2 |10 | |0 | |
-ROW |35258 |30452 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_total']/field[@name='Value']/text() |0 | |
-ROW |35259 |30452 |2 |20 |1h |0 | |
-ROW |35260 |30453 |1 |11 |/resultset/row[field/text()='Bytes_received']/field[@name='Value']/text() |0 | |
-ROW |35261 |30453 |2 |10 | |0 | |
-ROW |35262 |30454 |1 |11 |/resultset/row[field/text()='Connection_errors_max_connections']/field[@name='Value']/text() |0 | |
-ROW |35263 |30454 |2 |10 | |0 | |
-ROW |35264 |30455 |1 |11 |/resultset/row[field/text()='Bytes_sent']/field[@name='Value']/text() |0 | |
-ROW |35265 |30455 |2 |10 | |0 | |
-ROW |35266 |30456 |1 |11 |/resultset/row[field/text()='Com_delete']/field[@name='Value']/text() |0 | |
-ROW |35267 |30456 |2 |10 | |0 | |
-ROW |35268 |30457 |1 |11 |/resultset/row[field/text()='Com_insert']/field[@name='Value']/text() |0 | |
-ROW |35269 |30457 |2 |10 | |0 | |
-ROW |35270 |30458 |1 |11 |/resultset/row[field/text()='Com_select']/field[@name='Value']/text() |0 | |
-ROW |35271 |30458 |2 |10 | |0 | |
-ROW |35272 |30459 |1 |11 |/resultset/row[field/text()='Com_update']/field[@name='Value']/text() |0 | |
-ROW |35273 |30459 |2 |10 | |0 | |
-ROW |35274 |30460 |1 |11 |/resultset/row[field/text()='Connection_errors_accept']/field[@name='Value']/text() |0 | |
-ROW |35275 |30460 |2 |10 | |0 | |
-ROW |35276 |30461 |1 |11 |/resultset/row[field/text()='Connection_errors_internal']/field[@name='Value']/text() |0 | |
-ROW |35277 |30461 |2 |10 | |0 | |
-ROW |35278 |30462 |1 |11 |/resultset/row[field/text()='Connection_errors_peer_address']/field[@name='Value']/text() |0 | |
-ROW |35279 |30462 |2 |10 | |0 | |
-ROW |35280 |30463 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_free']/field[@name='Value']/text() |0 | |
-ROW |35281 |30464 |1 |11 |/resultset/row[field/text()='Connection_errors_select']/field[@name='Value']/text() |0 | |
-ROW |35282 |30464 |2 |10 | |0 | |
-ROW |35283 |30465 |1 |11 |/resultset/row[field/text()='Connection_errors_tcpwrap']/field[@name='Value']/text() |0 | |
-ROW |35284 |30465 |2 |10 | |0 | |
-ROW |35285 |30466 |1 |11 |/resultset/row[field/text()='Connections']/field[@name='Value']/text() |0 | |
-ROW |35286 |30466 |2 |10 | |0 | |
-ROW |35287 |30467 |1 |11 |/resultset/row[field/text()='Created_tmp_disk_tables']/field[@name='Value']/text() |0 | |
-ROW |35288 |30468 |1 |11 |/resultset/row[field/text()='Created_tmp_files']/field[@name='Value']/text() |0 | |
-ROW |35289 |30469 |1 |11 |/resultset/row[field/text()='Created_tmp_tables']/field[@name='Value']/text() |0 | |
-ROW |35290 |30470 |1 |11 |/resultset/row[field/text()='Aborted_connects']/field[@name='Value']/text() |0 | |
-ROW |35291 |30470 |2 |10 | |0 | |
-ROW |35292 |30471 |1 |11 |/resultset/row[field/text()='Aborted_clients']/field[@name='Value']/text() |0 | |
-ROW |35293 |30471 |2 |10 | |0 | |
-ROW |35294 |30472 |1 |21 |return JSON.stringify(value.split("\n").map(function (name) {&bsn; return ({"{#DBNAME}": name});&bsn;})); |0 | |
-ROW |35295 |30472 |2 |20 |1d |0 | |
-ROW |35296 |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 |35297 |30473 |2 |20 |1d |0 | |
-ROW |35298 |30474 |1 |20 |1h |0 | |
-ROW |35299 |30476 |1 |11 |/resultset/row/field[@name='Seconds_Behind_Master']/text() |0 | |
-ROW |35300 |30476 |2 |20 |1h |0 | |
-ROW |35301 |30476 |3 |15 |null |3 |Replication is not performed.|
-ROW |35302 |30477 |1 |11 |/resultset/row/field[@name='Slave_IO_Running']/text() |0 | |
-ROW |35303 |30477 |2 |20 |1h |0 | |
-ROW |35304 |30478 |1 |11 |/resultset/row/field[@name='Slave_SQL_Running']/text() |0 | |
-ROW |35305 |30478 |2 |20 |1h |0 | |
-ROW |35306 |30637 |1 |20 |1d |0 | |
-ROW |35307 |30638 |1 |20 |10m |0 | |
-ROW |35308 |30642 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
-ROW |35309 |30643 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
-ROW |35310 |30643 |2 |10 | |0 | |
-ROW |35311 |30644 |1 |12 |$.Innodb_row_lock_time |0 | |
-ROW |35312 |30644 |2 |1 |0.001 |0 | |
-ROW |35313 |30644 |3 |20 |1h |0 | |
-ROW |35314 |30645 |1 |12 |$.Innodb_row_lock_time_max |0 | |
-ROW |35315 |30645 |2 |1 |0.001 |0 | |
-ROW |35316 |30645 |3 |20 |1h |0 | |
-ROW |35317 |30646 |1 |12 |$.Innodb_row_lock_waits |0 | |
-ROW |35318 |30647 |1 |12 |$.Max_used_connections |0 | |
-ROW |35319 |30647 |2 |20 |1h |0 | |
-ROW |35320 |30648 |1 |12 |$.Queries |0 | |
-ROW |35321 |30648 |2 |10 | |0 | |
-ROW |35322 |30649 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
-ROW |35323 |30650 |1 |12 |$.Questions |0 | |
-ROW |35324 |30650 |2 |10 | |0 | |
-ROW |35325 |30651 |1 |12 |$.Slow_queries |0 | |
-ROW |35326 |30651 |2 |10 | |0 | |
-ROW |35327 |30652 |1 |12 |$.Threads_cached |0 | |
-ROW |35328 |30653 |1 |12 |$.Threads_connected |0 | |
-ROW |35329 |30654 |1 |12 |$.Threads_created |0 | |
-ROW |35330 |30655 |1 |12 |$.Threads_running |0 | |
-ROW |35331 |30656 |1 |12 |$.Uptime |0 | |
-ROW |35332 |30657 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
-ROW |35333 |30657 |2 |10 | |0 | |
-ROW |35334 |30658 |1 |12 |$.Innodb_buffer_pool_pages_total |0 | |
-ROW |35335 |30658 |2 |20 |1h |0 | |
-ROW |35336 |30659 |1 |12 |$.Bytes_received |0 | |
-ROW |35337 |30659 |2 |10 | |0 | |
-ROW |35338 |30660 |1 |12 |$.Connection_errors_max_connections |0 | |
-ROW |35339 |30660 |2 |10 | |0 | |
-ROW |35340 |30661 |1 |12 |$.Bytes_sent |0 | |
-ROW |35341 |30661 |2 |10 | |0 | |
-ROW |35342 |30662 |1 |12 |$.Com_delete |0 | |
-ROW |35343 |30662 |2 |10 | |0 | |
-ROW |35344 |30663 |1 |12 |$.Com_insert |0 | |
-ROW |35345 |30663 |2 |10 | |0 | |
-ROW |35346 |30664 |1 |12 |$.Com_select |0 | |
-ROW |35347 |30664 |2 |10 | |0 | |
-ROW |35348 |30665 |1 |12 |$.Com_update |0 | |
-ROW |35349 |30665 |2 |10 | |0 | |
-ROW |35350 |30666 |1 |12 |$.Connection_errors_accept |0 | |
-ROW |35351 |30666 |2 |10 | |0 | |
-ROW |35352 |30667 |1 |12 |$.Connection_errors_internal |0 | |
-ROW |35353 |30667 |2 |10 | |0 | |
-ROW |35354 |30668 |1 |12 |$.Connection_errors_peer_address |0 | |
-ROW |35355 |30668 |2 |10 | |0 | |
-ROW |35356 |30669 |1 |12 |$.Innodb_buffer_pool_pages_free |0 | |
-ROW |35357 |30670 |1 |12 |$.Connection_errors_select |0 | |
-ROW |35358 |30670 |2 |10 | |0 | |
-ROW |35359 |30671 |1 |12 |$.Connection_errors_tcpwrap |0 | |
-ROW |35360 |30671 |2 |10 | |0 | |
-ROW |35361 |30672 |1 |12 |$.Connections |0 | |
-ROW |35362 |30672 |2 |10 | |0 | |
-ROW |35363 |30673 |1 |12 |$.Created_tmp_disk_tables |0 | |
-ROW |35364 |30674 |1 |12 |$.Created_tmp_files |0 | |
-ROW |35365 |30675 |1 |12 |$.Created_tmp_tables |0 | |
-ROW |35366 |30676 |1 |12 |$.Aborted_connects |0 | |
-ROW |35367 |30676 |2 |10 | |0 | |
-ROW |35368 |30677 |1 |12 |$.Aborted_clients |0 | |
-ROW |35369 |30677 |2 |10 | |0 | |
-ROW |35370 |30678 |1 |20 |1d |0 | |
-ROW |35371 |30679 |1 |20 |1d |0 | |
-ROW |35372 |30680 |1 |20 |1h |0 | |
-ROW |35373 |30682 |1 |12 |$.Seconds_Behind_Master |0 | |
-ROW |35374 |30682 |2 |14 |\d+ |3 |Replication is not performed.|
-ROW |35375 |30682 |3 |20 |1h |0 | |
-ROW |35376 |30683 |1 |12 |$.Slave_IO_Running |0 | |
-ROW |35377 |30683 |2 |20 |1h |0 | |
-ROW |35378 |30684 |1 |12 |$.Slave_SQL_Running |0 | |
-ROW |35379 |30684 |2 |20 |1h |0 | |
-ROW |35380 |30480 |1 |20 |1d |0 | |
-ROW |35381 |30481 |1 |20 |10m |0 | |
-ROW |35382 |30484 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_waits')].Value.first() |0 | |
-ROW |35383 |30485 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
-ROW |35384 |30486 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
-ROW |35385 |30486 |2 |10 | |0 | |
-ROW |35386 |30487 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
-ROW |35387 |30488 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
-ROW |35388 |30488 |2 |10 | |0 | |
-ROW |35389 |30489 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time')].Value.first() |0 | |
-ROW |35390 |30489 |2 |1 |0.001 |0 | |
-ROW |35391 |30489 |3 |20 |1h |0 | |
-ROW |35392 |30490 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time_max')].Value.first() |0 | |
-ROW |35393 |30490 |2 |1 |0.001 |0 | |
-ROW |35394 |30490 |3 |20 |1h |0 | |
-ROW |35395 |30491 |1 |12 |$[?(@.Variable_name=='Queries')].Value.first() |0 | |
-ROW |35396 |30491 |2 |10 | |0 | |
-ROW |35397 |30492 |1 |12 |$[?(@.Variable_name=='Max_used_connections')].Value.first() |0 | |
-ROW |35398 |30492 |2 |20 |1h |0 | |
-ROW |35399 |30493 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_free')].Value.first() |0 | |
-ROW |35400 |30494 |1 |12 |$[?(@.Variable_name=='Questions')].Value.first() |0 | |
-ROW |35401 |30494 |2 |10 | |0 | |
-ROW |35402 |30495 |1 |12 |$[?(@.Variable_name=='Slow_queries')].Value.first() |0 | |
-ROW |35403 |30495 |2 |10 | |0 | |
-ROW |35404 |30496 |1 |12 |$[?(@.Variable_name=='Threads_cached')].Value.first() |0 | |
-ROW |35405 |30497 |1 |12 |$[?(@.Variable_name=='Threads_connected')].Value.first() |0 | |
-ROW |35406 |30498 |1 |12 |$[?(@.Variable_name=='Threads_created')].Value.first() |0 | |
-ROW |35407 |30499 |1 |12 |$[?(@.Variable_name=='Threads_running')].Value.first() |0 | |
-ROW |35408 |30500 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_total')].Value.first() |0 | |
-ROW |35409 |30500 |2 |20 |1h |0 | |
-ROW |35410 |30501 |1 |12 |$[?(@.Variable_name=='Created_tmp_disk_tables')].Value.first() |0 | |
-ROW |35411 |30502 |1 |12 |$[?(@.Variable_name=='Created_tmp_tables')].Value.first() |0 | |
-ROW |35412 |30503 |1 |12 |$[?(@.Variable_name=='Com_select')].Value.first() |0 | |
-ROW |35413 |30503 |2 |10 | |0 | |
-ROW |35414 |30504 |1 |12 |$[?(@.Variable_name=='Aborted_clients')].Value.first() |0 | |
-ROW |35415 |30504 |2 |10 | |0 | |
-ROW |35416 |30505 |1 |12 |$[?(@.Variable_name=='Aborted_connects')].Value.first() |0 | |
-ROW |35417 |30505 |2 |10 | |0 | |
-ROW |35418 |30506 |1 |12 |$[?(@.Variable_name=='Bytes_received')].Value.first() |0 | |
-ROW |35419 |30506 |2 |10 | |0 | |
-ROW |35420 |30507 |1 |12 |$[?(@.Variable_name=='Bytes_sent')].Value.first() |0 | |
-ROW |35421 |30507 |2 |10 | |0 | |
-ROW |35422 |30508 |1 |12 |$[?(@.Variable_name=='Com_delete')].Value.first() |0 | |
-ROW |35423 |30508 |2 |10 | |0 | |
-ROW |35424 |30509 |1 |12 |$[?(@.Variable_name=='Com_insert')].Value.first() |0 | |
-ROW |35425 |30509 |2 |10 | |0 | |
-ROW |35426 |30510 |1 |12 |$[?(@.Variable_name=='Com_update')].Value.first() |0 | |
-ROW |35427 |30510 |2 |10 | |0 | |
-ROW |35428 |30511 |1 |12 |$[?(@.Variable_name=='Created_tmp_files')].Value.first() |0 | |
-ROW |35429 |30512 |1 |12 |$[?(@.Variable_name=='Connection_errors_accept')].Value.first() |0 | |
-ROW |35430 |30512 |2 |10 | |0 | |
-ROW |35431 |30513 |1 |12 |$[?(@.Variable_name=='Connection_errors_internal')].Value.first() |0 | |
-ROW |35432 |30513 |2 |10 | |0 | |
-ROW |35433 |30514 |1 |12 |$[?(@.Variable_name=='Connection_errors_max_connections')].Value.first() |0 | |
-ROW |35434 |30514 |2 |10 | |0 | |
-ROW |35435 |30515 |1 |12 |$[?(@.Variable_name=='Connection_errors_peer_address')].Value.first() |0 | |
-ROW |35436 |30515 |2 |10 | |0 | |
-ROW |35437 |30516 |1 |12 |$[?(@.Variable_name=='Connection_errors_select')].Value.first() |0 | |
-ROW |35438 |30516 |2 |10 | |0 | |
-ROW |35439 |30517 |1 |12 |$[?(@.Variable_name=='Connection_errors_tcpwrap')].Value.first() |0 | |
-ROW |35440 |30517 |2 |10 | |0 | |
-ROW |35441 |30518 |1 |12 |$[?(@.Variable_name=='Connections')].Value.first() |0 | |
-ROW |35442 |30518 |2 |10 | |0 | |
-ROW |35443 |30519 |1 |12 |$[?(@.Variable_name=='Uptime')].Value.first() |0 | |
-ROW |35444 |30520 |1 |20 |1d |0 | |
-ROW |35445 |30521 |1 |20 |1d |0 | |
-ROW |35446 |30522 |1 |20 |1h |0 | |
-ROW |35447 |30524 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Seconds_Behind_Master'].first() |0 | |
-ROW |35448 |30524 |2 |14 |\d+ |3 |Replication is not performed.|
-ROW |35449 |30524 |3 |20 |1h |0 | |
-ROW |35450 |30525 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_IO_Running'].first() |0 | |
-ROW |35451 |30525 |2 |20 |1h |0 | |
-ROW |35452 |30526 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_SQL_Running'].first() |0 | |
-ROW |35453 |30526 |2 |20 |1h |0 | |
-ROW |35454 |28673 |1 |5 |Time:\s(\d+\.\d+)\sms&bsn;\1 |0 | |
-ROW |35455 |28674 |1 |21 |return value.search(/accepting connections/)>0 ? 1 : 0 |0 | |
-ROW |35456 |28674 |2 |20 |1h |0 | |
-ROW |35457 |28680 |1 |20 |1h |0 | |
-ROW |35458 |28685 |1 |20 |1d |0 | |
-ROW |35459 |28688 |1 |12 |$.idle |0 | |
-ROW |35460 |28689 |1 |12 |$.active |0 | |
-ROW |35461 |28690 |1 |12 |$.prepared |0 | |
-ROW |35462 |28691 |1 |12 |$.waiting |0 | |
-ROW |35463 |28692 |1 |12 |$.count |0 | |
-ROW |35464 |28693 |1 |12 |$.buffers_alloc |0 | |
-ROW |35465 |28693 |2 |10 | |0 | |
-ROW |35466 |28694 |1 |12 |$.buffers_backend |0 | |
-ROW |35467 |28694 |2 |10 | |0 | |
-ROW |35468 |28695 |1 |12 |$.checkpoint_write_time |0 | |
-ROW |35469 |28695 |2 |1 |0.001 |0 | |
-ROW |35470 |28695 |3 |10 | |0 | |
-ROW |35471 |28696 |1 |12 |$.buffers_backend_fsync |0 | |
-ROW |35472 |28696 |2 |10 | |0 | |
-ROW |35473 |28697 |1 |12 |$.buffers_checkpoint |0 | |
-ROW |35474 |28697 |2 |10 | |0 | |
-ROW |35475 |28698 |1 |12 |$.buffers_clean |0 | |
-ROW |35476 |28698 |2 |10 | |0 | |
-ROW |35477 |28699 |1 |12 |$.checkpoints_req |0 | |
-ROW |35478 |28699 |2 |10 | |0 | |
-ROW |35479 |28700 |1 |12 |$.checkpoints_timed |0 | |
-ROW |35480 |28700 |2 |10 | |0 | |
-ROW |35481 |28701 |1 |12 |$.checkpoint_write_time |0 | |
-ROW |35482 |28701 |2 |1 |0.001 |0 | |
-ROW |35483 |28701 |3 |10 | |0 | |
-ROW |35484 |28702 |1 |12 |$.maxwritten_clean |0 | |
-ROW |35485 |28702 |2 |10 | |0 | |
-ROW |35486 |28703 |1 |12 |$.waiting |0 | |
-ROW |35487 |28704 |1 |12 |$.active |0 | |
-ROW |35488 |28705 |1 |12 |$.idle |0 | |
-ROW |35489 |28706 |1 |12 |$.idle_in_transaction |0 | |
-ROW |35490 |28707 |1 |12 |$.prepared |0 | |
-ROW |35491 |28708 |1 |12 |$.total |0 | |
-ROW |35492 |28709 |1 |12 |$.total_pct |0 | |
-ROW |35493 |28710 |1 |12 |$.write |0 | |
-ROW |35494 |28710 |2 |10 | |0 | |
-ROW |35495 |28715 |1 |12 |$['{#DBNAME}'].conflicts |0 | |
-ROW |35496 |28715 |2 |10 | |0 | |
-ROW |35497 |28716 |1 |12 |$['{#DBNAME}'].total |0 | |
-ROW |35498 |28717 |1 |12 |$.seq |0 | |
-ROW |35499 |28717 |2 |10 | |0 | |
-ROW |35500 |28718 |1 |12 |$.idx |0 | |
-ROW |35501 |28718 |2 |10 | |0 | |
-ROW |35502 |28719 |1 |12 |$['{#DBNAME}'].tx_time_sum |0 | |
-ROW |35503 |28720 |1 |12 |$['{#DBNAME}'].tx_time_max |0 | |
-ROW |35504 |28721 |1 |12 |$['{#DBNAME}'].tx_slow_count |0 | |
-ROW |35505 |28722 |1 |12 |$['{#DBNAME}'].query_time_sum |0 | |
-ROW |35506 |28723 |1 |12 |$['{#DBNAME}'].query_time_max |0 | |
-ROW |35507 |28724 |1 |12 |$['{#DBNAME}'].query_slow_count |0 | |
-ROW |35508 |28725 |1 |12 |$['{#DBNAME}'].mro_time_sum |0 | |
-ROW |35509 |28726 |1 |12 |$['{#DBNAME}'].mro_time_max |0 | |
-ROW |35510 |28727 |1 |12 |$['{#DBNAME}'].mro_slow_count |0 | |
-ROW |35511 |28728 |1 |12 |$['{#DBNAME}'].blks_read |0 | |
-ROW |35512 |28728 |2 |10 | |0 | |
-ROW |35513 |28729 |1 |12 |$['{#DBNAME}'].deadlocks |0 | |
-ROW |35514 |28729 |2 |10 | |0 | |
-ROW |35515 |28730 |1 |12 |$['{#DBNAME}'].blks_hit |0 | |
-ROW |35516 |28730 |2 |10 | |0 | |
-ROW |35517 |28731 |1 |12 |$.prc_before_av |0 | |
-ROW |35518 |28732 |1 |12 |$['{#DBNAME}'].xact_rollback |0 | |
-ROW |35519 |28732 |2 |10 | |0 | |
-ROW |35520 |28733 |1 |12 |$['{#DBNAME}'].xact_commit |0 | |
-ROW |35521 |28733 |2 |10 | |0 | |
-ROW |35522 |28734 |1 |12 |$['{#DBNAME}'].tup_updated |0 | |
-ROW |35523 |28734 |2 |10 | |0 | |
-ROW |35524 |28735 |1 |12 |$['{#DBNAME}'].tup_returned |0 | |
-ROW |35525 |28735 |2 |10 | |0 | |
-ROW |35526 |28736 |1 |12 |$['{#DBNAME}'].tup_inserted |0 | |
-ROW |35527 |28736 |2 |10 | |0 | |
-ROW |35528 |28737 |1 |12 |$['{#DBNAME}'].tup_fetched |0 | |
-ROW |35529 |28737 |2 |10 | |0 | |
-ROW |35530 |28738 |1 |12 |$['{#DBNAME}'].tup_deleted |0 | |
-ROW |35531 |28738 |2 |10 | |0 | |
-ROW |35532 |28739 |1 |12 |$['{#DBNAME}'].temp_files |0 | |
-ROW |35533 |28739 |2 |10 | |0 | |
-ROW |35534 |28740 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
-ROW |35535 |28740 |2 |10 | |0 | |
-ROW |35536 |28741 |1 |12 |$.prc_before_stop |0 | |
-ROW |35537 |30273 |1 |20 |10m |0 | |
-ROW |35538 |30274 |1 |10 | |0 | |
-ROW |35539 |30275 |1 |20 |1h |0 | |
-ROW |35540 |30277 |1 |12 |$.Clients.blocked_clients |0 | |
-ROW |35541 |30278 |1 |12 |$.Server.tcp_port |0 | |
-ROW |35542 |30278 |2 |20 |1d |0 | |
-ROW |35543 |30279 |1 |12 |$.Stats.expired_keys |0 | |
-ROW |35544 |30280 |1 |12 |$.Stats.evicted_keys |0 | |
-ROW |35545 |30281 |1 |12 |$.Server.uptime_in_seconds |0 | |
-ROW |35546 |30282 |1 |12 |$.Server.redis_mode |0 | |
-ROW |35547 |30282 |2 |20 |1d |0 | |
-ROW |35548 |30283 |1 |12 |$.Server.redis_version |0 | |
-ROW |35549 |30283 |2 |20 |1d |0 | |
-ROW |35550 |30284 |1 |12 |$.Stats.instantaneous_ops_per_sec |0 | |
-ROW |35551 |30285 |1 |12 |$.Server.process_id |0 | |
-ROW |35552 |30285 |2 |20 |1d |0 | |
-ROW |35553 |30286 |1 |12 |$.Replication.role |0 | |
-ROW |35554 |30286 |2 |20 |1d |0 | |
-ROW |35555 |30287 |1 |12 |$.Replication.repl_backlog_size |0 | |
-ROW |35556 |30288 |1 |12 |$.Replication.repl_backlog_histlen |0 | |
-ROW |35557 |30289 |1 |12 |$.Stats.instantaneous_input_kbps |0 | |
-ROW |35558 |30289 |2 |1 |1024 |0 | |
-ROW |35559 |30290 |1 |12 |$.Stats.keyspace_hits |0 | |
-ROW |35560 |30291 |1 |12 |$.Stats.instantaneous_output_kbps |0 | |
-ROW |35561 |30291 |2 |1 |1024 |0 | |
-ROW |35562 |30292 |1 |12 |$.Replication.repl_backlog_active |0 | |
-ROW |35563 |30293 |1 |12 |$.Stats.keyspace_misses |0 | |
-ROW |35564 |30294 |1 |12 |$.Stats.latest_fork_usec |0 | |
-ROW |35565 |30294 |2 |1 |1.0E-5 |0 | |
-ROW |35566 |30295 |1 |12 |$.Stats.migrate_cached_sockets |0 | |
-ROW |35567 |30296 |1 |12 |$.Stats.pubsub_channels |0 | |
-ROW |35568 |30297 |1 |12 |$.Stats.pubsub_patterns |0 | |
-ROW |35569 |30298 |1 |12 |$.Stats.rejected_connections |0 | |
-ROW |35570 |30299 |1 |12 |$.Stats.sync_full |0 | |
-ROW |35571 |30300 |1 |12 |$.Stats.sync_partial_err |0 | |
-ROW |35572 |30301 |1 |12 |$.Stats.sync_partial_ok |0 | |
-ROW |35573 |30302 |1 |12 |$.Stats.total_commands_processed |0 | |
-ROW |35574 |30303 |1 |12 |$.Stats.total_connections_received |0 | |
-ROW |35575 |30304 |1 |12 |$.Stats.total_net_input_bytes |0 | |
-ROW |35576 |30305 |1 |12 |$.Replication.repl_backlog_first_byte_offset |0 | |
-ROW |35577 |30306 |1 |12 |$.Replication.connected_slaves |0 | |
-ROW |35578 |30307 |1 |12 |$.Replication.master_repl_offset |0 | |
-ROW |35579 |30308 |1 |12 |$.Memory.used_memory_rss |0 | |
-ROW |35580 |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 |35581 |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 |35582 |30311 |1 |12 |$.Cluster.cluster_enabled |0 | |
-ROW |35583 |30312 |1 |12 |$.maxclients |0 | |
-ROW |35584 |30312 |2 |20 |30m |0 | |
-ROW |35585 |30313 |1 |12 |$.CPU.used_cpu_sys |0 | |
-ROW |35586 |30314 |1 |12 |$.CPU.used_cpu_sys_children |0 | |
-ROW |35587 |30315 |1 |12 |$.CPU.used_cpu_user |0 | |
-ROW |35588 |30316 |1 |12 |$.CPU.used_cpu_user_children |0 | |
-ROW |35589 |30317 |1 |12 |$.Memory.mem_fragmentation_ratio |0 | |
-ROW |35590 |30318 |1 |12 |$.Memory.used_memory |0 | |
-ROW |35591 |30319 |1 |12 |$.Memory.used_memory_lua |0 | |
-ROW |35592 |30320 |1 |12 |$.Memory.used_memory_peak |0 | |
-ROW |35593 |30321 |1 |12 |$.Persistence.aof_current_rewrite_time_sec |0 | |
-ROW |35594 |30322 |1 |12 |$.Clients.connected_clients |0 | |
-ROW |35595 |30323 |1 |12 |$.Persistence.aof_enabled |0 | |
-ROW |35596 |30324 |1 |12 |$.Persistence.aof_last_bgrewrite_status |0 | |
-ROW |35597 |30324 |2 |6 | |0 | |
-ROW |35598 |30325 |1 |12 |$.Persistence.aof_last_rewrite_time_sec |0 | |
-ROW |35599 |30326 |1 |12 |$.Persistence.aof_last_write_status |0 | |
-ROW |35600 |30326 |2 |6 | |0 | |
-ROW |35601 |30327 |1 |12 |$.Persistence.aof_rewrite_in_progress |0 | |
-ROW |35602 |30328 |1 |12 |$.Persistence.aof_rewrite_scheduled |0 | |
-ROW |35603 |30329 |1 |12 |$.Persistence.loading |0 | |
-ROW |35604 |30330 |1 |12 |$.Persistence.rdb_bgsave_in_progress |0 | |
-ROW |35605 |30331 |1 |12 |$.Persistence.rdb_changes_since_last_save |0 | |
-ROW |35606 |30332 |1 |12 |$.Persistence.rdb_current_bgsave_time_sec |0 | |
-ROW |35607 |30333 |1 |12 |$.Persistence.rdb_last_bgsave_status |0 | |
-ROW |35608 |30333 |2 |6 | |0 | |
-ROW |35609 |30334 |1 |12 |$.Persistence.rdb_last_bgsave_time_sec |0 | |
-ROW |35610 |30335 |1 |12 |$.Persistence.rdb_last_save_time |0 | |
-ROW |35611 |30336 |1 |12 |$.Stats.total_net_output_bytes |0 | |
-ROW |35612 |30337 |1 |21 |return JSON.stringify(value > 0 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |35613 |30338 |1 |21 |return JSON.stringify(Object.keys(JSON.parse(value).Keyspace)&bsn; .map(function (v){return {"{#DB}": v}})); |0 | |
-ROW |35614 |30339 |1 |12 |$.Server.redis_version |0 | |
-ROW |35615 |30339 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 4 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |35616 |30340 |1 |12 |$.Server.redis_version |0 | |
-ROW |35617 |30340 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 5 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |35618 |30341 |1 |21 |return JSON.stringify(JSON.parse(value).Persistence.aof_enabled === '1'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
-ROW |35619 |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 |35620 |30343 |1 |21 |return JSON.stringify(JSON.parse(value).Replication.role === 'slave'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
-ROW |35621 |30348 |1 |12 |$.Keyspace["{#DB}"].avg_ttl |0 | |
-ROW |35622 |30348 |2 |1 |0.001 |0 | |
-ROW |35623 |30349 |1 |12 |$.Keyspace["{#DB}"].expires |0 | |
-ROW |35624 |30350 |1 |12 |$.Keyspace["{#DB}"].keys |0 | |
-ROW |35625 |30351 |1 |12 |$.Memory.active_defrag_running |0 | |
-ROW |35626 |30352 |1 |12 |$.Persistence.rdb_last_cow_size |0 | |
-ROW |35627 |30353 |1 |12 |$.Stats.expired_time_cap_reached_count |0 | |
-ROW |35628 |30354 |1 |12 |$.Stats.expired_stale_perc |0 | |
-ROW |35629 |30355 |1 |12 |$.Stats.active_defrag_misses |0 | |
-ROW |35630 |30356 |1 |12 |$.Stats.active_defrag_key_misses |0 | |
-ROW |35631 |30357 |1 |12 |$.Stats.active_defrag_key_hits |0 | |
-ROW |35632 |30358 |1 |12 |$.Stats.active_defrag_hits |0 | |
-ROW |35633 |30359 |1 |12 |$.Server.executable |0 | |
-ROW |35634 |30359 |2 |20 |1d |0 | |
-ROW |35635 |30360 |1 |12 |$.Replication.second_repl_offset |0 | |
-ROW |35636 |30361 |1 |12 |$.Persistence.aof_last_cow_size |0 | |
-ROW |35637 |30362 |1 |12 |$.Memory.lazyfree_pending_objects |0 | |
-ROW |35638 |30363 |1 |12 |$.Memory.used_memory_startup |0 | |
-ROW |35639 |30364 |1 |12 |$.Memory.used_memory_peak_perc |0 | |
-ROW |35640 |30364 |2 |5 |(.+)%&bsn;\1 |0 | |
-ROW |35641 |30365 |1 |12 |$.Memory.used_memory_overhead |0 | |
-ROW |35642 |30366 |1 |12 |$.Memory.used_memory_dataset |0 | |
-ROW |35643 |30367 |1 |12 |$.Memory.used_memory_dataset_perc |0 | |
-ROW |35644 |30367 |2 |5 |(.+)%&bsn;\1 |0 | |
-ROW |35645 |30368 |1 |12 |$.Memory.total_system_memory |0 | |
-ROW |35646 |30369 |1 |12 |$.Memory.maxmemory |0 | |
-ROW |35647 |30370 |1 |12 |$.Memory.maxmemory_policy |0 | |
-ROW |35648 |30370 |2 |20 |1d |0 | |
-ROW |35649 |30371 |1 |12 |$.Stats.slave_expires_tracked_keys |0 | |
-ROW |35650 |30372 |1 |12 |$.Memory.allocator_active |0 | |
-ROW |35651 |30373 |1 |12 |$.Memory.mem_clients_normal |0 | |
-ROW |35652 |30374 |1 |12 |$.Memory.rss_overhead_ratio |0 | |
-ROW |35653 |30375 |1 |12 |$.Memory.rss_overhead_bytes |0 | |
-ROW |35654 |30376 |1 |12 |$.Memory.mem_replication_backlog |0 | |
-ROW |35655 |30377 |1 |12 |$.Memory.number_of_cached_scripts |0 | |
-ROW |35656 |30378 |1 |12 |$.Memory.mem_not_counted_for_evict |0 | |
-ROW |35657 |30379 |1 |12 |$.Memory.mem_clients_slaves |0 | |
-ROW |35658 |30380 |1 |12 |$.Memory.mem_aof_buffer |0 | |
-ROW |35659 |30381 |1 |12 |$.Memory.allocator_allocated |0 | |
-ROW |35660 |30382 |1 |12 |$.Memory.mem_fragmentation_bytes |0 | |
-ROW |35661 |30383 |1 |12 |$.Memory.allocator_rss_ratio |0 | |
-ROW |35662 |30384 |1 |12 |$.Memory.allocator_rss_bytes |0 | |
-ROW |35663 |30385 |1 |12 |$.Memory.allocator_resident |0 | |
-ROW |35664 |30386 |1 |12 |$.Memory.allocator_frag_ratio |0 | |
-ROW |35665 |30387 |1 |12 |$.Memory.allocator_frag_bytes |0 | |
-ROW |35666 |30388 |1 |12 |$.Memory.used_memory_scripts |0 | |
-ROW |35667 |30389 |1 |12 |$.Persistence.aof_base_size |0 | |
-ROW |35668 |30390 |1 |12 |$.Persistence.aof_buffer_length |0 | |
-ROW |35669 |30391 |1 |12 |$.Persistence.aof_current_size |0 | |
-ROW |35670 |30392 |1 |12 |$.Persistence.aof_delayed_fsync |0 | |
-ROW |35671 |30393 |1 |12 |$.Persistence.aof_pending_bio_fsync |0 | |
-ROW |35672 |30394 |1 |12 |$.Persistence.aof_pending_rewrite |0 | |
-ROW |35673 |30395 |1 |12 |$.Persistence.aof_rewrite_buffer_length |0 | |
-ROW |35674 |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 |35675 |30397 |1 |12 |$.Replication.master_host |0 | |
-ROW |35676 |30397 |2 |20 |1d |0 | |
-ROW |35677 |30398 |1 |12 |$.Replication.master_last_io_seconds_ago |0 | |
-ROW |35678 |30399 |1 |12 |$.Replication.master_link_status |0 | |
-ROW |35679 |30399 |2 |6 | |0 | |
-ROW |35680 |30400 |1 |12 |$.Replication.master_port |0 | |
-ROW |35681 |30400 |2 |20 |1d |0 | |
-ROW |35682 |30401 |1 |12 |$.Replication.master_sync_in_progress |0 | |
-ROW |35683 |30402 |1 |12 |$.Replication.slave_priority |0 | |
-ROW |35684 |30403 |1 |12 |$.Replication.slave_read_only |0 | |
-ROW |35685 |30403 |2 |20 |1d |0 | |
-ROW |35686 |30404 |1 |12 |$.Replication.slave_repl_offset |0 | |
-ROW |35687 |27141 |1 |20 |1h |0 | |
-ROW |35688 |29824 |1 |1 |0.01 |0 | |
-ROW |35689 |29825 |1 |20 |1h |0 | |
-ROW |35690 |29826 |1 |20 |1d |0 | |
-ROW |35691 |29827 |1 |20 |1h |0 | |
-ROW |35692 |29828 |1 |20 |1d |0 | |
-ROW |35693 |27615 |1 |20 |1h |0 | |
-ROW |35694 |28022 |1 |20 |1h |0 | |
-ROW |35695 |28433 |1 |20 |1h |0 | |
-ROW |35696 |29829 |1 |1 |0.01 |0 | |
-ROW |35697 |29830 |1 |20 |1h |0 | |
-ROW |35698 |29831 |1 |20 |1d |0 | |
-ROW |35699 |29832 |1 |20 |1h |0 | |
-ROW |35700 |29833 |1 |20 |1d |0 | |
-ROW |35701 |29834 |1 |1 |0.01 |0 | |
-ROW |35702 |29835 |1 |20 |1h |0 | |
-ROW |35703 |29836 |1 |20 |1d |0 | |
-ROW |35704 |29837 |1 |20 |1h |0 | |
-ROW |35705 |29838 |1 |20 |1d |0 | |
-ROW |35706 |29839 |1 |1 |0.01 |0 | |
-ROW |35707 |29840 |1 |20 |1h |0 | |
-ROW |35708 |29841 |1 |20 |1d |0 | |
-ROW |35709 |29842 |1 |20 |1h |0 | |
-ROW |35710 |29843 |1 |20 |1d |0 | |
-ROW |35711 |27152 |1 |20 |1h |0 | |
-ROW |35712 |29844 |1 |1 |0.01 |0 | |
-ROW |35713 |29845 |1 |20 |1h |0 | |
-ROW |35714 |29846 |1 |20 |1d |0 | |
-ROW |35715 |29847 |1 |20 |1h |0 | |
-ROW |35716 |29848 |1 |20 |1d |0 | |
-ROW |35717 |27199 |1 |20 |1h |0 | |
-ROW |35718 |27232 |1 |20 |1h |0 | |
-ROW |35719 |27268 |1 |20 |1h |0 | |
-ROW |35720 |27289 |1 |20 |1h |0 | |
-ROW |35721 |27340 |1 |20 |1h |0 | |
-ROW |35722 |27372 |1 |20 |1h |0 | |
-ROW |35723 |27469 |1 |20 |1h |0 | |
-ROW |35724 |27503 |1 |20 |1h |0 | |
-ROW |35725 |27539 |1 |20 |1h |0 | |
-ROW |35726 |27575 |1 |20 |1h |0 | |
-ROW |35727 |27638 |1 |20 |1h |0 | |
-ROW |35728 |27661 |1 |20 |1h |0 | |
-ROW |35729 |27741 |1 |20 |1h |0 | |
-ROW |35730 |27773 |1 |20 |1h |0 | |
-ROW |35731 |27807 |1 |20 |1h |0 | |
-ROW |35732 |27889 |1 |20 |1h |0 | |
-ROW |35733 |27926 |1 |20 |1h |0 | |
-ROW |35734 |27963 |1 |20 |1h |0 | |
-ROW |35735 |27993 |1 |20 |1h |0 | |
-ROW |35736 |28137 |1 |20 |1h |0 | |
-ROW |35737 |28192 |1 |20 |1h |0 | |
-ROW |35738 |28240 |1 |20 |1h |0 | |
-ROW |35739 |28289 |1 |20 |1h |0 | |
-ROW |35740 |28337 |1 |20 |1h |0 | |
-ROW |35741 |28384 |1 |20 |1h |0 | |
-ROW |35742 |28461 |1 |20 |1h |0 | |
-ROW |35743 |28489 |1 |20 |1h |0 | |
-ROW |35744 |28964 |1 |20 |1h |0 | |
-ROW |35745 |29057 |1 |20 |1h |0 | |
-ROW |35746 |29849 |1 |1 |0.01 |0 | |
-ROW |35747 |29850 |1 |20 |1h |0 | |
-ROW |35748 |29851 |1 |20 |1d |0 | |
-ROW |35749 |29852 |1 |20 |1h |0 | |
-ROW |35750 |29853 |1 |20 |1d |0 | |
-ROW |35751 |29854 |1 |1 |0.01 |0 | |
-ROW |35752 |29855 |1 |20 |1h |0 | |
-ROW |35753 |29856 |1 |20 |1d |0 | |
-ROW |35754 |29857 |1 |20 |1h |0 | |
-ROW |35755 |29858 |1 |20 |1d |0 | |
-ROW |35756 |29859 |1 |1 |0.01 |0 | |
-ROW |35757 |29860 |1 |20 |1h |0 | |
-ROW |35758 |29861 |1 |20 |1d |0 | |
-ROW |35759 |29862 |1 |20 |1h |0 | |
-ROW |35760 |29863 |1 |20 |1d |0 | |
-ROW |35761 |29864 |1 |1 |0.01 |0 | |
-ROW |35762 |29865 |1 |20 |1h |0 | |
-ROW |35763 |29866 |1 |20 |1d |0 | |
-ROW |35764 |29867 |1 |20 |1h |0 | |
-ROW |35765 |29868 |1 |20 |1d |0 | |
-ROW |35766 |29869 |1 |1 |0.01 |0 | |
-ROW |35767 |29870 |1 |20 |1h |0 | |
-ROW |35768 |29871 |1 |20 |1d |0 | |
-ROW |35769 |29872 |1 |20 |1h |0 | |
-ROW |35770 |29873 |1 |20 |1d |0 | |
-ROW |35771 |29874 |1 |1 |0.01 |0 | |
-ROW |35772 |29875 |1 |20 |1h |0 | |
-ROW |35773 |29876 |1 |20 |1d |0 | |
-ROW |35774 |29877 |1 |20 |1h |0 | |
-ROW |35775 |29878 |1 |20 |1d |0 | |
-ROW |35776 |29879 |1 |1 |0.01 |0 | |
-ROW |35777 |29880 |1 |20 |1h |0 | |
-ROW |35778 |29881 |1 |20 |1d |0 | |
-ROW |35779 |29882 |1 |20 |1h |0 | |
-ROW |35780 |29883 |1 |20 |1d |0 | |
-ROW |35781 |29884 |1 |1 |0.01 |0 | |
-ROW |35782 |29885 |1 |20 |1h |0 | |
-ROW |35783 |29886 |1 |20 |1d |0 | |
-ROW |35784 |29887 |1 |20 |1h |0 | |
-ROW |35785 |29888 |1 |20 |1d |0 | |
-ROW |35786 |29889 |1 |1 |0.01 |0 | |
-ROW |35787 |29890 |1 |20 |1h |0 | |
-ROW |35788 |29891 |1 |20 |1d |0 | |
-ROW |35789 |29892 |1 |20 |1h |0 | |
-ROW |35790 |29893 |1 |20 |1d |0 | |
-ROW |35791 |29894 |1 |1 |0.01 |0 | |
-ROW |35792 |29895 |1 |20 |1h |0 | |
-ROW |35793 |29896 |1 |20 |1d |0 | |
-ROW |35794 |29897 |1 |20 |1h |0 | |
-ROW |35795 |29898 |1 |20 |1d |0 | |
-ROW |35796 |29899 |1 |1 |0.01 |0 | |
-ROW |35797 |29900 |1 |20 |1h |0 | |
-ROW |35798 |29901 |1 |20 |1d |0 | |
-ROW |35799 |29902 |1 |20 |1h |0 | |
-ROW |35800 |29903 |1 |20 |1d |0 | |
-ROW |35801 |29904 |1 |1 |0.01 |0 | |
-ROW |35802 |29905 |1 |20 |1h |0 | |
-ROW |35803 |29906 |1 |20 |1d |0 | |
-ROW |35804 |29907 |1 |20 |1h |0 | |
-ROW |35805 |29908 |1 |20 |1d |0 | |
-ROW |35806 |29909 |1 |1 |0.01 |0 | |
-ROW |35807 |29910 |1 |20 |1h |0 | |
-ROW |35808 |29911 |1 |20 |1d |0 | |
-ROW |35809 |29912 |1 |20 |1h |0 | |
-ROW |35810 |29913 |1 |20 |1d |0 | |
-ROW |35811 |29914 |1 |1 |0.01 |0 | |
-ROW |35812 |29915 |1 |20 |1h |0 | |
-ROW |35813 |29916 |1 |20 |1d |0 | |
-ROW |35814 |29917 |1 |20 |1h |0 | |
-ROW |35815 |29918 |1 |20 |1d |0 | |
-ROW |35816 |29919 |1 |1 |0.01 |0 | |
-ROW |35817 |29920 |1 |20 |1h |0 | |
-ROW |35818 |29921 |1 |20 |1d |0 | |
-ROW |35819 |29922 |1 |20 |1h |0 | |
-ROW |35820 |29923 |1 |20 |1d |0 | |
-ROW |35821 |29924 |1 |1 |0.01 |0 | |
-ROW |35822 |29925 |1 |20 |1h |0 | |
-ROW |35823 |29926 |1 |20 |1d |0 | |
-ROW |35824 |29927 |1 |20 |1h |0 | |
-ROW |35825 |29928 |1 |20 |1d |0 | |
-ROW |35826 |29929 |1 |1 |0.01 |0 | |
-ROW |35827 |29930 |1 |20 |1h |0 | |
-ROW |35828 |29931 |1 |20 |1d |0 | |
-ROW |35829 |29932 |1 |20 |1h |0 | |
-ROW |35830 |29933 |1 |20 |1d |0 | |
-ROW |35831 |29934 |1 |1 |0.01 |0 | |
-ROW |35832 |29935 |1 |20 |1h |0 | |
-ROW |35833 |29936 |1 |20 |1d |0 | |
-ROW |35834 |29937 |1 |20 |1h |0 | |
-ROW |35835 |29938 |1 |20 |1d |0 | |
-ROW |35836 |29939 |1 |1 |0.01 |0 | |
-ROW |35837 |29940 |1 |20 |1h |0 | |
-ROW |35838 |29941 |1 |20 |1d |0 | |
-ROW |35839 |29942 |1 |20 |1h |0 | |
-ROW |35840 |29943 |1 |20 |1d |0 | |
-ROW |35841 |29944 |1 |1 |0.01 |0 | |
-ROW |35842 |29945 |1 |20 |1h |0 | |
-ROW |35843 |29946 |1 |20 |1d |0 | |
-ROW |35844 |29947 |1 |20 |1h |0 | |
-ROW |35845 |29948 |1 |20 |1d |0 | |
-ROW |35846 |29949 |1 |1 |0.01 |0 | |
-ROW |35847 |29950 |1 |20 |1h |0 | |
-ROW |35848 |29951 |1 |20 |1d |0 | |
-ROW |35849 |29952 |1 |20 |1h |0 | |
-ROW |35850 |29953 |1 |20 |1d |0 | |
-ROW |35851 |29954 |1 |1 |0.01 |0 | |
-ROW |35852 |29955 |1 |20 |1h |0 | |
-ROW |35853 |29956 |1 |20 |1d |0 | |
-ROW |35854 |29957 |1 |20 |1h |0 | |
-ROW |35855 |29958 |1 |20 |1d |0 | |
-ROW |35856 |29959 |1 |1 |0.01 |0 | |
-ROW |35857 |29960 |1 |20 |1h |0 | |
-ROW |35858 |29961 |1 |20 |1d |0 | |
-ROW |35859 |29962 |1 |20 |1h |0 | |
-ROW |35860 |29963 |1 |20 |1d |0 | |
-ROW |35861 |29964 |1 |1 |0.01 |0 | |
-ROW |35862 |29965 |1 |20 |1h |0 | |
-ROW |35863 |29966 |1 |20 |1d |0 | |
-ROW |35864 |29967 |1 |20 |1h |0 | |
-ROW |35865 |29968 |1 |20 |1d |0 | |
-ROW |35866 |29969 |1 |1 |0.01 |0 | |
-ROW |35867 |29970 |1 |20 |1h |0 | |
-ROW |35868 |29971 |1 |20 |1d |0 | |
-ROW |35869 |29972 |1 |20 |1h |0 | |
-ROW |35870 |29973 |1 |20 |1d |0 | |
-ROW |35871 |29974 |1 |1 |0.01 |0 | |
-ROW |35872 |29975 |1 |20 |1h |0 | |
-ROW |35873 |29976 |1 |20 |1d |0 | |
-ROW |35874 |29977 |1 |20 |1h |0 | |
-ROW |35875 |29978 |1 |20 |1d |0 | |
-ROW |35876 |29979 |1 |1 |0.01 |0 | |
-ROW |35877 |29980 |1 |20 |1h |0 | |
-ROW |35878 |29981 |1 |20 |1d |0 | |
-ROW |35879 |29982 |1 |20 |1h |0 | |
-ROW |35880 |29983 |1 |20 |1d |0 | |
-ROW |35881 |29984 |1 |1 |0.01 |0 | |
-ROW |35882 |29985 |1 |20 |1h |0 | |
-ROW |35883 |29986 |1 |20 |1d |0 | |
-ROW |35884 |29987 |1 |20 |1h |0 | |
-ROW |35885 |29988 |1 |20 |1d |0 | |
-ROW |35886 |29989 |1 |1 |0.01 |0 | |
-ROW |35887 |29990 |1 |20 |1h |0 | |
-ROW |35888 |29991 |1 |20 |1d |0 | |
-ROW |35889 |29992 |1 |20 |1h |0 | |
-ROW |35890 |29993 |1 |20 |1d |0 | |
-ROW |35891 |30050 |1 |20 |1d |0 | |
-ROW |35892 |30051 |1 |20 |1d |0 | |
-ROW |35893 |30052 |1 |20 |1h |0 | |
-ROW |35894 |30053 |1 |20 |1h |0 | |
-ROW |35895 |30054 |1 |20 |1h |0 | |
-ROW |35896 |30055 |1 |1 |0.01 |0 | |
-ROW |35897 |30405 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |35898 |30406 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |35899 |30411 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35900 |30412 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35901 |30415 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35902 |30416 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35903 |30417 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35904 |30418 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35905 |30421 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35906 |30422 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35907 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |35908 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |35909 |30144 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |35910 |30145 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |35911 |30146 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |35912 |30157 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35913 |30158 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35914 |30161 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35915 |30162 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35916 |30163 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35917 |30164 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35918 |30167 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35919 |30168 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35920 |30169 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35921 |30170 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35922 |30173 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35923 |30174 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35924 |30175 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35925 |30176 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35926 |30179 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35927 |30180 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35928 |30181 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35929 |30182 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35930 |30185 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35931 |30186 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |35932 |27069 |1 |10 | |0 | |
-ROW |35933 |27070 |1 |20 |1d |0 | |
-ROW |35934 |27072 |1 |10 | |0 | |
-ROW |35935 |27073 |1 |10 | |0 | |
-ROW |35936 |27074 |1 |10 | |0 | |
-ROW |35937 |27074 |2 |1 |8 |0 | |
-ROW |35938 |27075 |1 |10 | |0 | |
-ROW |35939 |27075 |2 |1 |8 |0 | |
-ROW |35940 |27076 |1 |10 | |0 | |
-ROW |35941 |27597 |1 |10 | |0 | |
-ROW |35942 |27598 |1 |10 | |0 | |
-ROW |35943 |27599 |1 |10 | |0 | |
-ROW |35944 |27599 |2 |1 |8 |0 | |
-ROW |35945 |27600 |1 |10 | |0 | |
-ROW |35946 |27601 |1 |10 | |0 | |
-ROW |35947 |27602 |1 |10 | |0 | |
-ROW |35948 |27602 |2 |1 |8 |0 | |
-ROW |35949 |27605 |1 |20 |1d |0 | |
-ROW |35950 |28006 |1 |10 | |0 | |
-ROW |35951 |28007 |1 |10 | |0 | |
-ROW |35952 |28008 |1 |10 | |0 | |
-ROW |35953 |28008 |2 |1 |8 |0 | |
-ROW |35954 |28009 |1 |10 | |0 | |
-ROW |35955 |28010 |1 |10 | |0 | |
-ROW |35956 |28011 |1 |10 | |0 | |
-ROW |35957 |28011 |2 |1 |8 |0 | |
-ROW |35958 |28014 |1 |20 |1d |0 | |
-ROW |35959 |27079 |1 |10 | |0 | |
-ROW |35960 |27080 |1 |20 |1d |0 | |
-ROW |35961 |27082 |1 |10 | |0 | |
-ROW |35962 |27083 |1 |10 | |0 | |
-ROW |35963 |27084 |1 |10 | |0 | |
-ROW |35964 |27084 |2 |1 |8 |0 | |
-ROW |35965 |27085 |1 |10 | |0 | |
-ROW |35966 |27085 |2 |1 |8 |0 | |
-ROW |35967 |27086 |1 |10 | |0 | |
-ROW |35968 |27620 |1 |10 | |0 | |
-ROW |35969 |27621 |1 |10 | |0 | |
-ROW |35970 |27622 |1 |10 | |0 | |
-ROW |35971 |27622 |2 |1 |8 |0 | |
-ROW |35972 |27623 |1 |10 | |0 | |
-ROW |35973 |27624 |1 |10 | |0 | |
-ROW |35974 |27625 |1 |10 | |0 | |
-ROW |35975 |27625 |2 |1 |8 |0 | |
-ROW |35976 |27628 |1 |20 |1d |0 | |
-ROW |35977 |27977 |1 |10 | |0 | |
-ROW |35978 |27978 |1 |10 | |0 | |
-ROW |35979 |27979 |1 |10 | |0 | |
-ROW |35980 |27979 |2 |1 |8 |0 | |
-ROW |35981 |27980 |1 |10 | |0 | |
-ROW |35982 |27981 |1 |10 | |0 | |
-ROW |35983 |27982 |1 |10 | |0 | |
-ROW |35984 |27982 |2 |1 |8 |0 | |
-ROW |35985 |27985 |1 |20 |1d |0 | |
-ROW |35986 |27089 |1 |10 | |0 | |
-ROW |35987 |27090 |1 |20 |1d |0 | |
-ROW |35988 |27091 |1 |1 |1000000 |0 | |
-ROW |35989 |27091 |2 |20 |1h |0 | |
-ROW |35990 |27092 |1 |10 | |0 | |
-ROW |35991 |27093 |1 |10 | |0 | |
-ROW |35992 |27094 |1 |10 | |0 | |
-ROW |35993 |27094 |2 |1 |8 |0 | |
-ROW |35994 |27095 |1 |10 | |0 | |
-ROW |35995 |27095 |2 |1 |8 |0 | |
-ROW |35996 |27096 |1 |10 | |0 | |
-ROW |35997 |27099 |1 |10 | |0 | |
-ROW |35998 |27100 |1 |20 |1d |0 | |
-ROW |35999 |27101 |1 |1 |1000000 |0 | |
-ROW |36000 |27101 |2 |20 |1h |0 | |
-ROW |36001 |27102 |1 |10 | |0 | |
-ROW |36002 |27103 |1 |10 | |0 | |
-ROW |36003 |27104 |1 |10 | |0 | |
-ROW |36004 |27104 |2 |1 |8 |0 | |
-ROW |36005 |27105 |1 |10 | |0 | |
-ROW |36006 |27105 |2 |1 |8 |0 | |
-ROW |36007 |27106 |1 |10 | |0 | |
-ROW |36008 |27181 |1 |10 | |0 | |
-ROW |36009 |27182 |1 |10 | |0 | |
-ROW |36010 |27183 |1 |10 | |0 | |
-ROW |36011 |27183 |2 |1 |8 |0 | |
-ROW |36012 |27184 |1 |10 | |0 | |
-ROW |36013 |27185 |1 |10 | |0 | |
-ROW |36014 |27186 |1 |10 | |0 | |
-ROW |36015 |27186 |2 |1 |8 |0 | |
-ROW |36016 |27187 |1 |1 |1000000 |0 | |
-ROW |36017 |27187 |2 |20 |1h |0 | |
-ROW |36018 |27189 |1 |20 |1d |0 | |
-ROW |36019 |27216 |1 |10 | |0 | |
-ROW |36020 |27217 |1 |10 | |0 | |
-ROW |36021 |27218 |1 |10 | |0 | |
-ROW |36022 |27218 |2 |1 |8 |0 | |
-ROW |36023 |27219 |1 |10 | |0 | |
-ROW |36024 |27220 |1 |10 | |0 | |
-ROW |36025 |27221 |1 |10 | |0 | |
-ROW |36026 |27221 |2 |1 |8 |0 | |
-ROW |36027 |27222 |1 |1 |1000000 |0 | |
-ROW |36028 |27222 |2 |20 |1h |0 | |
-ROW |36029 |27224 |1 |20 |1d |0 | |
-ROW |36030 |27252 |1 |10 | |0 | |
-ROW |36031 |27253 |1 |10 | |0 | |
-ROW |36032 |27254 |1 |10 | |0 | |
-ROW |36033 |27254 |2 |1 |8 |0 | |
-ROW |36034 |27255 |1 |10 | |0 | |
-ROW |36035 |27256 |1 |10 | |0 | |
-ROW |36036 |27257 |1 |10 | |0 | |
-ROW |36037 |27257 |2 |1 |8 |0 | |
-ROW |36038 |27258 |1 |1 |1000000 |0 | |
-ROW |36039 |27258 |2 |20 |1h |0 | |
-ROW |36040 |27260 |1 |20 |1d |0 | |
-ROW |36041 |27273 |1 |10 | |0 | |
-ROW |36042 |27274 |1 |10 | |0 | |
-ROW |36043 |27275 |1 |10 | |0 | |
-ROW |36044 |27275 |2 |1 |8 |0 | |
-ROW |36045 |27276 |1 |10 | |0 | |
-ROW |36046 |27277 |1 |10 | |0 | |
-ROW |36047 |27278 |1 |10 | |0 | |
-ROW |36048 |27278 |2 |1 |8 |0 | |
-ROW |36049 |27279 |1 |1 |1000000 |0 | |
-ROW |36050 |27279 |2 |20 |1h |0 | |
-ROW |36051 |27281 |1 |20 |1d |0 | |
-ROW |36052 |27322 |1 |10 | |0 | |
-ROW |36053 |27323 |1 |10 | |0 | |
-ROW |36054 |27324 |1 |10 | |0 | |
-ROW |36055 |27324 |2 |1 |8 |0 | |
-ROW |36056 |27325 |1 |10 | |0 | |
-ROW |36057 |27326 |1 |10 | |0 | |
-ROW |36058 |27327 |1 |10 | |0 | |
-ROW |36059 |27327 |2 |1 |8 |0 | |
-ROW |36060 |27328 |1 |1 |1000000 |0 | |
-ROW |36061 |27328 |2 |20 |1h |0 | |
-ROW |36062 |27330 |1 |20 |1d |0 | |
-ROW |36063 |27451 |1 |10 | |0 | |
-ROW |36064 |27452 |1 |10 | |0 | |
-ROW |36065 |27453 |1 |10 | |0 | |
-ROW |36066 |27453 |2 |1 |8 |0 | |
-ROW |36067 |27454 |1 |10 | |0 | |
-ROW |36068 |27455 |1 |10 | |0 | |
-ROW |36069 |27456 |1 |10 | |0 | |
-ROW |36070 |27456 |2 |1 |8 |0 | |
-ROW |36071 |27457 |1 |1 |1000000 |0 | |
-ROW |36072 |27457 |2 |20 |1h |0 | |
-ROW |36073 |27459 |1 |20 |1d |0 | |
-ROW |36074 |27487 |1 |10 | |0 | |
-ROW |36075 |27488 |1 |10 | |0 | |
-ROW |36076 |27489 |1 |10 | |0 | |
-ROW |36077 |27489 |2 |1 |8 |0 | |
-ROW |36078 |27490 |1 |10 | |0 | |
-ROW |36079 |27491 |1 |10 | |0 | |
-ROW |36080 |27492 |1 |10 | |0 | |
-ROW |36081 |27492 |2 |1 |8 |0 | |
-ROW |36082 |27493 |1 |1 |1000000 |0 | |
-ROW |36083 |27493 |2 |20 |1h |0 | |
-ROW |36084 |27495 |1 |20 |1d |0 | |
-ROW |36085 |27521 |1 |10 | |0 | |
-ROW |36086 |27522 |1 |10 | |0 | |
-ROW |36087 |27523 |1 |10 | |0 | |
-ROW |36088 |27523 |2 |1 |8 |0 | |
-ROW |36089 |27524 |1 |10 | |0 | |
-ROW |36090 |27525 |1 |10 | |0 | |
-ROW |36091 |27526 |1 |10 | |0 | |
-ROW |36092 |27526 |2 |1 |8 |0 | |
-ROW |36093 |27527 |1 |1 |1000000 |0 | |
-ROW |36094 |27527 |2 |20 |1h |0 | |
-ROW |36095 |27529 |1 |20 |1d |0 | |
-ROW |36096 |27557 |1 |10 | |0 | |
-ROW |36097 |27558 |1 |10 | |0 | |
-ROW |36098 |27559 |1 |10 | |0 | |
-ROW |36099 |27559 |2 |1 |8 |0 | |
-ROW |36100 |27560 |1 |10 | |0 | |
-ROW |36101 |27561 |1 |10 | |0 | |
-ROW |36102 |27562 |1 |10 | |0 | |
-ROW |36103 |27562 |2 |1 |8 |0 | |
-ROW |36104 |27563 |1 |1 |1000000 |0 | |
-ROW |36105 |27563 |2 |20 |1h |0 | |
-ROW |36106 |27565 |1 |20 |1d |0 | |
-ROW |36107 |27643 |1 |10 | |0 | |
-ROW |36108 |27644 |1 |10 | |0 | |
-ROW |36109 |27645 |1 |10 | |0 | |
-ROW |36110 |27645 |2 |1 |8 |0 | |
-ROW |36111 |27646 |1 |10 | |0 | |
-ROW |36112 |27647 |1 |10 | |0 | |
-ROW |36113 |27648 |1 |10 | |0 | |
-ROW |36114 |27648 |2 |1 |8 |0 | |
-ROW |36115 |27649 |1 |1 |1000000 |0 | |
-ROW |36116 |27649 |2 |20 |1h |0 | |
-ROW |36117 |27651 |1 |20 |1d |0 | |
-ROW |36118 |27723 |1 |10 | |0 | |
-ROW |36119 |27724 |1 |10 | |0 | |
-ROW |36120 |27725 |1 |10 | |0 | |
-ROW |36121 |27725 |2 |1 |8 |0 | |
-ROW |36122 |27726 |1 |10 | |0 | |
-ROW |36123 |27727 |1 |10 | |0 | |
-ROW |36124 |27728 |1 |10 | |0 | |
-ROW |36125 |27728 |2 |1 |8 |0 | |
-ROW |36126 |27729 |1 |1 |1000000 |0 | |
-ROW |36127 |27729 |2 |20 |1h |0 | |
-ROW |36128 |27731 |1 |20 |1d |0 | |
-ROW |36129 |27757 |1 |10 | |0 | |
-ROW |36130 |27758 |1 |10 | |0 | |
-ROW |36131 |27759 |1 |10 | |0 | |
-ROW |36132 |27759 |2 |1 |8 |0 | |
-ROW |36133 |27760 |1 |10 | |0 | |
-ROW |36134 |27761 |1 |10 | |0 | |
-ROW |36135 |27762 |1 |10 | |0 | |
-ROW |36136 |27762 |2 |1 |8 |0 | |
-ROW |36137 |27763 |1 |1 |1000000 |0 | |
-ROW |36138 |27763 |2 |20 |1h |0 | |
-ROW |36139 |27765 |1 |20 |1d |0 | |
-ROW |36140 |27789 |1 |10 | |0 | |
-ROW |36141 |27790 |1 |10 | |0 | |
-ROW |36142 |27791 |1 |10 | |0 | |
-ROW |36143 |27791 |2 |1 |8 |0 | |
-ROW |36144 |27792 |1 |10 | |0 | |
-ROW |36145 |27793 |1 |10 | |0 | |
-ROW |36146 |27794 |1 |10 | |0 | |
-ROW |36147 |27794 |2 |1 |8 |0 | |
-ROW |36148 |27795 |1 |1 |1000000 |0 | |
-ROW |36149 |27795 |2 |20 |1h |0 | |
-ROW |36150 |27797 |1 |20 |1d |0 | |
-ROW |36151 |27873 |1 |10 | |0 | |
-ROW |36152 |27874 |1 |10 | |0 | |
-ROW |36153 |27875 |1 |10 | |0 | |
-ROW |36154 |27875 |2 |1 |8 |0 | |
-ROW |36155 |27876 |1 |10 | |0 | |
-ROW |36156 |27877 |1 |10 | |0 | |
-ROW |36157 |27878 |1 |10 | |0 | |
-ROW |36158 |27878 |2 |1 |8 |0 | |
-ROW |36159 |27879 |1 |1 |1000000 |0 | |
-ROW |36160 |27879 |2 |20 |1h |0 | |
-ROW |36161 |27881 |1 |20 |1d |0 | |
-ROW |36162 |27910 |1 |10 | |0 | |
-ROW |36163 |27911 |1 |10 | |0 | |
-ROW |36164 |27912 |1 |10 | |0 | |
-ROW |36165 |27912 |2 |1 |8 |0 | |
-ROW |36166 |27913 |1 |10 | |0 | |
-ROW |36167 |27914 |1 |10 | |0 | |
-ROW |36168 |27915 |1 |10 | |0 | |
-ROW |36169 |27915 |2 |1 |8 |0 | |
-ROW |36170 |27916 |1 |1 |1000000 |0 | |
-ROW |36171 |27916 |2 |20 |1h |0 | |
-ROW |36172 |27918 |1 |20 |1d |0 | |
-ROW |36173 |27945 |1 |10 | |0 | |
-ROW |36174 |27946 |1 |10 | |0 | |
-ROW |36175 |27947 |1 |10 | |0 | |
-ROW |36176 |27947 |2 |1 |8 |0 | |
-ROW |36177 |27948 |1 |10 | |0 | |
-ROW |36178 |27949 |1 |10 | |0 | |
-ROW |36179 |27950 |1 |10 | |0 | |
-ROW |36180 |27950 |2 |1 |8 |0 | |
-ROW |36181 |27951 |1 |1 |1000000 |0 | |
-ROW |36182 |27951 |2 |20 |1h |0 | |
-ROW |36183 |27953 |1 |20 |1d |0 | |
-ROW |36184 |28119 |1 |10 | |0 | |
-ROW |36185 |28120 |1 |10 | |0 | |
-ROW |36186 |28121 |1 |10 | |0 | |
-ROW |36187 |28121 |2 |1 |8 |0 | |
-ROW |36188 |28122 |1 |10 | |0 | |
-ROW |36189 |28123 |1 |10 | |0 | |
-ROW |36190 |28124 |1 |10 | |0 | |
-ROW |36191 |28124 |2 |1 |8 |0 | |
-ROW |36192 |28125 |1 |1 |1000000 |0 | |
-ROW |36193 |28125 |2 |20 |1h |0 | |
-ROW |36194 |28127 |1 |20 |1d |0 | |
-ROW |36195 |28176 |1 |10 | |0 | |
-ROW |36196 |28177 |1 |10 | |0 | |
-ROW |36197 |28178 |1 |10 | |0 | |
-ROW |36198 |28178 |2 |1 |8 |0 | |
-ROW |36199 |28179 |1 |10 | |0 | |
-ROW |36200 |28180 |1 |10 | |0 | |
-ROW |36201 |28181 |1 |10 | |0 | |
-ROW |36202 |28181 |2 |1 |8 |0 | |
-ROW |36203 |28182 |1 |1 |1000000 |0 | |
-ROW |36204 |28182 |2 |20 |1h |0 | |
-ROW |36205 |28184 |1 |20 |1d |0 | |
-ROW |36206 |28224 |1 |10 | |0 | |
-ROW |36207 |28225 |1 |10 | |0 | |
-ROW |36208 |28226 |1 |10 | |0 | |
-ROW |36209 |28226 |2 |1 |8 |0 | |
-ROW |36210 |28227 |1 |10 | |0 | |
-ROW |36211 |28228 |1 |10 | |0 | |
-ROW |36212 |28229 |1 |10 | |0 | |
-ROW |36213 |28229 |2 |1 |8 |0 | |
-ROW |36214 |28230 |1 |1 |1000000 |0 | |
-ROW |36215 |28230 |2 |20 |1h |0 | |
-ROW |36216 |28232 |1 |20 |1d |0 | |
-ROW |36217 |28294 |1 |10 | |0 | |
-ROW |36218 |28295 |1 |10 | |0 | |
-ROW |36219 |28296 |1 |10 | |0 | |
-ROW |36220 |28296 |2 |1 |8 |0 | |
-ROW |36221 |28297 |1 |10 | |0 | |
-ROW |36222 |28298 |1 |10 | |0 | |
-ROW |36223 |28299 |1 |10 | |0 | |
-ROW |36224 |28299 |2 |1 |8 |0 | |
-ROW |36225 |28300 |1 |1 |1000000 |0 | |
-ROW |36226 |28300 |2 |20 |1h |0 | |
-ROW |36227 |28302 |1 |20 |1d |0 | |
-ROW |36228 |28969 |1 |10 | |0 | |
-ROW |36229 |28970 |1 |10 | |0 | |
-ROW |36230 |28971 |1 |10 | |0 | |
-ROW |36231 |28971 |2 |1 |8 |0 | |
-ROW |36232 |28972 |1 |10 | |0 | |
-ROW |36233 |28973 |1 |10 | |0 | |
-ROW |36234 |28974 |1 |10 | |0 | |
-ROW |36235 |28974 |2 |1 |8 |0 | |
-ROW |36236 |28975 |1 |1 |1000000 |0 | |
-ROW |36237 |28975 |2 |20 |1h |0 | |
-ROW |36238 |28977 |1 |20 |1d |0 | |
-ROW |36239 |27119 |1 |10 | |0 | |
-ROW |36240 |27120 |1 |20 |1d |0 | |
-ROW |36241 |27121 |1 |1 |1000000 |0 | |
-ROW |36242 |27121 |2 |20 |1h |0 | |
-ROW |36243 |27122 |1 |10 | |0 | |
-ROW |36244 |27123 |1 |10 | |0 | |
-ROW |36245 |27124 |1 |10 | |0 | |
-ROW |36246 |27124 |2 |1 |8 |0 | |
-ROW |36247 |27125 |1 |10 | |0 | |
-ROW |36248 |27125 |2 |1 |8 |0 | |
-ROW |36249 |27126 |1 |10 | |0 | |
-ROW |36250 |29078 |1 |10 | |0 | |
-ROW |36251 |29079 |1 |10 | |0 | |
-ROW |36252 |29080 |1 |10 | |0 | |
-ROW |36253 |29080 |2 |1 |8 |0 | |
-ROW |36254 |29081 |1 |10 | |0 | |
-ROW |36255 |29082 |1 |10 | |0 | |
-ROW |36256 |29083 |1 |10 | |0 | |
-ROW |36257 |29083 |2 |1 |8 |0 | |
-ROW |36258 |29084 |1 |1 |1000000 |0 | |
-ROW |36259 |29084 |2 |20 |1h |0 | |
-ROW |36260 |29086 |1 |20 |1d |0 | |
-ROW |36261 |22231 |1 |20 |1d |0 | |
-ROW |36262 |23318 |1 |20 |1d |0 | |
-ROW |36263 |29545 |1 |20 |1d |0 | |
-ROW |36264 |29546 |1 |20 |1d |0 | |
-ROW |36265 |10059 |1 |20 |1d |0 | |
-ROW |36266 |22834 |1 |20 |1d |0 | |
-ROW |36267 |22874 |1 |20 |1d |0 | |
-ROW |36268 |22914 |1 |20 |1d |0 | |
-ROW |36269 |22954 |1 |20 |1d |0 | |
-ROW |36270 |22994 |1 |20 |1d |0 | |
-ROW |36271 |23034 |1 |20 |1d |0 | |
-ROW |36272 |23161 |1 |20 |1d |0 | |
-ROW |36273 |23319 |1 |20 |1d |0 | |
-ROW |36274 |23320 |1 |20 |1d |0 | |
-ROW |36275 |23321 |1 |20 |1d |0 | |
-ROW |36276 |23322 |1 |20 |1d |0 | |
-ROW |36277 |23323 |1 |20 |1d |0 | |
-ROW |36278 |23324 |1 |20 |1d |0 | |
-ROW |36279 |23325 |1 |20 |1d |0 | |
-ROW |36280 |23326 |1 |20 |1d |0 | |
-ROW |36281 |29558 |1 |20 |1d |0 | |
-ROW |36282 |29560 |1 |20 |1d |0 | |
-ROW |36283 |29995 |1 |20 |1d |0 | |
-ROW |36284 |29997 |1 |20 |1d |0 | |
-ROW |36285 |23288 |1 |20 |1d |0 | |
-ROW |36286 |23327 |1 |20 |1d |0 | |
-ROW |36287 |27203 |1 |5 |^(\w&pipe;-&pipe;\.&pipe;/)+ (\w&pipe;-&pipe;\.&pipe;/)+ (.+) Copyright&bsn;\3 |0 | |
-ROW |36288 |27203 |2 |20 |1d |0 | |
-ROW |36289 |27207 |1 |1 |1024 |0 | |
-ROW |36290 |30086 |1 |5 |^((\w&pipe;-&pipe;\.&pipe;/)+)&bsn;\1 |0 | |
-ROW |36291 |30086 |2 |20 |1d |0 | |
-ROW |36292 |30087 |1 |1 |1024 |0 | |
-ROW |36293 |27214 |1 |20 |1d |0 | |
-ROW |36294 |28323 |1 |1 |0.1 |0 | |
-ROW |36295 |28327 |1 |20 |1d |0 | |
-ROW |36296 |28328 |1 |20 |1d |0 | |
-ROW |36297 |27236 |1 |20 |1d |0 | |
-ROW |36298 |27237 |1 |20 |1d |0 | |
-ROW |36299 |27295 |1 |20 |1d |0 | |
-ROW |36300 |27296 |1 |20 |1d |0 | |
-ROW |36301 |27297 |1 |20 |1d |0 | |
-ROW |36302 |27314 |1 |1 |0.5 |0 | |
-ROW |36303 |27315 |1 |1 |0.5 |0 | |
-ROW |36304 |27318 |1 |1 |0.5 |0 | |
-ROW |36305 |27319 |1 |20 |1d |0 | |
-ROW |36306 |27320 |1 |20 |1d |0 | |
-ROW |36307 |27378 |1 |20 |1d |0 | |
-ROW |36308 |27379 |1 |20 |1d |0 | |
-ROW |36309 |30097 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |36310 |30097 |2 |20 |1d |0 | |
-ROW |36311 |27382 |1 |20 |1d |0 | |
-ROW |36312 |27383 |1 |20 |1d |0 | |
-ROW |36313 |27385 |1 |20 |1d |0 | |
-ROW |36314 |27386 |1 |20 |1d |0 | |
-ROW |36315 |28209 |1 |20 |1d |0 | |
-ROW |36316 |28210 |1 |20 |1d |0 | |
-ROW |36317 |30098 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |36318 |30098 |2 |20 |1d |0 | |
-ROW |36319 |30099 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |36320 |30099 |2 |20 |1d |0 | |
-ROW |36321 |30100 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
-ROW |36322 |30100 |2 |20 |1d |0 | |
-ROW |36323 |27419 |1 |20 |1d |0 | |
-ROW |36324 |27428 |1 |20 |1d |0 | |
-ROW |36325 |27445 |1 |20 |1d |0 | |
-ROW |36326 |28208 |1 |20 |1d |0 | |
-ROW |36327 |27481 |1 |20 |1d |0 | |
-ROW |36328 |27482 |1 |20 |1d |0 | |
-ROW |36329 |27483 |1 |20 |1d |0 | |
-ROW |36330 |27484 |1 |20 |1d |0 | |
-ROW |36331 |27508 |1 |20 |1d |0 | |
-ROW |36332 |27509 |1 |20 |1d |0 | |
-ROW |36333 |27510 |1 |20 |1d |0 | |
-ROW |36334 |30106 |1 |20 |1d |0 | |
-ROW |36335 |27543 |1 |20 |1d |0 | |
-ROW |36336 |27544 |1 |20 |1d |0 | |
-ROW |36337 |27545 |1 |20 |1d |0 | |
-ROW |36338 |27546 |1 |20 |1d |0 | |
-ROW |36339 |27579 |1 |20 |1d |0 | |
-ROW |36340 |27580 |1 |20 |1d |0 | |
-ROW |36341 |27582 |1 |20 |1d |0 | |
-ROW |36342 |27583 |1 |20 |1d |0 | |
-ROW |36343 |30109 |1 |20 |1d |0 | |
-ROW |36344 |27591 |1 |1 |1024 |0 | |
-ROW |36345 |30110 |1 |1 |1024 |0 | |
-ROW |36346 |27675 |1 |20 |1d |0 | |
-ROW |36347 |27676 |1 |20 |1d |0 | |
-ROW |36348 |27677 |1 |20 |1d |0 | |
-ROW |36349 |27678 |1 |20 |1d |0 | |
-ROW |36350 |27679 |1 |20 |1d |0 | |
-ROW |36351 |28141 |1 |20 |1d |0 | |
-ROW |36352 |28142 |1 |20 |1d |0 | |
-ROW |36353 |28157 |1 |20 |1d |0 | |
-ROW |36354 |28158 |1 |20 |1d |0 | |
-ROW |36355 |27748 |1 |20 |1d |0 | |
-ROW |36356 |27749 |1 |20 |1d |0 | |
-ROW |36357 |27750 |1 |20 |1d |0 | |
-ROW |36358 |27754 |1 |20 |1d |0 | |
-ROW |36359 |27777 |1 |5 |Firmware Version: ([0-9.]+),&bsn;\1 |0 | |
-ROW |36360 |27777 |2 |20 |1d |0 | |
-ROW |36361 |27778 |1 |5 |(.+) - Firmware&bsn;\1 |0 | |
-ROW |36362 |27778 |2 |20 |1d |0 | |
-ROW |36363 |27785 |1 |20 |1d |0 | |
-ROW |36364 |27812 |1 |20 |1d |0 | |
-ROW |36365 |27813 |1 |20 |1d |0 | |
-ROW |36366 |30117 |1 |5 |kernel (JUNOS [0-9a-zA-Z\.\-]+)&bsn;\1 |0 | |
-ROW |36367 |30117 |2 |20 |1d |0 | |
-ROW |36368 |28201 |1 |1 |0.1 |0 | |
-ROW |36369 |28204 |1 |20 |1d |0 | |
-ROW |36370 |28205 |1 |20 |1d |0 | |
-ROW |36371 |27893 |1 |20 |1d |0 | |
-ROW |36372 |27894 |1 |20 |1d |0 | |
-ROW |36373 |27895 |1 |20 |1d |0 | |
-ROW |36374 |27897 |1 |1 |0.1 |0 | |
-ROW |36375 |27898 |1 |1 |1024 |0 | |
-ROW |36376 |27900 |1 |1 |1024 |0 | |
-ROW |36377 |30119 |1 |20 |1d |0 | |
-ROW |36378 |27905 |1 |1 |0.1 |0 | |
-ROW |36379 |27907 |1 |1 |1024 |0 | |
-ROW |36380 |27908 |1 |1 |1024 |0 | |
-ROW |36381 |27930 |1 |20 |1d |0 | |
-ROW |36382 |27931 |1 |20 |1d |0 | |
-ROW |36383 |27936 |1 |5 |60 Secs \( ([0-9\.]+)%\).+300 Secs&bsn;\1 |0 | |
-ROW |36384 |30121 |1 |20 |1d |0 | |
-ROW |36385 |27967 |1 |20 |1d |0 | |
-ROW |36386 |27968 |1 |20 |1d |0 | |
-ROW |36387 |27970 |1 |20 |1d |0 | |
-ROW |36388 |27971 |1 |20 |1d |0 | |
-ROW |36389 |30125 |1 |20 |1d |0 | |
-ROW |36390 |27997 |1 |20 |1d |0 | |
-ROW |36391 |27998 |1 |20 |1d |0 | |
-ROW |36392 |27999 |1 |20 |1d |0 | |
-ROW |36393 |28000 |1 |20 |1d |0 | |
-ROW |36394 |28026 |1 |20 |1d |0 | |
-ROW |36395 |28027 |1 |20 |1d |0 | |
-ROW |36396 |30132 |1 |1 |1024 |0 | |
-ROW |36397 |30133 |1 |1 |1024 |0 | |
-ROW |36398 |30134 |1 |1 |1024 |0 | |
-ROW |36399 |30135 |1 |1 |1024 |0 | |
-ROW |36400 |29087 |1 |20 |1d |0 | |
-ROW |36401 |29089 |1 |10 | |0 | |
-ROW |36402 |29102 |1 |10 | |0 | |
-ROW |36403 |29103 |1 |21 |return (100-value); |0 | |
-ROW |36404 |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 |36405 |29111 |1 |20 |1h |0 | |
-ROW |36406 |29113 |1 |20 |1h |0 | |
-ROW |36407 |29114 |1 |20 |1d |0 | |
-ROW |36408 |29116 |1 |20 |1d |0 | |
-ROW |36409 |29117 |1 |20 |1d |0 | |
-ROW |36410 |29120 |1 |20 |1h |0 | |
-ROW |36411 |29121 |1 |20 |1d |0 | |
-ROW |36412 |29122 |1 |20 |1d |0 | |
-ROW |36413 |29123 |1 |20 |1d |0 | |
-ROW |36414 |29124 |1 |20 |1d |0 | |
-ROW |36415 |29126 |1 |10 | |0 | |
-ROW |36416 |29139 |1 |10 | |0 | |
-ROW |36417 |29140 |1 |21 |return (100-value); |0 | |
-ROW |36418 |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 |36419 |29148 |1 |20 |1h |0 | |
-ROW |36420 |29150 |1 |20 |1h |0 | |
-ROW |36421 |29151 |1 |20 |1d |0 | |
-ROW |36422 |29153 |1 |20 |1d |0 | |
-ROW |36423 |29154 |1 |20 |1d |0 | |
-ROW |36424 |29157 |1 |20 |1h |0 | |
-ROW |36425 |29158 |1 |20 |1d |0 | |
-ROW |36426 |29159 |1 |20 |1d |0 | |
-ROW |36427 |29160 |1 |20 |1d |0 | |
-ROW |36428 |29161 |1 |20 |1d |0 | |
-ROW |36429 |29163 |1 |10 | |0 | |
-ROW |36430 |29176 |1 |10 | |0 | |
-ROW |36431 |29177 |1 |21 |return (100-value); |0 | |
-ROW |36432 |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 |36433 |29185 |1 |20 |1h |0 | |
-ROW |36434 |29187 |1 |20 |1h |0 | |
-ROW |36435 |29188 |1 |20 |1d |0 | |
-ROW |36436 |29190 |1 |20 |1d |0 | |
-ROW |36437 |29191 |1 |20 |1d |0 | |
-ROW |36438 |29194 |1 |20 |1h |0 | |
-ROW |36439 |29195 |1 |20 |1d |0 | |
-ROW |36440 |29196 |1 |20 |1d |0 | |
-ROW |36441 |29197 |1 |20 |1d |0 | |
-ROW |36442 |29198 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |36443 |29199 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |36444 |29200 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |36445 |29202 |1 |12 |$.lld |0 | |
-ROW |36446 |29202 |2 |20 |1h |0 | |
-ROW |36447 |29205 |1 |12 |$.lld |0 | |
-ROW |36448 |29205 |2 |20 |1h |0 | |
-ROW |36449 |29208 |1 |12 |$.lld |0 | |
-ROW |36450 |29208 |2 |20 |1h |0 | |
-ROW |36451 |29216 |1 |10 | |0 | |
-ROW |36452 |29216 |2 |1 |8 |0 | |
-ROW |36453 |29217 |1 |10 | |0 | |
-ROW |36454 |29217 |2 |1 |8 |0 | |
-ROW |36455 |29218 |1 |10 | |0 | |
-ROW |36456 |29219 |1 |10 | |0 | |
-ROW |36457 |29220 |1 |10 | |0 | |
-ROW |36458 |29221 |1 |10 | |0 | |
-ROW |36459 |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 |36460 |29223 |1 |20 |1d |0 | |
-ROW |36461 |29230 |1 |10 | |0 | |
-ROW |36462 |29230 |2 |1 |8 |0 | |
-ROW |36463 |29231 |1 |10 | |0 | |
-ROW |36464 |29231 |2 |1 |8 |0 | |
-ROW |36465 |29232 |1 |10 | |0 | |
-ROW |36466 |29233 |1 |10 | |0 | |
-ROW |36467 |29234 |1 |10 | |0 | |
-ROW |36468 |29235 |1 |10 | |0 | |
-ROW |36469 |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 |36470 |29237 |1 |20 |1d |0 | |
-ROW |36471 |29244 |1 |10 | |0 | |
-ROW |36472 |29244 |2 |1 |8 |0 | |
-ROW |36473 |29245 |1 |10 | |0 | |
-ROW |36474 |29245 |2 |1 |8 |0 | |
-ROW |36475 |29246 |1 |10 | |0 | |
-ROW |36476 |29247 |1 |10 | |0 | |
-ROW |36477 |29248 |1 |10 | |0 | |
-ROW |36478 |29249 |1 |10 | |0 | |
-ROW |36479 |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 |36480 |29251 |1 |20 |1d |0 | |
-ROW |36481 |29252 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |36482 |29252 |2 |10 | |0 | |
-ROW |36483 |29253 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |36484 |29253 |2 |10 | |0 | |
-ROW |36485 |29254 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |36486 |29254 |2 |10 | |0 | |
-ROW |36487 |29254 |3 |1 |0.001 |0 | |
-ROW |36488 |29255 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |36489 |29255 |2 |10 | |0 | |
-ROW |36490 |29255 |3 |1 |0.001 |0 | |
-ROW |36491 |29256 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |36492 |29256 |2 |10 | |0 | |
-ROW |36493 |29256 |3 |1 |0.001 |0 | |
-ROW |36494 |29257 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |36495 |29257 |2 |10 | |0 | |
-ROW |36496 |29257 |3 |1 |0.1 |0 | |
-ROW |36497 |29258 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |36498 |29258 |2 |10 | |0 | |
-ROW |36499 |29259 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |36500 |29259 |2 |10 | |0 | |
-ROW |36501 |29260 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |36502 |29260 |2 |10 | |0 | |
-ROW |36503 |29260 |3 |1 |0.001 |0 | |
-ROW |36504 |29261 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |36505 |29261 |2 |10 | |0 | |
-ROW |36506 |29261 |3 |1 |0.001 |0 | |
-ROW |36507 |29262 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |36508 |29262 |2 |10 | |0 | |
-ROW |36509 |29262 |3 |1 |0.001 |0 | |
-ROW |36510 |29263 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |36511 |29263 |2 |10 | |0 | |
-ROW |36512 |29263 |3 |1 |0.1 |0 | |
-ROW |36513 |29264 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |36514 |29264 |2 |10 | |0 | |
-ROW |36515 |29265 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |36516 |29265 |2 |10 | |0 | |
-ROW |36517 |29266 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |36518 |29266 |2 |10 | |0 | |
-ROW |36519 |29266 |3 |1 |0.001 |0 | |
-ROW |36520 |29267 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |36521 |29267 |2 |10 | |0 | |
-ROW |36522 |29267 |3 |1 |0.001 |0 | |
-ROW |36523 |29268 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |36524 |29268 |2 |10 | |0 | |
-ROW |36525 |29268 |3 |1 |0.001 |0 | |
-ROW |36526 |29269 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |36527 |29269 |2 |10 | |0 | |
-ROW |36528 |29269 |3 |1 |0.1 |0 | |
-ROW |36529 |29273 |1 |20 |1d |0 | |
-ROW |36530 |29275 |1 |10 | |0 | |
-ROW |36531 |29288 |1 |10 | |0 | |
-ROW |36532 |29289 |1 |21 |return (100-value); |0 | |
-ROW |36533 |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 |36534 |29297 |1 |20 |1h |0 | |
-ROW |36535 |29299 |1 |20 |1h |0 | |
-ROW |36536 |29300 |1 |20 |1d |0 | |
-ROW |36537 |29302 |1 |20 |1d |0 | |
-ROW |36538 |29303 |1 |20 |1d |0 | |
-ROW |36539 |29306 |1 |20 |1h |0 | |
-ROW |36540 |29307 |1 |20 |1d |0 | |
-ROW |36541 |29308 |1 |20 |1d |0 | |
-ROW |36542 |29309 |1 |20 |1d |0 | |
-ROW |36543 |29310 |1 |20 |1d |0 | |
-ROW |36544 |29312 |1 |10 | |0 | |
-ROW |36545 |29325 |1 |10 | |0 | |
-ROW |36546 |29326 |1 |21 |return (100-value); |0 | |
-ROW |36547 |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 |36548 |29334 |1 |20 |1h |0 | |
-ROW |36549 |29336 |1 |20 |1h |0 | |
-ROW |36550 |29337 |1 |20 |1d |0 | |
-ROW |36551 |29339 |1 |20 |1d |0 | |
-ROW |36552 |29340 |1 |20 |1d |0 | |
-ROW |36553 |29343 |1 |20 |1h |0 | |
-ROW |36554 |29344 |1 |20 |1d |0 | |
-ROW |36555 |29345 |1 |20 |1d |0 | |
-ROW |36556 |29346 |1 |20 |1d |0 | |
-ROW |36557 |29347 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |36558 |29348 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |36559 |29350 |1 |12 |$.lld |0 | |
-ROW |36560 |29350 |2 |20 |1h |0 | |
-ROW |36561 |29353 |1 |12 |$.lld |0 | |
-ROW |36562 |29353 |2 |20 |1h |0 | |
-ROW |36563 |29361 |1 |10 | |0 | |
-ROW |36564 |29361 |2 |1 |8 |0 | |
-ROW |36565 |29362 |1 |10 | |0 | |
-ROW |36566 |29362 |2 |1 |8 |0 | |
-ROW |36567 |29363 |1 |10 | |0 | |
-ROW |36568 |29364 |1 |10 | |0 | |
-ROW |36569 |29365 |1 |10 | |0 | |
-ROW |36570 |29366 |1 |10 | |0 | |
-ROW |36571 |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 |36572 |29368 |1 |20 |1d |0 | |
-ROW |36573 |29375 |1 |10 | |0 | |
-ROW |36574 |29375 |2 |1 |8 |0 | |
-ROW |36575 |29376 |1 |10 | |0 | |
-ROW |36576 |29376 |2 |1 |8 |0 | |
-ROW |36577 |29377 |1 |10 | |0 | |
-ROW |36578 |29378 |1 |10 | |0 | |
-ROW |36579 |29379 |1 |10 | |0 | |
-ROW |36580 |29380 |1 |10 | |0 | |
-ROW |36581 |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 |36582 |29382 |1 |20 |1d |0 | |
-ROW |36583 |29383 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |36584 |29383 |2 |10 | |0 | |
-ROW |36585 |29384 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |36586 |29384 |2 |10 | |0 | |
-ROW |36587 |29385 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |36588 |29385 |2 |10 | |0 | |
-ROW |36589 |29385 |3 |1 |0.001 |0 | |
-ROW |36590 |29386 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |36591 |29386 |2 |10 | |0 | |
-ROW |36592 |29386 |3 |1 |0.001 |0 | |
-ROW |36593 |29387 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |36594 |29387 |2 |10 | |0 | |
-ROW |36595 |29387 |3 |1 |0.001 |0 | |
-ROW |36596 |29388 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |36597 |29388 |2 |10 | |0 | |
-ROW |36598 |29388 |3 |1 |0.1 |0 | |
-ROW |36599 |29389 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
-ROW |36600 |29389 |2 |10 | |0 | |
-ROW |36601 |29390 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
-ROW |36602 |29390 |2 |10 | |0 | |
-ROW |36603 |29391 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
-ROW |36604 |29391 |2 |10 | |0 | |
-ROW |36605 |29391 |3 |1 |0.001 |0 | |
-ROW |36606 |29392 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
-ROW |36607 |29392 |2 |10 | |0 | |
-ROW |36608 |29392 |3 |1 |0.001 |0 | |
-ROW |36609 |29393 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
-ROW |36610 |29393 |2 |10 | |0 | |
-ROW |36611 |29393 |3 |1 |0.001 |0 | |
-ROW |36612 |29394 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
-ROW |36613 |29394 |2 |10 | |0 | |
-ROW |36614 |29394 |3 |1 |0.1 |0 | |
-ROW |36615 |29398 |1 |22 |{__name__=~"^node_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |36616 |29399 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="steal"} |0 | |
-ROW |36617 |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 |36618 |29399 |3 |10 | |0 | |
-ROW |36619 |29399 |4 |1 |100 |0 | |
-ROW |36620 |29400 |1 |22 |{__name__=~"node_memory_SwapFree"}&bsn; |0 | |
-ROW |36621 |29401 |1 |22 |{__name__=~"node_memory_SwapTotal"}&bsn; |0 | |
-ROW |36622 |29402 |1 |22 |{__name__=~"node_memory_MemAvailable"}&bsn; |0 | |
-ROW |36623 |29403 |1 |22 |{__name__=~"node_memory_MemTotal"}&bsn; |0 | |
-ROW |36624 |29404 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |36625 |29405 |1 |22 |{__name__=~"node_context_switches"}&bsn; |0 | |
-ROW |36626 |29405 |2 |10 | |0 | |
-ROW |36627 |29406 |1 |22 |{__name__=~"node_intr"}&bsn; |0 | |
-ROW |36628 |29406 |2 |10 | |0 | |
-ROW |36629 |29407 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:nice&pipe;guest_nice)$"} |0 | |
-ROW |36630 |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 |36631 |29407 |3 |10 | |0 | |
-ROW |36632 |29407 |4 |1 |100 |0 | |
-ROW |36633 |29408 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:user&pipe;guest)$"} |0 | |
-ROW |36634 |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 |36635 |29408 |3 |10 | |0 | |
-ROW |36636 |29408 |4 |1 |100 |0 | |
-ROW |36637 |29409 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="irq"} |0 | |
-ROW |36638 |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 |36639 |29409 |3 |10 | |0 | |
-ROW |36640 |29409 |4 |1 |100 |0 | |
-ROW |36641 |29410 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="iowait"} |0 | |
-ROW |36642 |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 |36643 |29410 |3 |10 | |0 | |
-ROW |36644 |29410 |4 |1 |100 |0 | |
-ROW |36645 |29411 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="nice"} |0 | |
-ROW |36646 |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 |36647 |29411 |3 |10 | |0 | |
-ROW |36648 |29411 |4 |1 |100 |0 | |
-ROW |36649 |29412 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="softirq"} |0 | |
-ROW |36650 |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 |36651 |29412 |3 |10 | |0 | |
-ROW |36652 |29412 |4 |1 |100 |0 | |
-ROW |36653 |29413 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="user"} |0 | |
-ROW |36654 |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 |36655 |29413 |3 |10 | |0 | |
-ROW |36656 |29413 |4 |1 |100 |0 | |
-ROW |36657 |29414 |1 |22 |node_uname_info&bsn;nodename |0 | |
-ROW |36658 |29414 |2 |20 |1d |0 | |
-ROW |36659 |29415 |1 |22 |node_exporter_build_info&bsn;version |0 | |
-ROW |36660 |29415 |2 |20 |1d |0 | |
-ROW |36661 |29416 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
-ROW |36662 |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 |36663 |29416 |3 |10 | |0 | |
-ROW |36664 |29416 |4 |1 |100 |0 | |
-ROW |36665 |29417 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
-ROW |36666 |29417 |2 |21 |//count the number of cores&bsn;return JSON.parse(value).length&bsn; |0 | |
-ROW |36667 |29418 |1 |22 |node_load15&bsn; |0 | |
-ROW |36668 |29419 |1 |22 |node_load5&bsn; |0 | |
-ROW |36669 |29420 |1 |22 |node_load1&bsn; |0 | |
-ROW |36670 |29421 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
-ROW |36671 |29421 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
-ROW |36672 |29422 |1 |22 |node_uname_info&bsn;machine |0 | |
-ROW |36673 |29422 |2 |20 |1d |0 | |
-ROW |36674 |29423 |1 |22 |node_filefd_allocated&bsn; |0 | |
-ROW |36675 |29424 |1 |22 |node_filefd_maximum&bsn; |0 | |
-ROW |36676 |29424 |2 |20 |1d |0 | |
-ROW |36677 |29425 |1 |23 |node_uname_info |0 | |
-ROW |36678 |29425 |2 |21 |var info = JSON.parse(value)[0];&bsn; return info.labels.sysname+' version: '+info.labels.release+' '+info.labels.version |0 | |
-ROW |36679 |29425 |3 |20 |1d |0 | |
-ROW |36680 |29426 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="system"} |0 | |
-ROW |36681 |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 |36682 |29426 |3 |10 | |0 | |
-ROW |36683 |29426 |4 |1 |100 |0 | |
-ROW |36684 |29427 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
-ROW |36685 |29428 |1 |20 |1d |0 | |
-ROW |36686 |29429 |1 |23 |{__name__=~"^node_network_info$"} |0 | |
-ROW |36687 |29430 |1 |23 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint=~".+"} |0 | |
-ROW |36688 |29431 |1 |23 |node_disk_io_now{device=~".+"} |0 | |
-ROW |36689 |29436 |1 |22 |node_network_receive_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |36690 |29436 |2 |10 | |0 | |
-ROW |36691 |29436 |3 |1 |8 |0 | |
-ROW |36692 |29437 |1 |22 |node_network_transmit_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |36693 |29437 |2 |10 | |0 | |
-ROW |36694 |29437 |3 |1 |8 |0 | |
-ROW |36695 |29438 |1 |22 |node_network_transmit_errs_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |36696 |29438 |2 |10 | |0 | |
-ROW |36697 |29439 |1 |22 |node_network_receive_errs_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |36698 |29439 |2 |10 | |0 | |
-ROW |36699 |29440 |1 |22 |node_network_receive_drop_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |36700 |29440 |2 |10 | |0 | |
-ROW |36701 |29441 |1 |22 |node_network_transmit_drop_total{device="{#IFNAME}"}&bsn; |0 | |
-ROW |36702 |29441 |2 |10 | |0 | |
-ROW |36703 |29442 |1 |22 |node_network_speed_bytes{device="{#IFNAME}"}&bsn; |2 |0 |
-ROW |36704 |29442 |2 |1 |8 |0 | |
-ROW |36705 |29443 |1 |22 |node_network_protocol_type{device="{#IFNAME}"}&bsn; |0 | |
-ROW |36706 |29444 |1 |22 |node_network_info{device="{#IFNAME}"}&bsn;operstate |0 | |
-ROW |36707 |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 |36708 |29445 |1 |22 |{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
-ROW |36709 |29446 |1 |22 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
-ROW |36710 |29447 |1 |23 |{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"} |0 | |
-ROW |36711 |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 |36712 |29448 |1 |22 |node_disk_reads_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |36713 |29448 |2 |10 | |0 | |
-ROW |36714 |29449 |1 |22 |node_disk_writes_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |36715 |29449 |2 |10 | |0 | |
-ROW |36716 |29450 |1 |22 |node_disk_read_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |36717 |29450 |2 |10 | |0 | |
-ROW |36718 |29451 |1 |22 |node_disk_write_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |36719 |29451 |2 |10 | |0 | |
-ROW |36720 |29452 |1 |22 |node_disk_io_time_weighted_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |36721 |29452 |2 |10 | |0 | |
-ROW |36722 |29453 |1 |22 |node_disk_io_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
-ROW |36723 |29453 |2 |10 | |0 | |
-ROW |36724 |29453 |3 |1 |100 |0 | |
-ROW |36725 |28979 |1 |1 |1024 |0 | |
-ROW |36726 |28980 |1 |1 |1024 |0 | |
-ROW |36727 |28981 |1 |1 |1024 |0 | |
-ROW |36728 |28982 |1 |1 |1024 |0 | |
-ROW |36729 |28984 |1 |1 |1024 |0 | |
-ROW |36730 |28985 |1 |1 |1024 |0 | |
-ROW |36731 |28990 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
-ROW |36732 |28991 |1 |10 | |0 | |
-ROW |36733 |28992 |1 |10 | |0 | |
-ROW |36734 |28994 |1 |1 |1024 |0 | |
-ROW |36735 |28995 |1 |1 |1024 |0 | |
-ROW |36736 |28996 |1 |1 |1024 |0 | |
-ROW |36737 |28997 |1 |1 |1024 |0 | |
-ROW |36738 |28999 |1 |1 |1024 |0 | |
-ROW |36739 |29000 |1 |1 |1024 |0 | |
-ROW |36740 |29005 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
-ROW |36741 |29006 |1 |10 | |0 | |
-ROW |36742 |29007 |1 |10 | |0 | |
-ROW |36743 |29009 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
-ROW |36744 |29012 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
-ROW |36745 |29014 |1 |10 | |0 | |
-ROW |36746 |29015 |1 |10 | |0 | |
-ROW |36747 |29017 |1 |10 | |0 | |
-ROW |36748 |29017 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36749 |29018 |1 |10 | |0 | |
-ROW |36750 |29018 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36751 |29019 |1 |10 | |0 | |
-ROW |36752 |29019 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36753 |29020 |1 |10 | |0 | |
-ROW |36754 |29020 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36755 |29021 |1 |10 | |0 | |
-ROW |36756 |29021 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36757 |29022 |1 |10 | |0 | |
-ROW |36758 |29022 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36759 |29023 |1 |10 | |0 | |
-ROW |36760 |29023 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36761 |29024 |1 |10 | |0 | |
-ROW |36762 |29024 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36763 |29025 |1 |10 | |0 | |
-ROW |36764 |29025 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36765 |29026 |1 |10 | |0 | |
-ROW |36766 |29026 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36767 |29027 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |36768 |29028 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |36769 |29030 |1 |21 |return (100-value); |0 | |
-ROW |36770 |29031 |1 |10 | |0 | |
-ROW |36771 |29032 |1 |10 | |0 | |
-ROW |36772 |29034 |1 |10 | |0 | |
-ROW |36773 |29034 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36774 |29035 |1 |10 | |0 | |
-ROW |36775 |29035 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36776 |29036 |1 |10 | |0 | |
-ROW |36777 |29036 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36778 |29037 |1 |10 | |0 | |
-ROW |36779 |29037 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36780 |29038 |1 |10 | |0 | |
-ROW |36781 |29038 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36782 |29039 |1 |10 | |0 | |
-ROW |36783 |29039 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36784 |29040 |1 |10 | |0 | |
-ROW |36785 |29040 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36786 |29041 |1 |10 | |0 | |
-ROW |36787 |29041 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36788 |29042 |1 |10 | |0 | |
-ROW |36789 |29042 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36790 |29043 |1 |10 | |0 | |
-ROW |36791 |29043 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
-ROW |36792 |29044 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |36793 |29045 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |36794 |29047 |1 |21 |return (100-value); |0 | |
-ROW |36795 |29048 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
-ROW |36796 |29049 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
-ROW |36797 |29474 |1 |20 |1d |0 | |
-ROW |36798 |29475 |1 |20 |1d |0 | |
-ROW |36799 |29478 |1 |20 |1d |0 | |
-ROW |36800 |29500 |1 |20 |1d |0 | |
-ROW |36801 |29501 |1 |20 |1d |0 | |
-ROW |36802 |29504 |1 |20 |1d |0 | |
-ROW |36803 |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 |36804 |29507 |2 |20 |1h |0 | |
-ROW |36805 |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 |36806 |29508 |2 |20 |1h |0 | |
-ROW |36807 |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 |36808 |29510 |2 |20 |1h |0 | |
-ROW |36809 |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 |36810 |29511 |2 |20 |1h |0 | |
-ROW |36811 |29515 |1 |10 | |0 | |
-ROW |36812 |29515 |2 |1 |8 |0 | |
-ROW |36813 |29516 |1 |10 | |0 | |
-ROW |36814 |29516 |2 |1 |8 |0 | |
-ROW |36815 |29517 |1 |10 | |0 | |
-ROW |36816 |29518 |1 |10 | |0 | |
-ROW |36817 |29519 |1 |10 | |0 | |
-ROW |36818 |29520 |1 |10 | |0 | |
-ROW |36819 |29524 |1 |10 | |0 | |
-ROW |36820 |29524 |2 |1 |8 |0 | |
-ROW |36821 |29525 |1 |10 | |0 | |
-ROW |36822 |29525 |2 |1 |8 |0 | |
-ROW |36823 |29526 |1 |10 | |0 | |
-ROW |36824 |29527 |1 |10 | |0 | |
-ROW |36825 |29528 |1 |10 | |0 | |
-ROW |36826 |29529 |1 |10 | |0 | |
-ROW |36827 |29530 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
-ROW |36828 |29531 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
-ROW |36829 |29532 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
-ROW |36830 |29533 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
-ROW |36831 |29534 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |36832 |29535 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |36833 |29536 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |36834 |29537 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
-ROW |36835 |29538 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
-ROW |36836 |29539 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
-ROW |36837 |29540 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
-ROW |36838 |29541 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |36839 |29542 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |36840 |29543 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |36841 |29581 |1 |20 |1d |0 | |
-ROW |36842 |29582 |1 |20 |1d |0 | |
-ROW |36843 |29585 |1 |20 |1d |0 | |
-ROW |36844 |29607 |1 |20 |1d |0 | |
-ROW |36845 |29608 |1 |20 |1d |0 | |
-ROW |36846 |29611 |1 |20 |1d |0 | |
-ROW |36847 |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 |36848 |29614 |2 |20 |1h |0 | |
-ROW |36849 |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 |36850 |29615 |2 |20 |1h |0 | |
-ROW |36851 |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 |36852 |29617 |2 |20 |1h |0 | |
-ROW |36853 |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 |36854 |29618 |2 |20 |1h |0 | |
-ROW |36855 |29622 |1 |10 | |0 | |
-ROW |36856 |29622 |2 |1 |8 |0 | |
-ROW |36857 |29623 |1 |10 | |0 | |
-ROW |36858 |29623 |2 |1 |8 |0 | |
-ROW |36859 |29624 |1 |10 | |0 | |
-ROW |36860 |29625 |1 |10 | |0 | |
-ROW |36861 |29626 |1 |10 | |0 | |
-ROW |36862 |29627 |1 |10 | |0 | |
-ROW |36863 |29631 |1 |10 | |0 | |
-ROW |36864 |29631 |2 |1 |8 |0 | |
-ROW |36865 |29632 |1 |10 | |0 | |
-ROW |36866 |29632 |2 |1 |8 |0 | |
-ROW |36867 |29633 |1 |10 | |0 | |
-ROW |36868 |29634 |1 |10 | |0 | |
-ROW |36869 |29635 |1 |10 | |0 | |
-ROW |36870 |29636 |1 |10 | |0 | |
-ROW |36871 |29637 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
-ROW |36872 |29638 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
-ROW |36873 |29639 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
-ROW |36874 |29640 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
-ROW |36875 |29641 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |36876 |29642 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |36877 |29643 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |36878 |29644 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
-ROW |36879 |29645 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
-ROW |36880 |29646 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
-ROW |36881 |29647 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
-ROW |36882 |29648 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
-ROW |36883 |29649 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
-ROW |36884 |29650 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
-ROW |36885 |30688 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].state.text.first() |0 | |
-ROW |36886 |30688 |2 |20 |1d |0 | |
-ROW |36887 |30689 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].value.first() |0 | |
-ROW |36888 |30689 |2 |20 |1h |0 | |
-ROW |36889 |30073 |1 |20 |1d |0 | |
-ROW |36890 |30074 |1 |20 |1d |0 | |
-ROW |36891 |30079 |1 |1 |1048576 |0 | |
-ROW |36892 |30082 |1 |1 |1048576 |0 | |
-ROW |36893 |28342 |1 |20 |1d |0 | |
-ROW |36894 |28344 |1 |20 |1d |0 | |
-ROW |36895 |28345 |1 |20 |1d |0 | |
-ROW |36896 |30141 |1 |20 |1d |0 | |
-ROW |36897 |28354 |1 |1 |0.1 |0 | |
-ROW |36898 |28356 |1 |1 |0.1 |0 | |
-ROW |36899 |28367 |1 |1 |1048576 |0 | |
-ROW |36900 |28372 |1 |1 |1048576 |0 | |
-ROW |36901 |28390 |1 |20 |1d |0 | |
-ROW |36902 |28391 |1 |20 |1d |0 | |
-ROW |36903 |28422 |1 |1 |1048576 |0 | |
-ROW |36904 |28425 |1 |1 |1048576 |0 | |
-ROW |36905 |28438 |1 |20 |1d |0 | |
-ROW |36906 |28439 |1 |20 |1d |0 | |
-ROW |36907 |28451 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |0 | |
-ROW |36908 |28466 |1 |20 |1d |0 | |
-ROW |36909 |28467 |1 |20 |1d |0 | |
-ROW |36910 |28479 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |0 | |
+ROW |36911 |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 |36912 |28743 |1 |20 |10m |0 | |
+ROW |36913 |28749 |1 |12 |$["Total Accesses"] |0 | |
+ROW |36914 |28750 |1 |12 |$.Workers.reading |0 | |
+ROW |36915 |28751 |1 |12 |$["Total kBytes"] |0 | |
+ROW |36916 |28751 |2 |1 |1024 |0 | |
+ROW |36917 |28752 |1 |12 |$["Total kBytes"] |0 | |
+ROW |36918 |28752 |2 |1 |1024 |0 | |
+ROW |36919 |28752 |3 |10 | |0 | |
+ROW |36920 |28753 |1 |12 |$.Workers.waiting |0 | |
+ROW |36921 |28754 |1 |12 |$.Workers.starting |0 | |
+ROW |36922 |28755 |1 |12 |$.Workers.slot |0 | |
+ROW |36923 |28756 |1 |12 |$.Workers.sending |0 | |
+ROW |36924 |28757 |1 |12 |$.Workers.logging |0 | |
+ROW |36925 |28758 |1 |12 |$.ServerUptimeSeconds |0 | |
+ROW |36926 |28759 |1 |12 |$.Workers.keepalive |0 | |
+ROW |36927 |28760 |1 |12 |$.Workers.cleanup |0 | |
+ROW |36928 |28761 |1 |12 |$["Total Accesses"] |0 | |
+ROW |36929 |28761 |2 |10 | |0 | |
+ROW |36930 |28762 |1 |12 |$.Workers.dnslookup |0 | |
+ROW |36931 |28763 |1 |12 |$.Workers.closing |0 | |
+ROW |36932 |28764 |1 |12 |$.IdleWorkers |0 | |
+ROW |36933 |28765 |1 |12 |$.BusyWorkers |0 | |
+ROW |36934 |28766 |1 |12 |$.ServerVersion |0 | |
+ROW |36935 |28766 |2 |20 |1d |0 | |
+ROW |36936 |28767 |1 |12 |$.Workers.finishing |0 | |
+ROW |36937 |28768 |1 |12 |$.ServerMPM |0 | |
+ROW |36938 |28768 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |36939 |28769 |1 |12 |$.ConnsAsyncClosing |0 | |
+ROW |36940 |28770 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
+ROW |36941 |28771 |1 |12 |$.ConnsAsyncWriting |0 | |
+ROW |36942 |28772 |1 |12 |$.ConnsTotal |0 | |
+ROW |36943 |28773 |1 |12 |$.BytesPerReq |0 | |
+ROW |36944 |28774 |1 |12 |$.Processes |0 | |
+ROW |36945 |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 |36946 |28776 |1 |20 |10m |0 | |
+ROW |36947 |28778 |1 |12 |$.Workers.starting |0 | |
+ROW |36948 |28779 |1 |12 |$.Workers.slot |0 | |
+ROW |36949 |28780 |1 |12 |$.Workers.sending |0 | |
+ROW |36950 |28781 |1 |12 |$.Workers.reading |0 | |
+ROW |36951 |28782 |1 |12 |$.Workers.logging |0 | |
+ROW |36952 |28783 |1 |12 |$.Workers.keepalive |0 | |
+ROW |36953 |28784 |1 |12 |$.Workers.cleanup |0 | |
+ROW |36954 |28785 |1 |12 |$.Workers.finishing |0 | |
+ROW |36955 |28786 |1 |12 |$.Workers.closing |0 | |
+ROW |36956 |28787 |1 |12 |$.Workers.dnslookup |0 | |
+ROW |36957 |28788 |1 |12 |$.IdleWorkers |0 | |
+ROW |36958 |28789 |1 |12 |$.BusyWorkers |0 | |
+ROW |36959 |28790 |1 |12 |$.ServerVersion |0 | |
+ROW |36960 |28790 |2 |20 |1d |0 | |
+ROW |36961 |28791 |1 |12 |$.ServerUptimeSeconds |0 | |
+ROW |36962 |28792 |1 |12 |$["Total Accesses"] |0 | |
+ROW |36963 |28793 |1 |12 |$["Total Accesses"] |0 | |
+ROW |36964 |28793 |2 |10 | |0 | |
+ROW |36965 |28794 |1 |12 |$["Total kBytes"] |0 | |
+ROW |36966 |28794 |2 |1 |1024 |0 | |
+ROW |36967 |28794 |3 |10 | |0 | |
+ROW |36968 |28795 |1 |12 |$["Total kBytes"] |0 | |
+ROW |36969 |28795 |2 |1 |1024 |0 | |
+ROW |36970 |28796 |1 |12 |$.Workers.waiting |0 | |
+ROW |36971 |28797 |1 |12 |$.ServerMPM |0 | |
+ROW |36972 |28797 |2 |21 |return JSON.stringify(value === 'event' ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |36973 |28798 |1 |12 |$.ConnsAsyncClosing |0 | |
+ROW |36974 |28799 |1 |12 |$.ConnsAsyncKeepAlive |0 | |
+ROW |36975 |28800 |1 |12 |$.ConnsAsyncWriting |0 | |
+ROW |36976 |28801 |1 |12 |$.ConnsTotal |0 | |
+ROW |36977 |28802 |1 |12 |$.BytesPerReq |0 | |
+ROW |36978 |28803 |1 |12 |$.Processes |0 | |
+ROW |36979 |30530 |1 |20 |10m |0 | |
+ROW |36980 |30532 |1 |12 |$.Architecture |0 | |
+ROW |36981 |30532 |2 |20 |1d |0 | |
+ROW |36982 |30533 |1 |12 |$.LiveRestoreEnabled |0 | |
+ROW |36983 |30533 |2 |6 | |0 | |
+ROW |36984 |30533 |3 |20 |1d |0 | |
+ROW |36985 |30534 |1 |12 |$.LoggingDriver |0 | |
+ROW |36986 |30534 |2 |20 |1d |0 | |
+ROW |36987 |30535 |1 |12 |$.MemoryLimit |0 | |
+ROW |36988 |30535 |2 |6 | |0 | |
+ROW |36989 |30535 |3 |20 |1d |0 | |
+ROW |36990 |30536 |1 |12 |$.MemTotal |0 | |
+ROW |36991 |30537 |1 |12 |$.Name |0 | |
+ROW |36992 |30538 |1 |12 |$.NCPU |0 | |
+ROW |36993 |30539 |1 |12 |$.NFd |0 | |
+ROW |36994 |30540 |1 |12 |$.NEventsListener |0 | |
+ROW |36995 |30541 |1 |12 |$.KernelVersion |0 | |
+ROW |36996 |30541 |2 |20 |1d |0 | |
+ROW |36997 |30542 |1 |12 |$.OomKillDisable |0 | |
+ROW |36998 |30542 |2 |6 | |0 | |
+ROW |36999 |30542 |3 |20 |1d |0 | |
+ROW |37000 |30543 |1 |12 |$.OperatingSystem |0 | |
+ROW |37001 |30543 |2 |20 |1d |0 | |
+ROW |37002 |30544 |1 |12 |$.OSType |0 | |
+ROW |37003 |30544 |2 |20 |1d |0 | |
+ROW |37004 |30545 |1 |12 |$.PidsLimit |0 | |
+ROW |37005 |30545 |2 |6 | |0 | |
+ROW |37006 |30545 |3 |20 |1d |0 | |
+ROW |37007 |30546 |1 |12 |$.DockerRootDir |0 | |
+ROW |37008 |30546 |2 |20 |1d |0 | |
+ROW |37009 |30547 |1 |12 |$.ServerVersion |0 | |
+ROW |37010 |30547 |2 |20 |1d |0 | |
+ROW |37011 |30548 |1 |12 |$.SwapLimit |0 | |
+ROW |37012 |30548 |2 |6 | |0 | |
+ROW |37013 |30548 |3 |20 |1d |0 | |
+ROW |37014 |30549 |1 |12 |$.LayersSize |0 | |
+ROW |37015 |30550 |1 |12 |$.IPv4Forwarding |0 | |
+ROW |37016 |30550 |2 |6 | |0 | |
+ROW |37017 |30550 |3 |20 |1d |0 | |
+ROW |37018 |30551 |1 |12 |$.KernelMemory |0 | |
+ROW |37019 |30551 |2 |6 | |0 | |
+ROW |37020 |30551 |3 |20 |1d |0 | |
+ROW |37021 |30552 |1 |12 |$.CPUSet |0 | |
+ROW |37022 |30552 |2 |6 | |0 | |
+ROW |37023 |30552 |3 |20 |1d |0 | |
+ROW |37024 |30553 |1 |12 |$.Containers[*].SizeRw.sum() |0 | |
+ROW |37025 |30554 |1 |12 |$.ContainersPaused |0 | |
+ROW |37026 |30555 |1 |12 |$.ContainersRunning |0 | |
+ROW |37027 |30556 |1 |12 |$.ContainersStopped |0 | |
+ROW |37028 |30557 |1 |12 |$.Containers |0 | |
+ROW |37029 |30558 |1 |12 |$.CpuCfsPeriod |0 | |
+ROW |37030 |30558 |2 |6 | |0 | |
+ROW |37031 |30558 |3 |20 |1d |0 | |
+ROW |37032 |30559 |1 |12 |$.CpuCfsQuota |0 | |
+ROW |37033 |30559 |2 |6 | |0 | |
+ROW |37034 |30559 |3 |20 |1d |0 | |
+ROW |37035 |30560 |1 |12 |$.CPUShares |0 | |
+ROW |37036 |30560 |2 |6 | |0 | |
+ROW |37037 |30560 |3 |20 |1d |0 | |
+ROW |37038 |30561 |1 |12 |$.KernelMemoryTCP |0 | |
+ROW |37039 |30561 |2 |6 | |0 | |
+ROW |37040 |30561 |3 |20 |1d |0 | |
+ROW |37041 |30562 |1 |12 |$.Debug |0 | |
+ROW |37042 |30562 |2 |6 | |0 | |
+ROW |37043 |30562 |3 |20 |1d |0 | |
+ROW |37044 |30563 |1 |12 |$.DefaultRuntime |0 | |
+ROW |37045 |30563 |2 |20 |1d |0 | |
+ROW |37046 |30564 |1 |12 |$.Driver |0 | |
+ROW |37047 |30564 |2 |20 |1d |0 | |
+ROW |37048 |30565 |1 |12 |$.NGoroutines |0 | |
+ROW |37049 |30566 |1 |12 |$.Images[*].Size.sum() |0 | |
+ROW |37050 |30567 |1 |12 |$.length() |0 | |
+ROW |37051 |30568 |1 |12 |$.Images |0 | |
+ROW |37052 |30569 |1 |12 |$.CgroupDriver |0 | |
+ROW |37053 |30569 |2 |20 |1d |0 | |
+ROW |37054 |30570 |1 |12 |$.Volumes[*].UsageData.Size.sum() |0 | |
+ROW |37055 |30575 |1 |12 |$.cpu_stats.online_cpus |0 | |
+ROW |37056 |30576 |1 |12 |$.memory_stats.commitbytes |0 | |
+ROW |37057 |30577 |1 |12 |$.memory_stats.commitpeakbytes |0 | |
+ROW |37058 |30578 |1 |12 |$.memory_stats.max_usage |0 | |
+ROW |37059 |30579 |1 |12 |$.memory_stats.privateworkingset |0 | |
+ROW |37060 |30580 |1 |12 |$.memory_stats.usage |0 | |
+ROW |37061 |30581 |1 |12 |$.Created |0 | |
+ROW |37062 |30581 |2 |20 |1d |0 | |
+ROW |37063 |30582 |1 |12 |$.cpu_stats.cpu_usage.total_usage |0 | |
+ROW |37064 |30582 |2 |10 | |0 | |
+ROW |37065 |30582 |3 |1 |1.0E-9 |0 | |
+ROW |37066 |30583 |1 |12 |$.networks[*].rx_bytes.sum() |2 |0 |
+ROW |37067 |30583 |2 |10 | |0 | |
+ROW |37068 |30584 |1 |12 |$.networks[*].rx_dropped.sum() |2 |0 |
+ROW |37069 |30584 |2 |10 | |0 | |
+ROW |37070 |30585 |1 |12 |$.networks[*].rx_errors.sum() |2 |0 |
+ROW |37071 |30585 |2 |10 | |0 | |
+ROW |37072 |30586 |1 |12 |$.networks[*].rx_packets.sum() |2 |0 |
+ROW |37073 |30586 |2 |10 | |0 | |
+ROW |37074 |30587 |1 |12 |$.networks[*].tx_bytes.sum() |2 |0 |
+ROW |37075 |30587 |2 |10 | |0 | |
+ROW |37076 |30588 |1 |12 |$.networks[*].tx_dropped.sum() |2 |0 |
+ROW |37077 |30588 |2 |10 | |0 | |
+ROW |37078 |30589 |1 |12 |$.networks[*].tx_errors.sum() |2 |0 |
+ROW |37079 |30589 |2 |10 | |0 | |
+ROW |37080 |30590 |1 |12 |$.cpu_stats.cpu_usage.usage_in_usermode |0 | |
+ROW |37081 |30590 |2 |10 | |0 | |
+ROW |37082 |30590 |3 |1 |1.0E-9 |0 | |
+ROW |37083 |30591 |1 |12 |$.cpu_stats.throttling_data.periods |0 | |
+ROW |37084 |30592 |1 |12 |$.State.FinishedAt |0 | |
+ROW |37085 |30592 |2 |20 |1d |0 | |
+ROW |37086 |30593 |1 |12 |$.State.OOMKilled |0 | |
+ROW |37087 |30593 |2 |6 | |0 | |
+ROW |37088 |30594 |1 |12 |$[?(@.Names[0] == "{#NAME}")].Image.first() |0 | |
+ROW |37089 |30594 |2 |20 |1d |0 | |
+ROW |37090 |30595 |1 |12 |$.RestartCount |0 | |
+ROW |37091 |30596 |1 |12 |$.State.StartedAt |0 | |
+ROW |37092 |30596 |2 |20 |1d |0 | |
+ROW |37093 |30597 |1 |12 |$.State.Dead |0 | |
+ROW |37094 |30597 |2 |6 | |0 | |
+ROW |37095 |30598 |1 |12 |$.State.Error |0 | |
+ROW |37096 |30598 |2 |20 |1d |0 | |
+ROW |37097 |30599 |1 |12 |$.State.ExitCode |0 | |
+ROW |37098 |30599 |2 |20 |1d |0 | |
+ROW |37099 |30600 |1 |12 |$.State.Paused |0 | |
+ROW |37100 |30600 |2 |6 | |0 | |
+ROW |37101 |30601 |1 |12 |$.cpu_stats.throttling_data.throttled_time |0 | |
+ROW |37102 |30601 |2 |1 |1.0E-9 |0 | |
+ROW |37103 |30602 |1 |12 |$.State.Pid |0 | |
+ROW |37104 |30602 |2 |20 |1d |0 | |
+ROW |37105 |30603 |1 |12 |$.State.Restarting |0 | |
+ROW |37106 |30603 |2 |6 | |0 | |
+ROW |37107 |30604 |1 |12 |$.State.Running |0 | |
+ROW |37108 |30604 |2 |6 | |0 | |
+ROW |37109 |30605 |1 |12 |$.State.Status |0 | |
+ROW |37110 |30605 |2 |20 |1h |0 | |
+ROW |37111 |30606 |1 |12 |$.cpu_stats.cpu_usage.usage_in_kernelmode |0 | |
+ROW |37112 |30606 |2 |10 | |0 | |
+ROW |37113 |30606 |3 |1 |1.0E-9 |0 | |
+ROW |37114 |30607 |1 |12 |$.cpu_stats.throttling_data.throttled_periods |0 | |
+ROW |37115 |30608 |1 |12 |$.networks[*].tx_packets.sum() |2 |0 |
+ROW |37116 |30608 |2 |10 | |0 | |
+ROW |37117 |30609 |1 |12 |$[?(@.Id == "{#ID}")].Created.first() |0 | |
+ROW |37118 |30609 |2 |20 |1d |0 | |
+ROW |37119 |30610 |1 |12 |$[?(@.Id == "{#ID}")].Size.first() |0 | |
+ROW |37120 |30690 |1 |20 |10m |0 | |
+ROW |37121 |30695 |1 |12 |$.indices.docs.count |0 | |
+ROW |37122 |30695 |2 |20 |1h |0 | |
+ROW |37123 |30696 |1 |12 |$.nodes.jvm.max_uptime_in_millis |0 | |
+ROW |37124 |30696 |2 |1 |0.001 |0 | |
+ROW |37125 |30697 |1 |12 |$.nodes.fs.total_in_bytes |0 | |
+ROW |37126 |30697 |2 |20 |1h |0 | |
+ROW |37127 |30698 |1 |12 |$.nodes.fs.available_in_bytes |0 | |
+ROW |37128 |30698 |2 |20 |1h |0 | |
+ROW |37129 |30699 |1 |12 |$.nodes.count.master |0 | |
+ROW |37130 |30699 |2 |20 |1h |0 | |
+ROW |37131 |30700 |1 |12 |$.nodes.count.ingest |0 | |
+ROW |37132 |30700 |2 |20 |1h |0 | |
+ROW |37133 |30701 |1 |12 |$.nodes.count.data |0 | |
+ROW |37134 |30701 |2 |20 |1h |0 | |
+ROW |37135 |30702 |1 |12 |$.delayed_unassigned_shards |0 | |
+ROW |37136 |30703 |1 |12 |$.indices.count |0 | |
+ROW |37137 |30703 |2 |20 |1h |0 | |
+ROW |37138 |30704 |1 |12 |$.task_max_waiting_in_queue_millis |0 | |
+ROW |37139 |30704 |2 |1 |0.001 |0 | |
+ROW |37140 |30705 |1 |12 |$.status |0 | |
+ROW |37141 |30705 |2 |21 |var state = ['green', 'yellow', 'red'];&bsn;&bsn;return state.indexOf(value.trim()) === -1 ? 255 : state.indexOf(value.trim());&bsn; |0 | |
+ROW |37142 |30705 |3 |20 |1h |0 | |
+ROW |37143 |30706 |1 |12 |$.relocating_shards |0 | |
+ROW |37144 |30707 |1 |12 |$.number_of_pending_tasks |0 | |
+ROW |37145 |30708 |1 |12 |$.number_of_nodes |0 | |
+ROW |37146 |30708 |2 |20 |1h |0 | |
+ROW |37147 |30709 |1 |12 |$.number_of_data_nodes |0 | |
+ROW |37148 |30709 |2 |20 |1h |0 | |
+ROW |37149 |30710 |1 |12 |$.initializing_shards |0 | |
+ROW |37150 |30711 |1 |12 |$.active_shards_percent_as_number |0 | |
+ROW |37151 |30711 |2 |21 |return (100 - value) |0 | |
+ROW |37152 |30712 |1 |12 |$.unassigned_shards |0 | |
+ROW |37153 |30713 |1 |12 |$.nodes.[*] |0 | |
+ROW |37154 |30713 |2 |20 |1d |0 | |
+ROW |37155 |30718 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.active.first() |0 | |
+ROW |37156 |30719 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_total.first() |0 | |
+ROW |37157 |30719 |2 |20 |1h |0 | |
+ROW |37158 |30720 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_total.first() |0 | |
+ROW |37159 |30720 |2 |10 | |0 | |
+ROW |37160 |30721 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_committed_in_bytes.first() |0 | |
+ROW |37161 |30721 |2 |20 |1h |0 | |
+ROW |37162 |30722 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_max_in_bytes.first() |0 | |
+ROW |37163 |30722 |2 |20 |1d |0 | |
+ROW |37164 |30723 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_used_in_bytes.first() |0 | |
+ROW |37165 |30723 |2 |20 |1h |0 | |
+ROW |37166 |30724 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.mem.heap_used_percent.first() |0 | |
+ROW |37167 |30724 |2 |20 |1h |0 | |
+ROW |37168 |30725 |1 |12 |$..[?(@.name=='{#ES.NODE}')].jvm.uptime_in_millis.first() |0 | |
+ROW |37169 |30725 |2 |1 |0.001 |0 | |
+ROW |37170 |30726 |1 |12 |$..[?(@.name=='{#ES.NODE}')].fs.total.available_in_bytes.first() |0 | |
+ROW |37171 |30726 |2 |20 |1h |0 | |
+ROW |37172 |30727 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.completed.first() |0 | |
+ROW |37173 |30727 |2 |10 | |0 | |
+ROW |37174 |30728 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_time_in_millis.first() |0 | |
+ROW |37175 |30728 |2 |1 |0.001 |0 | |
+ROW |37176 |30728 |3 |9 | |0 | |
+ROW |37177 |30729 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.rejected.first() |0 | |
+ROW |37178 |30729 |2 |10 | |0 | |
+ROW |37179 |30730 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.active.first() |0 | |
+ROW |37180 |30731 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.completed.first() |0 | |
+ROW |37181 |30731 |2 |10 | |0 | |
+ROW |37182 |30732 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.queue.first() |0 | |
+ROW |37183 |30733 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.search.rejected.first() |0 | |
+ROW |37184 |30733 |2 |10 | |0 | |
+ROW |37185 |30734 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.active.first() |0 | |
+ROW |37186 |30735 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.completed.first() |0 | |
+ROW |37187 |30735 |2 |10 | |0 | |
+ROW |37188 |30736 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.queue.first() |0 | |
+ROW |37189 |30737 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.refresh.queue.first() |0 | |
+ROW |37190 |30738 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_current.first() |0 | |
+ROW |37191 |30739 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.query_time_in_millis.first() |0 | |
+ROW |37192 |30739 |2 |20 |1h |0 | |
+ROW |37193 |30740 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.throttle_time_in_millis.first() |0 | |
+ROW |37194 |30740 |2 |1 |0.001 |0 | |
+ROW |37195 |30740 |3 |9 | |0 | |
+ROW |37196 |30741 |1 |12 |$..[?(@.name=='{#ES.NODE}')].http.current_open.first() |0 | |
+ROW |37197 |30741 |2 |20 |1h |0 | |
+ROW |37198 |30742 |1 |12 |$..[?(@.name=='{#ES.NODE}')].http.total_opened.first() |0 | |
+ROW |37199 |30742 |2 |10 | |0 | |
+ROW |37200 |30743 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.flush.total_time_in_millis.first() |0 | |
+ROW |37201 |30743 |2 |20 |1h |0 | |
+ROW |37202 |30744 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.flush.total.first() |0 | |
+ROW |37203 |30744 |2 |20 |1h |0 | |
+ROW |37204 |30745 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_current.first() |0 | |
+ROW |37205 |30745 |2 |20 |1h |0 | |
+ROW |37206 |30746 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_time_in_millis.first() |0 | |
+ROW |37207 |30746 |2 |20 |1h |0 | |
+ROW |37208 |30747 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.indexing.index_total.first() |0 | |
+ROW |37209 |30747 |2 |20 |1h |0 | |
+ROW |37210 |30748 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.merges.total_throttled_time_in_millis.first() |0 | |
+ROW |37211 |30748 |2 |1 |0.001 |0 | |
+ROW |37212 |30748 |3 |9 | |0 | |
+ROW |37213 |30749 |1 |12 |$..[?(@.name=='{#ES.NODE}')].fs.total.total_in_bytes.first() |0 | |
+ROW |37214 |30749 |2 |20 |1d |0 | |
+ROW |37215 |30750 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.recovery.throttle_time_in_millis.first() |0 | |
+ROW |37216 |30750 |2 |1 |0.001 |0 | |
+ROW |37217 |30750 |3 |9 | |0 | |
+ROW |37218 |30751 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.refresh.total.first() |0 | |
+ROW |37219 |30751 |2 |10 | |0 | |
+ROW |37220 |30752 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.refresh.total_time_in_millis.first() |0 | |
+ROW |37221 |30752 |2 |1 |0.001 |0 | |
+ROW |37222 |30752 |3 |9 | |0 | |
+ROW |37223 |30753 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_current.first() |0 | |
+ROW |37224 |30754 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_time_in_millis.first() |0 | |
+ROW |37225 |30754 |2 |20 |1h |0 | |
+ROW |37226 |30755 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_time_in_millis.first() |0 | |
+ROW |37227 |30755 |2 |1 |0.001 |0 | |
+ROW |37228 |30755 |3 |9 | |0 | |
+ROW |37229 |30756 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_total.first() |0 | |
+ROW |37230 |30756 |2 |20 |1h |0 | |
+ROW |37231 |30757 |1 |12 |$..[?(@.name=='{#ES.NODE}')].indices.search.fetch_total.first() |0 | |
+ROW |37232 |30757 |2 |10 | |0 | |
+ROW |37233 |30758 |1 |12 |$..[?(@.name=='{#ES.NODE}')].thread_pool.write.rejected.first() |0 | |
+ROW |37234 |30758 |2 |10 | |0 | |
+ROW |37235 |30188 |1 |20 |10m |0 | |
+ROW |37236 |30189 |1 |5 |# ([\s\S]*)&bsn;\1 |0 | |
+ROW |37237 |30189 |2 |24 |&bsn;&bsn;1 |0 | |
+ROW |37238 |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 |37239 |30192 |1 |5 |HAProxy version ([^,]*),&bsn;\1 |3 |HAProxy version is not found |
+ROW |37240 |30192 |2 |20 |1d |0 | |
+ROW |37241 |30197 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |37242 |30197 |2 |10 | |0 | |
+ROW |37243 |30198 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |37244 |30198 |2 |10 | |0 | |
+ROW |37245 |30199 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |37246 |30199 |2 |10 | |0 | |
+ROW |37247 |30200 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |37248 |30201 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |37249 |30201 |2 |1 |0.001 |0 | |
+ROW |37250 |30202 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |37251 |30202 |2 |1 |0.001 |0 | |
+ROW |37252 |30203 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |37253 |30203 |2 |6 | |0 | |
+ROW |37254 |30203 |3 |20 |10m |0 | |
+ROW |37255 |30204 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |37256 |30204 |2 |10 | |0 | |
+ROW |37257 |30205 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |37258 |30205 |2 |10 | |0 | |
+ROW |37259 |30206 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |37260 |30206 |2 |1 |8 |0 | |
+ROW |37261 |30206 |3 |10 | |0 | |
+ROW |37262 |30207 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |37263 |30207 |2 |1 |8 |0 | |
+ROW |37264 |30207 |3 |10 | |0 | |
+ROW |37265 |30208 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |37266 |30208 |2 |10 | |0 | |
+ROW |37267 |30209 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |37268 |30209 |2 |10 | |0 | |
+ROW |37269 |30210 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
+ROW |37270 |30210 |2 |10 | |0 | |
+ROW |37271 |30211 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
+ROW |37272 |30211 |2 |10 | |0 | |
+ROW |37273 |30212 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
+ROW |37274 |30212 |2 |10 | |0 | |
+ROW |37275 |30213 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |37276 |30213 |2 |10 | |0 | |
+ROW |37277 |30214 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |37278 |30214 |2 |10 | |0 | |
+ROW |37279 |30215 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |37280 |30216 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |37281 |30217 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |37282 |30218 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |37283 |30218 |2 |20 |1h |0 | |
+ROW |37284 |30219 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |37285 |30219 |2 |10 | |0 | |
+ROW |37286 |30220 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |37287 |30220 |2 |10 | |0 | |
+ROW |37288 |30221 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |37289 |30221 |2 |10 | |0 | |
+ROW |37290 |30222 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |37291 |30222 |2 |10 | |0 | |
+ROW |37292 |30223 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |37293 |30223 |2 |10 | |0 | |
+ROW |37294 |30224 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |37295 |30225 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |37296 |30225 |2 |1 |0.001 |0 | |
+ROW |37297 |30226 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |37298 |30226 |2 |1 |0.001 |0 | |
+ROW |37299 |30227 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |37300 |30227 |2 |6 | |0 | |
+ROW |37301 |30227 |3 |20 |10m |0 | |
+ROW |37302 |30228 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |37303 |30228 |2 |10 | |0 | |
+ROW |37304 |30229 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |37305 |30229 |2 |10 | |0 | |
+ROW |37306 |30763 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |37307 |30763 |2 |10 | |0 | |
+ROW |37308 |30764 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |37309 |30764 |2 |10 | |0 | |
+ROW |37310 |30765 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |37311 |30765 |2 |10 | |0 | |
+ROW |37312 |30766 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |37313 |30767 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |37314 |30767 |2 |1 |0.001 |0 | |
+ROW |37315 |30768 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |37316 |30768 |2 |1 |0.001 |0 | |
+ROW |37317 |30769 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |37318 |30769 |2 |6 | |0 | |
+ROW |37319 |30769 |3 |20 |10m |0 | |
+ROW |37320 |30770 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |37321 |30770 |2 |10 | |0 | |
+ROW |37322 |30771 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |37323 |30771 |2 |10 | |0 | |
+ROW |37324 |30772 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |37325 |30772 |2 |1 |8 |0 | |
+ROW |37326 |30772 |3 |10 | |0 | |
+ROW |37327 |30773 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |37328 |30773 |2 |1 |8 |0 | |
+ROW |37329 |30773 |3 |10 | |0 | |
+ROW |37330 |30774 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |37331 |30774 |2 |10 | |0 | |
+ROW |37332 |30775 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |37333 |30775 |2 |10 | |0 | |
+ROW |37334 |30776 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |37335 |30777 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |37336 |30778 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |37337 |30779 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |37338 |30779 |2 |20 |1h |0 | |
+ROW |37339 |30780 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |37340 |30780 |2 |10 | |0 | |
+ROW |37341 |30781 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |37342 |30781 |2 |10 | |0 | |
+ROW |37343 |30782 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |37344 |30782 |2 |10 | |0 | |
+ROW |37345 |30783 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |37346 |30784 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |37347 |30784 |2 |1 |0.001 |0 | |
+ROW |37348 |30785 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |37349 |30785 |2 |1 |0.001 |0 | |
+ROW |37350 |30786 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |37351 |30786 |2 |6 | |0 | |
+ROW |37352 |30786 |3 |20 |10m |0 | |
+ROW |37353 |30787 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |37354 |30787 |2 |10 | |0 | |
+ROW |37355 |30788 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |37356 |30788 |2 |10 | |0 | |
+ROW |37357 |30230 |1 |5 |# ([\s\S]*)\n&bsn;\1 |0 | |
+ROW |37358 |30230 |2 |24 |&bsn;&bsn;1 |0 | |
+ROW |37359 |30790 |1 |20 |10m |0 | |
+ROW |37360 |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 |37361 |30235 |1 |5 |HAProxy version ([^,]*),&bsn;\1 |3 |HAProxy version is not found |
+ROW |37362 |30235 |2 |20 |1d |0 | |
+ROW |37363 |30240 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |37364 |30240 |2 |10 | |0 | |
+ROW |37365 |30241 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |37366 |30241 |2 |10 | |0 | |
+ROW |37367 |30242 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |37368 |30242 |2 |10 | |0 | |
+ROW |37369 |30243 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |37370 |30244 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |37371 |30244 |2 |1 |0.001 |0 | |
+ROW |37372 |30245 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |37373 |30245 |2 |1 |0.001 |0 | |
+ROW |37374 |30246 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |37375 |30246 |2 |6 | |0 | |
+ROW |37376 |30246 |3 |20 |10m |0 | |
+ROW |37377 |30247 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |37378 |30247 |2 |10 | |0 | |
+ROW |37379 |30248 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |37380 |30248 |2 |10 | |0 | |
+ROW |37381 |30249 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |37382 |30249 |2 |1 |8 |0 | |
+ROW |37383 |30249 |3 |10 | |0 | |
+ROW |37384 |30250 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |37385 |30250 |2 |1 |8 |0 | |
+ROW |37386 |30250 |3 |10 | |0 | |
+ROW |37387 |30251 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |37388 |30251 |2 |10 | |0 | |
+ROW |37389 |30252 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |37390 |30252 |2 |10 | |0 | |
+ROW |37391 |30253 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_1xx.first() |0 | |
+ROW |37392 |30253 |2 |10 | |0 | |
+ROW |37393 |30254 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_2xx.first() |0 | |
+ROW |37394 |30254 |2 |10 | |0 | |
+ROW |37395 |30255 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_3xx.first() |0 | |
+ROW |37396 |30255 |2 |10 | |0 | |
+ROW |37397 |30256 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |37398 |30256 |2 |10 | |0 | |
+ROW |37399 |30257 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |37400 |30257 |2 |10 | |0 | |
+ROW |37401 |30258 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |37402 |30259 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |37403 |30260 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |37404 |30261 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |37405 |30261 |2 |20 |1h |0 | |
+ROW |37406 |30262 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |37407 |30262 |2 |10 | |0 | |
+ROW |37408 |30263 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |37409 |30263 |2 |10 | |0 | |
+ROW |37410 |30264 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |37411 |30264 |2 |10 | |0 | |
+ROW |37412 |30265 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_4xx.first() |0 | |
+ROW |37413 |30265 |2 |10 | |0 | |
+ROW |37414 |30266 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].hrsp_5xx.first() |0 | |
+ROW |37415 |30266 |2 |10 | |0 | |
+ROW |37416 |30267 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |37417 |30268 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |37418 |30268 |2 |1 |0.001 |0 | |
+ROW |37419 |30269 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |37420 |30269 |2 |1 |0.001 |0 | |
+ROW |37421 |30270 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |37422 |30270 |2 |6 | |0 | |
+ROW |37423 |30270 |3 |20 |10m |0 | |
+ROW |37424 |30271 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |37425 |30271 |2 |10 | |0 | |
+ROW |37426 |30272 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |37427 |30272 |2 |10 | |0 | |
+ROW |37428 |30795 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |37429 |30795 |2 |10 | |0 | |
+ROW |37430 |30796 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |37431 |30796 |2 |10 | |0 | |
+ROW |37432 |30797 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |37433 |30797 |2 |10 | |0 | |
+ROW |37434 |30798 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |37435 |30799 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |37436 |30799 |2 |1 |0.001 |0 | |
+ROW |37437 |30800 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |37438 |30800 |2 |1 |0.001 |0 | |
+ROW |37439 |30801 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |37440 |30801 |2 |6 | |0 | |
+ROW |37441 |30801 |3 |20 |10m |0 | |
+ROW |37442 |30802 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |37443 |30802 |2 |10 | |0 | |
+ROW |37444 |30803 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |37445 |30803 |2 |10 | |0 | |
+ROW |37446 |30804 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bin.first() |0 | |
+ROW |37447 |30804 |2 |1 |8 |0 | |
+ROW |37448 |30804 |3 |10 | |0 | |
+ROW |37449 |30805 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].bout.first() |0 | |
+ROW |37450 |30805 |2 |1 |8 |0 | |
+ROW |37451 |30805 |3 |10 | |0 | |
+ROW |37452 |30806 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dreq.first() |0 | |
+ROW |37453 |30806 |2 |10 | |0 | |
+ROW |37454 |30807 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].ereq.first() |0 | |
+ROW |37455 |30807 |2 |10 | |0 | |
+ROW |37456 |30808 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rate.first() |0 | |
+ROW |37457 |30809 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].req_rate.first() |0 | |
+ROW |37458 |30810 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].scur.first() |0 | |
+ROW |37459 |30811 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].slim.first() |0 | |
+ROW |37460 |30811 |2 |20 |1h |0 | |
+ROW |37461 |30812 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].dresp.first() |0 | |
+ROW |37462 |30812 |2 |10 | |0 | |
+ROW |37463 |30813 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].econ.first() |0 | |
+ROW |37464 |30813 |2 |10 | |0 | |
+ROW |37465 |30814 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].eresp.first() |0 | |
+ROW |37466 |30814 |2 |10 | |0 | |
+ROW |37467 |30815 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qcur.first() |0 | |
+ROW |37468 |30816 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].qtime.first() |0 | |
+ROW |37469 |30816 |2 |1 |0.001 |0 | |
+ROW |37470 |30817 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].rtime.first() |0 | |
+ROW |37471 |30817 |2 |1 |0.001 |0 | |
+ROW |37472 |30818 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].status.first() |0 | |
+ROW |37473 |30818 |2 |6 | |0 | |
+ROW |37474 |30818 |3 |20 |10m |0 | |
+ROW |37475 |30819 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wredis.first() |0 | |
+ROW |37476 |30819 |2 |10 | |0 | |
+ROW |37477 |30820 |1 |12 |$.[?(@.pxname == '{#PXNAME}' && @.svname == '{#SVNAME}')].wretr.first() |0 | |
+ROW |37478 |30820 |2 |10 | |0 | |
+ROW |37479 |30611 |1 |20 |10m |0 | |
+ROW |37480 |30613 |1 |12 |$.cmd_flush |0 | |
+ROW |37481 |30613 |2 |10 | |0 | |
+ROW |37482 |30614 |1 |12 |$.bytes |0 | |
+ROW |37483 |30615 |1 |12 |$.uptime |0 | |
+ROW |37484 |30616 |1 |12 |$.total_items |0 | |
+ROW |37485 |30616 |2 |10 | |0 | |
+ROW |37486 |30617 |1 |12 |$.threads |0 | |
+ROW |37487 |30618 |1 |12 |$.get_misses |0 | |
+ROW |37488 |30618 |2 |10 | |0 | |
+ROW |37489 |30619 |1 |12 |$.get_hits |0 | |
+ROW |37490 |30619 |2 |10 | |0 | |
+ROW |37491 |30620 |1 |12 |$.evictions |0 | |
+ROW |37492 |30620 |2 |10 | |0 | |
+ROW |37493 |30621 |1 |12 |$.curr_items |0 | |
+ROW |37494 |30622 |1 |12 |$.bytes_written |0 | |
+ROW |37495 |30622 |2 |10 | |0 | |
+ROW |37496 |30623 |1 |12 |$.bytes_read |0 | |
+ROW |37497 |30623 |2 |10 | |0 | |
+ROW |37498 |30624 |1 |12 |$.pid |0 | |
+ROW |37499 |30624 |2 |20 |1d |0 | |
+ROW |37500 |30625 |1 |12 |$.cmd_get |0 | |
+ROW |37501 |30625 |2 |10 | |0 | |
+ROW |37502 |30626 |1 |12 |$.rusage_user |0 | |
+ROW |37503 |30627 |1 |12 |$.rusage_system |0 | |
+ROW |37504 |30628 |1 |12 |$.conn_yields |0 | |
+ROW |37505 |30628 |2 |10 | |0 | |
+ROW |37506 |30629 |1 |12 |$.connection_structures |0 | |
+ROW |37507 |30630 |1 |12 |$.total_connections |0 | |
+ROW |37508 |30630 |2 |10 | |0 | |
+ROW |37509 |30631 |1 |12 |$.listen_disabled_num |0 | |
+ROW |37510 |30631 |2 |10 | |0 | |
+ROW |37511 |30632 |1 |12 |$.max_connections |0 | |
+ROW |37512 |30632 |2 |20 |30m |0 | |
+ROW |37513 |30633 |1 |12 |$.curr_connections |0 | |
+ROW |37514 |30634 |1 |12 |$.limit_maxbytes |0 | |
+ROW |37515 |30634 |2 |20 |30m |0 | |
+ROW |37516 |30635 |1 |12 |$.cmd_set |0 | |
+ROW |37517 |30635 |2 |10 | |0 | |
+ROW |37518 |30636 |1 |12 |$.version |0 | |
+ROW |37519 |30636 |2 |20 |1d |0 | |
+ROW |37520 |28810 |1 |20 |10m |0 | |
+ROW |37521 |28811 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
+ROW |37522 |28812 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
+ROW |37523 |28813 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
+ROW |37524 |28814 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
+ROW |37525 |28815 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
+ROW |37526 |28815 |2 |10 | |0 | |
+ROW |37527 |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 |37528 |28816 |2 |10 | |0 | |
+ROW |37529 |28817 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
+ROW |37530 |28817 |2 |10 | |0 | |
+ROW |37531 |28818 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |37532 |28818 |2 |10 | |0 | |
+ROW |37533 |28819 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |37534 |28820 |1 |5 |Server: nginx/(.+)&bsn;\1 |0 | |
+ROW |37535 |28820 |2 |20 |1d |0 | |
+ROW |37536 |28822 |1 |20 |10m |0 | |
+ROW |37537 |28824 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |37538 |28825 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\3 |0 | |
+ROW |37539 |28825 |2 |10 | |0 | |
+ROW |37540 |28826 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\1 |0 | |
+ROW |37541 |28826 |2 |10 | |0 | |
+ROW |37542 |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 |37543 |28827 |2 |10 | |0 | |
+ROW |37544 |28828 |1 |5 |server accepts handled requests\s+([0-9]+) ([0-9]+) ([0-9]+)&bsn;\2 |0 | |
+ROW |37545 |28828 |2 |10 | |0 | |
+ROW |37546 |28829 |1 |5 |Active connections: ([0-9]+)&bsn;\1 |0 | |
+ROW |37547 |28830 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\1 |0 | |
+ROW |37548 |28831 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\3 |0 | |
+ROW |37549 |28832 |1 |5 |Reading: ([0-9]+) Writing: ([0-9]+) Waiting: ([0-9]+)&bsn;\2 |0 | |
+ROW |37550 |28833 |1 |5 |Server: nginx/(.+)&bsn;\1 |0 | |
+ROW |37551 |28833 |2 |20 |1d |0 | |
+ROW |37552 |29653 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |37553 |29654 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |37554 |29655 |1 |20 |10m |0 | |
+ROW |37555 |29661 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |37556 |29662 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |37557 |29662 |2 |12 |$.status |0 | |
+ROW |37558 |29662 |3 |6 | |2 |0 |
+ROW |37559 |29998 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |37560 |29999 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |37561 |29687 |1 |12 |$.mem_used |0 | |
+ROW |37562 |29688 |1 |12 |$.disk_free_alarm |0 | |
+ROW |37563 |29688 |2 |6 | |0 | |
+ROW |37564 |29691 |1 |12 |$.fd_used |0 | |
+ROW |37565 |29692 |1 |12 |$.uptime |0 | |
+ROW |37566 |29692 |2 |1 |0.001 |0 | |
+ROW |37567 |29693 |1 |12 |$.mem_alarm |0 | |
+ROW |37568 |29693 |2 |6 | |0 | |
+ROW |37569 |29694 |1 |12 |$.mem_limit |0 | |
+ROW |37570 |29695 |1 |12 |$.running |0 | |
+ROW |37571 |29695 |2 |6 | |0 | |
+ROW |37572 |29696 |1 |12 |$.partitions |0 | |
+ROW |37573 |29696 |2 |21 |return JSON.parse(value).length; |0 | |
+ROW |37574 |29697 |1 |12 |$.sockets_total |0 | |
+ROW |37575 |29698 |1 |12 |$.disk_free |0 | |
+ROW |37576 |29699 |1 |12 |$.run_queue |0 | |
+ROW |37577 |29700 |1 |12 |$.disk_free_limit |0 | |
+ROW |37578 |29701 |1 |12 |$.sockets_used |0 | |
+ROW |37579 |30000 |1 |12 |$.message_stats.redeliver |2 |0 |
+ROW |37580 |30001 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
+ROW |37581 |30002 |1 |12 |$.message_stats.return_unroutable |2 |0 |
+ROW |37582 |30003 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
+ROW |37583 |30004 |1 |12 |$.message_stats.publish_out |2 |0 |
+ROW |37584 |30005 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
+ROW |37585 |30006 |1 |12 |$.message_stats.publish_in |2 |0 |
+ROW |37586 |30007 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
+ROW |37587 |30008 |1 |12 |$.message_stats.publish |2 |0 |
+ROW |37588 |30009 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
+ROW |37589 |30010 |1 |12 |$.message_stats.deliver_get |2 |0 |
+ROW |37590 |30011 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
+ROW |37591 |30012 |1 |12 |$.message_stats.confirm |2 |0 |
+ROW |37592 |30013 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
+ROW |37593 |30014 |1 |12 |$.message_stats.ack |2 |0 |
+ROW |37594 |30015 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
+ROW |37595 |30016 |1 |12 |$.queue_totals.messages_ready |0 | |
+ROW |37596 |30017 |1 |12 |$.queue_totals.messages |0 | |
+ROW |37597 |30018 |1 |12 |$.object_totals.exchanges |0 | |
+ROW |37598 |30019 |1 |12 |$.object_totals.consumers |0 | |
+ROW |37599 |30020 |1 |12 |$.object_totals.queues |0 | |
+ROW |37600 |30021 |1 |12 |$.object_totals.channels |0 | |
+ROW |37601 |30022 |1 |12 |$.object_totals.connections |0 | |
+ROW |37602 |30023 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
+ROW |37603 |30024 |1 |12 |$.management_version |0 | |
+ROW |37604 |30024 |2 |20 |1d |0 | |
+ROW |37605 |30025 |1 |12 |$.rabbitmq_version |0 | |
+ROW |37606 |30025 |2 |20 |1d |0 | |
+ROW |37607 |29720 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
+ROW |37608 |29721 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
+ROW |37609 |29722 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
+ROW |37610 |29723 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |37611 |29724 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
+ROW |37612 |29725 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |37613 |29726 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
+ROW |37614 |29727 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
+ROW |37615 |29728 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |37616 |29729 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
+ROW |37617 |29730 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
+ROW |37618 |29731 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
+ROW |37619 |29732 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
+ROW |37620 |29733 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
+ROW |37621 |29734 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
+ROW |37622 |29735 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
+ROW |37623 |29736 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
+ROW |37624 |29737 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |37625 |30027 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
+ROW |37626 |30028 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |37627 |30029 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
+ROW |37628 |30030 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
+ROW |37629 |30031 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
+ROW |37630 |30032 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |37631 |30033 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
+ROW |37632 |30034 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |37633 |30035 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
+ROW |37634 |30036 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
+ROW |37635 |30037 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
+ROW |37636 |30038 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
+ROW |37637 |30039 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
+ROW |37638 |30040 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
+ROW |37639 |30041 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
+ROW |37640 |30042 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |37641 |29742 |1 |20 |10m |0 | |
+ROW |37642 |29744 |1 |12 |$.status |0 | |
+ROW |37643 |29744 |2 |6 | |2 |0 |
+ROW |37644 |29746 |1 |12 |$.message_stats.redeliver |2 |0 |
+ROW |37645 |29747 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
+ROW |37646 |29748 |1 |12 |$.message_stats.return_unroutable |2 |0 |
+ROW |37647 |29749 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
+ROW |37648 |29750 |1 |12 |$.message_stats.publish_out |2 |0 |
+ROW |37649 |29751 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
+ROW |37650 |29752 |1 |12 |$.message_stats.publish_in |2 |0 |
+ROW |37651 |29753 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
+ROW |37652 |29754 |1 |12 |$.message_stats.publish |2 |0 |
+ROW |37653 |29755 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
+ROW |37654 |29756 |1 |12 |$.message_stats.deliver_get |2 |0 |
+ROW |37655 |29757 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
+ROW |37656 |29758 |1 |12 |$.message_stats.confirm |2 |0 |
+ROW |37657 |29759 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
+ROW |37658 |29760 |1 |12 |$.message_stats.ack |2 |0 |
+ROW |37659 |29761 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
+ROW |37660 |29762 |1 |12 |$.queue_totals.messages_ready |0 | |
+ROW |37661 |29763 |1 |12 |$.queue_totals.messages |0 | |
+ROW |37662 |29764 |1 |12 |$.object_totals.exchanges |0 | |
+ROW |37663 |29765 |1 |12 |$.object_totals.consumers |0 | |
+ROW |37664 |29766 |1 |12 |$.object_totals.queues |0 | |
+ROW |37665 |29767 |1 |12 |$.object_totals.channels |0 | |
+ROW |37666 |29768 |1 |12 |$.object_totals.connections |0 | |
+ROW |37667 |29769 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
+ROW |37668 |29771 |1 |12 |$.partitions |0 | |
+ROW |37669 |29771 |2 |21 |return JSON.parse(value).length; |0 | |
+ROW |37670 |29772 |1 |12 |$.uptime |0 | |
+ROW |37671 |29772 |2 |1 |0.001 |0 | |
+ROW |37672 |29773 |1 |12 |$.disk_free_alarm |0 | |
+ROW |37673 |29773 |2 |6 | |0 | |
+ROW |37674 |29774 |1 |12 |$.mem_alarm |0 | |
+ROW |37675 |29774 |2 |6 | |0 | |
+ROW |37676 |29775 |1 |12 |$.running |0 | |
+ROW |37677 |29775 |2 |6 | |0 | |
+ROW |37678 |29776 |1 |12 |$.sockets_used |0 | |
+ROW |37679 |29777 |1 |12 |$.sockets_total |0 | |
+ROW |37680 |29779 |1 |12 |$.run_queue |0 | |
+ROW |37681 |29780 |1 |12 |$.mem_used |0 | |
+ROW |37682 |29781 |1 |12 |$.disk_free_limit |0 | |
+ROW |37683 |29782 |1 |12 |$.disk_free |0 | |
+ROW |37684 |29783 |1 |12 |$.fd_used |0 | |
+ROW |37685 |29784 |1 |12 |$.mem_limit |0 | |
+ROW |37686 |30044 |1 |12 |$.management_version |0 | |
+ROW |37687 |30044 |2 |20 |1d |0 | |
+ROW |37688 |30045 |1 |12 |$.rabbitmq_version |0 | |
+ROW |37689 |30045 |2 |20 |1d |0 | |
+ROW |37690 |29787 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
+ROW |37691 |29788 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |37692 |29789 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
+ROW |37693 |29790 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
+ROW |37694 |29791 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
+ROW |37695 |29792 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |37696 |29793 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
+ROW |37697 |29794 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |37698 |29795 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
+ROW |37699 |29796 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
+ROW |37700 |29797 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
+ROW |37701 |29798 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
+ROW |37702 |29799 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
+ROW |37703 |29800 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
+ROW |37704 |29801 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
+ROW |37705 |29802 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |37706 |29803 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
+ROW |37707 |29804 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
+ROW |37708 |29805 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
+ROW |37709 |29806 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |37710 |29807 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
+ROW |37711 |29808 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |37712 |29809 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
+ROW |37713 |29810 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
+ROW |37714 |29811 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |37715 |29812 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
+ROW |37716 |29813 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
+ROW |37717 |29814 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
+ROW |37718 |29815 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
+ROW |37719 |29816 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
+ROW |37720 |29817 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
+ROW |37721 |29818 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
+ROW |37722 |29819 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
+ROW |37723 |29820 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |37724 |28501 |1 |10 | |0 | |
+ROW |37725 |28514 |1 |10 | |0 | |
+ROW |37726 |28517 |1 |10 | |0 | |
+ROW |37727 |28519 |1 |10 | |0 | |
+ROW |37728 |28520 |1 |1 |0.001 |0 | |
+ROW |37729 |28521 |1 |10 | |0 | |
+ROW |37730 |28522 |1 |10 | |0 | |
+ROW |37731 |28523 |1 |10 | |0 | |
+ROW |37732 |28524 |1 |10 | |0 | |
+ROW |37733 |28525 |1 |1 |0.001 |0 | |
+ROW |37734 |28526 |1 |10 | |0 | |
+ROW |37735 |28527 |1 |10 | |0 | |
+ROW |37736 |28528 |1 |10 | |0 | |
+ROW |37737 |28529 |1 |10 | |0 | |
+ROW |37738 |28530 |1 |1 |0.001 |0 | |
+ROW |37739 |28531 |1 |10 | |0 | |
+ROW |37740 |26876 |1 |1 |0.001 |0 | |
+ROW |37741 |26881 |1 |1 |100 |0 | |
+ROW |37742 |26884 |1 |10 | |0 | |
+ROW |37743 |26885 |1 |1 |0.001 |0 | |
+ROW |37744 |26886 |1 |1 |0.001 |0 | |
+ROW |37745 |26887 |1 |10 | |0 | |
+ROW |37746 |26888 |1 |1 |0.001 |0 | |
+ROW |37747 |26889 |1 |10 | |0 | |
+ROW |37748 |26890 |1 |1 |0.001 |0 | |
+ROW |37749 |26894 |1 |1 |0.001 |0 | |
+ROW |37750 |26895 |1 |10 | |0 | |
+ROW |37751 |26896 |1 |10 | |0 | |
+ROW |37752 |26897 |1 |1 |0.001 |0 | |
+ROW |37753 |26905 |1 |1 |0.001 |0 | |
+ROW |37754 |26906 |1 |10 | |0 | |
+ROW |37755 |28586 |1 |12 |$.queue |0 | |
+ROW |37756 |28587 |1 |12 |$.queue |0 | |
+ROW |37757 |28588 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
+ROW |37758 |28589 |1 |12 |$.data.wcache.values.uint |0 | |
+ROW |37759 |28589 |2 |10 | |0 | |
+ROW |37760 |28590 |1 |12 |$.data.wcache.values.text |0 | |
+ROW |37761 |28590 |2 |10 | |0 | |
+ROW |37762 |28591 |1 |12 |$.data.wcache.values.str |0 | |
+ROW |37763 |28591 |2 |10 | |0 | |
+ROW |37764 |28592 |1 |12 |$.data.wcache.values['not supported'] |0 | |
+ROW |37765 |28592 |2 |10 | |0 | |
+ROW |37766 |28593 |1 |12 |$.data.wcache.values.log |0 | |
+ROW |37767 |28593 |2 |10 | |0 | |
+ROW |37768 |28594 |1 |12 |$.data.wcache.values.float |0 | |
+ROW |37769 |28594 |2 |10 | |0 | |
+ROW |37770 |28595 |1 |12 |$.data.wcache.values.all |0 | |
+ROW |37771 |28595 |2 |10 | |0 | |
+ROW |37772 |28596 |1 |12 |$.data.wcache.index.pused |0 | |
+ROW |37773 |28597 |1 |12 |$.data.wcache.history.pused |0 | |
+ROW |37774 |28598 |1 |12 |$.data.vmware.pused |0 | |
+ROW |37775 |28599 |1 |12 |$.data.rcache.pused |0 | |
+ROW |37776 |28600 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
+ROW |37777 |28601 |1 |12 |$.data.process['data sender'].busy.avg |0 | |
+ROW |37778 |28602 |1 |12 |$.data.process.trapper.busy.avg |0 | |
+ROW |37779 |28603 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
+ROW |37780 |28604 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
+ROW |37781 |28605 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
+ROW |37782 |28606 |1 |12 |$.data.process.poller.busy.avg |0 | |
+ROW |37783 |28607 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
+ROW |37784 |28608 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
+ROW |37785 |28609 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
+ROW |37786 |28610 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
+ROW |37787 |28611 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
+ROW |37788 |28612 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
+ROW |37789 |28613 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
+ROW |37790 |28614 |1 |12 |$.data.process['heartbeat sender'].busy.avg |0 | |
+ROW |37791 |28615 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
+ROW |37792 |28616 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
+ROW |37793 |28540 |1 |12 |$.queue |0 | |
+ROW |37794 |28541 |1 |12 |$.queue |0 | |
+ROW |37795 |28542 |1 |12 |$.data.wcache.index.pused |0 | |
+ROW |37796 |28543 |1 |12 |$.data.rcache.pused |0 | |
+ROW |37797 |28544 |1 |12 |$.data.vcache.buffer.pused |0 | |
+ROW |37798 |28545 |1 |12 |$.data.vcache.cache.hits |0 | |
+ROW |37799 |28545 |2 |10 | |0 | |
+ROW |37800 |28546 |1 |12 |$.data.vcache.cache.misses |0 | |
+ROW |37801 |28546 |2 |10 | |0 | |
+ROW |37802 |28547 |1 |12 |$.data.vcache.cache.mode |0 | |
+ROW |37803 |28548 |1 |12 |$.data.vmware.pused |0 | |
+ROW |37804 |28549 |1 |12 |$.data.wcache.history.pused |0 | |
+ROW |37805 |28550 |1 |12 |$.data.wcache.values.all |0 | |
+ROW |37806 |28550 |2 |10 | |0 | |
+ROW |37807 |28551 |1 |12 |$.data.wcache.trend.pused |0 | |
+ROW |37808 |28552 |1 |12 |$.data.process['unreachable poller'].busy.avg |0 | |
+ROW |37809 |28553 |1 |12 |$.data.wcache.values.float |0 | |
+ROW |37810 |28553 |2 |10 | |0 | |
+ROW |37811 |28554 |1 |12 |$.data.wcache.values.log |0 | |
+ROW |37812 |28554 |2 |10 | |0 | |
+ROW |37813 |28555 |1 |12 |$.data.wcache.values['not supported'] |0 | |
+ROW |37814 |28555 |2 |10 | |0 | |
+ROW |37815 |28556 |1 |12 |$.data.wcache.values.str |0 | |
+ROW |37816 |28556 |2 |10 | |0 | |
+ROW |37817 |28557 |1 |12 |$.data.wcache.values.text |0 | |
+ROW |37818 |28557 |2 |10 | |0 | |
+ROW |37819 |28558 |1 |12 |$.data.wcache.values.uint |0 | |
+ROW |37820 |28558 |2 |10 | |0 | |
+ROW |37821 |28559 |1 |12 |$.data.process['vmware collector'].busy.avg |0 | |
+ROW |37822 |28560 |1 |12 |$.data.preprocessing_queue |0 | |
+ROW |37823 |28561 |1 |12 |$.data.process.alerter.busy.avg |0 | |
+ROW |37824 |28562 |1 |12 |$.data.process['ipmi manager'].busy.avg |0 | |
+ROW |37825 |28563 |1 |12 |$.data.process['alert manager'].busy.avg |0 | |
+ROW |37826 |28564 |1 |12 |$.data.process['configuration syncer'].busy.avg |0 | |
+ROW |37827 |28565 |1 |12 |$.data.process.discoverer.busy.avg |0 | |
+ROW |37828 |28566 |1 |12 |$.data.process.escalator.busy.avg |0 | |
+ROW |37829 |28567 |1 |12 |$.data.process['history syncer'].busy.avg |0 | |
+ROW |37830 |28568 |1 |12 |$.data.process.housekeeper.busy.avg |0 | |
+ROW |37831 |28569 |1 |12 |$.data.process['http poller'].busy.avg |0 | |
+ROW |37832 |28570 |1 |12 |$.data.process['icmp pinger'].busy.avg |0 | |
+ROW |37833 |28571 |1 |12 |$.data.process['ipmi poller'].busy.avg |0 | |
+ROW |37834 |28572 |1 |12 |$.data.process.timer.busy.avg |0 | |
+ROW |37835 |28573 |1 |12 |$.data.process['java poller'].busy.avg |0 | |
+ROW |37836 |28574 |1 |12 |$.data.process.poller.busy.avg |0 | |
+ROW |37837 |28575 |1 |12 |$.data.process['preprocessing manager'].busy.avg |0 | |
+ROW |37838 |28576 |1 |12 |$.data.process['preprocessing worker'].busy.avg |0 | |
+ROW |37839 |28577 |1 |12 |$.data.process['proxy poller'].busy.avg |0 | |
+ROW |37840 |28578 |1 |12 |$.data.process['self-monitoring'].busy.avg |0 | |
+ROW |37841 |28579 |1 |12 |$.data.process['snmp trapper'].busy.avg |0 | |
+ROW |37842 |28580 |1 |12 |$.data.process['task manager'].busy.avg |0 | |
+ROW |37843 |28581 |1 |12 |$.data.process.trapper.busy.avg |0 | |
+ROW |37844 |28582 |1 |12 |$.data.process['lld manager'].busy.avg |0 | |
+ROW |37845 |28583 |1 |12 |$.data.process['lld worker'].busy.avg |0 | |
+ROW |37846 |28584 |1 |12 |$.data.lld_queue |0 | |
+ROW |37847 |29821 |1 |12 |$.data.process['alert syncer'].busy.avg |0 | |
+ROW |37848 |10067 |1 |10 | |0 | |
+ROW |37849 |10068 |1 |10 | |0 | |
+ROW |37850 |10069 |1 |10 | |0 | |
+ROW |37851 |10070 |1 |10 | |0 | |
+ROW |37852 |10071 |1 |10 | |0 | |
+ROW |37853 |10072 |1 |10 | |0 | |
+ROW |37854 |23340 |1 |10 | |0 | |
+ROW |37855 |10061 |1 |10 | |0 | |
+ROW |37856 |10062 |1 |10 | |0 | |
+ROW |37857 |10063 |1 |10 | |0 | |
+ROW |37858 |10064 |1 |10 | |0 | |
+ROW |37859 |10065 |1 |10 | |0 | |
+ROW |37860 |10066 |1 |10 | |0 | |
+ROW |37861 |22187 |1 |10 | |0 | |
+ROW |37862 |22196 |1 |10 | |0 | |
+ROW |37863 |22199 |1 |10 | |0 | |
+ROW |37864 |10073 |1 |10 | |0 | |
+ROW |37865 |10074 |1 |10 | |0 | |
+ROW |37866 |10075 |1 |10 | |0 | |
+ROW |37867 |10076 |1 |10 | |0 | |
+ROW |37868 |10077 |1 |10 | |0 | |
+ROW |37869 |10078 |1 |10 | |0 | |
+ROW |37870 |23277 |1 |10 | |0 | |
+ROW |37871 |23625 |1 |10 | |0 | |
+ROW |37872 |23628 |1 |10 | |0 | |
+ROW |37873 |22920 |1 |10 | |0 | |
+ROW |37874 |22924 |1 |10 | |0 | |
+ROW |37875 |22945 |1 |10 | |0 | |
+ROW |37876 |22945 |2 |1 |8 |0 | |
+ROW |37877 |22946 |1 |10 | |0 | |
+ROW |37878 |22946 |2 |1 |8 |0 | |
+ROW |37879 |22880 |1 |10 | |0 | |
+ROW |37880 |22884 |1 |10 | |0 | |
+ROW |37881 |23073 |1 |10 | |0 | |
+ROW |37882 |23073 |2 |1 |8 |0 | |
+ROW |37883 |23074 |1 |10 | |0 | |
+ROW |37884 |23074 |2 |1 |8 |0 | |
+ROW |37885 |22985 |1 |10 | |0 | |
+ROW |37886 |22985 |2 |1 |8 |0 | |
+ROW |37887 |22986 |1 |10 | |0 | |
+ROW |37888 |22986 |2 |1 |8 |0 | |
+ROW |37889 |23077 |1 |10 | |0 | |
+ROW |37890 |23077 |2 |1 |8 |0 | |
+ROW |37891 |23078 |1 |10 | |0 | |
+ROW |37892 |23078 |2 |1 |8 |0 | |
+ROW |37893 |22840 |1 |10 | |0 | |
+ROW |37894 |22844 |1 |10 | |0 | |
+ROW |37895 |23075 |1 |10 | |0 | |
+ROW |37896 |23075 |2 |1 |8 |0 | |
+ROW |37897 |23076 |1 |10 | |0 | |
+ROW |37898 |23076 |2 |1 |8 |0 | |
+ROW |37899 |23000 |1 |10 | |0 | |
+ROW |37900 |23004 |1 |10 | |0 | |
+ROW |37901 |23025 |1 |10 | |0 | |
+ROW |37902 |23025 |2 |1 |8 |0 | |
+ROW |37903 |23026 |1 |10 | |0 | |
+ROW |37904 |23026 |2 |1 |8 |0 | |
+ROW |37905 |30821 |1 |5 |Ok\.&bsn;1 |2 |0 |
+ROW |37906 |30821 |2 |20 |10m |0 | |
+ROW |37907 |30822 |1 |20 |1d |0 | |
+ROW |37908 |30823 |1 |12 |$.data |0 | |
+ROW |37909 |30824 |1 |12 |$.data |0 | |
+ROW |37910 |30825 |1 |12 |$.data |0 | |
+ROW |37911 |30826 |1 |12 |$.data |0 | |
+ROW |37912 |30828 |1 |12 |$.data |0 | |
+ROW |37913 |30829 |1 |12 |$.data |0 | |
+ROW |37914 |30829 |2 |20 |1h |0 | |
+ROW |37915 |30830 |1 |12 |$.data |0 | |
+ROW |37916 |30831 |1 |12 |$[?(@.metric == "Write")].value.first() |0 | |
+ROW |37917 |30832 |1 |12 |$[?(@.metric == "ReplicasSumQueueSize")].value.first() |0 | |
+ROW |37918 |30833 |1 |12 |$[?(@.data.event == "Query")].value.first() |2 |0 |
+ROW |37919 |30833 |2 |10 | |0 | |
+ROW |37920 |30834 |1 |12 |$[?(@.metric == "Read")].value.first() |0 | |
+ROW |37921 |30835 |1 |12 |$[?(@.event == "ReadCompressedBytes")].value.first() |2 |0 |
+ROW |37922 |30835 |2 |10 | |0 | |
+ROW |37923 |30836 |1 |12 |$[?(@.event == "ZooKeeperWaitMicroseconds")].value.first() |2 |0 |
+ROW |37924 |30836 |2 |1 |0.000001 |0 | |
+ROW |37925 |30836 |3 |10 | |0 | |
+ROW |37926 |30837 |1 |12 |$[?(@.metric == "ReplicasMaxAbsoluteDelay")].value.first() |0 | |
+ROW |37927 |30838 |1 |12 |$[?(@.metric == "ReadonlyReplica")].value.first() |0 | |
+ROW |37928 |30839 |1 |12 |$[?(@.metric == "Revision")].value.first() |0 | |
+ROW |37929 |30840 |1 |12 |$[?(@.event == "ZooKeeperOtherExceptions")].value.first() |2 |0 |
+ROW |37930 |30840 |2 |10 | |0 | |
+ROW |37931 |30841 |1 |12 |$[?(@.event == "SelectQuery")].value.first() |2 |0 |
+ROW |37932 |30841 |2 |10 | |0 | |
+ROW |37933 |30842 |1 |12 |$[?(@.event == "ZooKeeperUserExceptions")].value.first() |2 |0 |
+ROW |37934 |30842 |2 |10 | |0 | |
+ROW |37935 |30843 |1 |12 |$[?(@.metric == "ZooKeeperSession")].value.first() |0 | |
+ROW |37936 |30844 |1 |12 |$[?(@.metric == "ZooKeeperRequest")].value.first() |0 | |
+ROW |37937 |30845 |1 |12 |$[?(@.event == "ZooKeeperHardwareExceptions")].value.first() |2 |0 |
+ROW |37938 |30845 |2 |10 | |0 | |
+ROW |37939 |30846 |1 |12 |$[?(@.metric == "Uptime")].value.first() |0 | |
+ROW |37940 |30847 |1 |12 |$[?(@.metric == "Query")].value.first() |0 | |
+ROW |37941 |30848 |1 |12 |$[?(@.metric == "DistributedSend")].value.first() |0 | |
+ROW |37942 |30849 |1 |12 |$[?(@.metric == "HTTPConnection")].value.first() |0 | |
+ROW |37943 |30850 |1 |12 |$[?(@.metric == "jemalloc.allocated")].value.first() |0 | |
+ROW |37944 |30851 |1 |12 |$[?(@.metric == "InterserverConnection")].value.first() |0 | |
+ROW |37945 |30852 |1 |12 |$[?(@.metric == "MySQLConnection")].value.first() |2 |0 |
+ROW |37946 |30853 |1 |12 |$[?(@.metric == "TCPConnection")].value.first() |0 | |
+ROW |37947 |30854 |1 |12 |$[?(@.metric == "DistributedFilesToInsert")].value.first() |0 | |
+ROW |37948 |30855 |1 |12 |$[?(@.metric == "DistributedConnectionFailAtAll")].value.first() |2 |0 |
+ROW |37949 |30855 |2 |10 | |0 | |
+ROW |37950 |30856 |1 |12 |$[?(@.metric == "DistributedConnectionFailTry")].value.first() |2 |0 |
+ROW |37951 |30856 |2 |10 | |0 | |
+ROW |37952 |30857 |1 |12 |$[?(@.event == "InsertQuery")].value.first() |2 |0 |
+ROW |37953 |30857 |2 |10 | |0 | |
+ROW |37954 |30858 |1 |12 |$[?(@.metric == "DelayedInserts")].value.first() |0 | |
+ROW |37955 |30859 |1 |12 |$[?(@.event == "InsertedBytes")].value.first() |2 |0 |
+ROW |37956 |30859 |2 |10 | |0 | |
+ROW |37957 |30860 |1 |12 |$[?(@.event == "InsertedRows")].value.first() |2 |0 |
+ROW |37958 |30860 |2 |10 | |0 | |
+ROW |37959 |30861 |1 |12 |$[?(@.metric == "jemalloc.mapped")].value.first() |0 | |
+ROW |37960 |30862 |1 |12 |$[?(@.event == "NetworkErrors")].value.first() |2 |0 |
+ROW |37961 |30862 |2 |10 | |0 | |
+ROW |37962 |30863 |1 |12 |$[?(@.metric == "jemalloc.resident")].value.first() |0 | |
+ROW |37963 |30864 |1 |12 |$[?(@.metric == "MaxPartCountForPartition")].value.first() |0 | |
+ROW |37964 |30865 |1 |12 |$[?(@.metric == "MemoryTracking")].value.first() |0 | |
+ROW |37965 |30866 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundProcessingPool")].value.first() |0 | |
+ROW |37966 |30867 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundMoveProcessingPool")].value.first() |2 |0 |
+ROW |37967 |30868 |1 |12 |$[?(@.metric == "MemoryTrackingForMerges")].value.first() |0 | |
+ROW |37968 |30869 |1 |12 |$[?(@.metric == "MemoryTrackingInBackgroundSchedulePool")].value.first() |0 | |
+ROW |37969 |30870 |1 |12 |$[?(@.event == "MergedUncompressedBytes")].value.first() |2 |0 |
+ROW |37970 |30870 |2 |10 | |0 | |
+ROW |37971 |30871 |1 |12 |$[?(@.event == "MergedRows")].value.first() |2 |0 |
+ROW |37972 |30871 |2 |10 | |0 | |
+ROW |37973 |30872 |1 |12 |$[?(@.metric == "Merge")].value.first() |0 | |
+ROW |37974 |30873 |1 |12 |$[?(@.metric == "ZooKeeperWatch")].value.first() |0 | |
+ROW |37975 |30877 |1 |12 |$[?(@.name == "{#NAME}")].bytes_allocated.first() |0 | |
+ROW |37976 |30878 |1 |12 |$[?(@.name == "{#NAME}")].element_count.first() |0 | |
+ROW |37977 |30879 |1 |12 |$[?(@.name == "{#NAME}")].bytes_allocated.first() |0 | |
+ROW |37978 |30879 |2 |1 |100 |0 | |
+ROW |37979 |30880 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].active_replicas.first() |0 | |
+ROW |37980 |30881 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].future_parts.first() |0 | |
+ROW |37981 |30882 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].inserts_in_queue.first() |0 | |
+ROW |37982 |30883 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].is_readonly.first() |0 | |
+ROW |37983 |30884 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].is_session_expired.first() |0 | |
+ROW |37984 |30885 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].replica_lag.first() |0 | |
+ROW |37985 |30886 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].log_max_index.first() |0 | |
+ROW |37986 |30887 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].log_pointer.first() |0 | |
+ROW |37987 |30888 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].merges_in_queue.first() |0 | |
+ROW |37988 |30889 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].parts_to_check.first() |0 | |
+ROW |37989 |30890 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].queue_size.first() |0 | |
+ROW |37990 |30891 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].total_replicas.first() |0 | |
+ROW |37991 |30892 |1 |12 |$[?(@.database == "{#DB}")].bytes.sum() |0 | |
+ROW |37992 |30893 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].bytes.first() |0 | |
+ROW |37993 |30894 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].parts.first() |0 | |
+ROW |37994 |30895 |1 |12 |$[?(@.database == "{#DB}" && @.table == "{#TABLE}")].rows.first() |0 | |
+ROW |37995 |30431 |1 |5 |(Server version)\s+(.+)&bsn;\2 |0 | |
+ROW |37996 |30431 |2 |20 |1d |0 | |
+ROW |37997 |30432 |1 |21 |return value.indexOf('is alive') !== -1 ? 1 : 0; |0 | |
+ROW |37998 |30432 |2 |20 |10m |0 | |
+ROW |37999 |30436 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
+ROW |38000 |30437 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_reads']/field[@name='Value']/text() |0 | |
+ROW |38001 |30437 |2 |10 | |0 | |
+ROW |38002 |30438 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time']/field[@name='Value']/text() |0 | |
+ROW |38003 |30438 |2 |1 |0.001 |0 | |
+ROW |38004 |30438 |3 |20 |1h |0 | |
+ROW |38005 |30439 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_time_max']/field[@name='Value']/text() |0 | |
+ROW |38006 |30439 |2 |1 |0.001 |0 | |
+ROW |38007 |30439 |3 |20 |1h |0 | |
+ROW |38008 |30440 |1 |11 |/resultset/row[field/text()='Innodb_row_lock_waits']/field[@name='Value']/text() |0 | |
+ROW |38009 |30441 |1 |11 |/resultset/row[field/text()='Max_used_connections']/field[@name='Value']/text() |0 | |
+ROW |38010 |30441 |2 |20 |1h |0 | |
+ROW |38011 |30442 |1 |11 |/resultset/row[field/text()='Queries']/field[@name='Value']/text() |0 | |
+ROW |38012 |30442 |2 |10 | |0 | |
+ROW |38013 |30443 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
+ROW |38014 |30444 |1 |11 |/resultset/row[field/text()='Questions']/field[@name='Value']/text() |0 | |
+ROW |38015 |30444 |2 |10 | |0 | |
+ROW |38016 |30445 |1 |11 |/resultset/row[field/text()='Slow_queries']/field[@name='Value']/text() |0 | |
+ROW |38017 |30445 |2 |10 | |0 | |
+ROW |38018 |30446 |1 |11 |/resultset/row[field/text()='Threads_cached']/field[@name='Value']/text() |0 | |
+ROW |38019 |30447 |1 |11 |/resultset/row[field/text()='Threads_connected']/field[@name='Value']/text() |0 | |
+ROW |38020 |30448 |1 |11 |/resultset/row[field/text()='Threads_created']/field[@name='Value']/text() |0 | |
+ROW |38021 |30449 |1 |11 |/resultset/row[field/text()='Threads_running']/field[@name='Value']/text() |0 | |
+ROW |38022 |30450 |1 |11 |/resultset/row[field/text()='Uptime']/field[@name='Value']/text() |0 | |
+ROW |38023 |30451 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_read_requests']/field[@name='Value']/text() |0 | |
+ROW |38024 |30451 |2 |10 | |0 | |
+ROW |38025 |30452 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_total']/field[@name='Value']/text() |0 | |
+ROW |38026 |30452 |2 |20 |1h |0 | |
+ROW |38027 |30453 |1 |11 |/resultset/row[field/text()='Bytes_received']/field[@name='Value']/text() |0 | |
+ROW |38028 |30453 |2 |10 | |0 | |
+ROW |38029 |30454 |1 |11 |/resultset/row[field/text()='Connection_errors_max_connections']/field[@name='Value']/text() |0 | |
+ROW |38030 |30454 |2 |10 | |0 | |
+ROW |38031 |30455 |1 |11 |/resultset/row[field/text()='Bytes_sent']/field[@name='Value']/text() |0 | |
+ROW |38032 |30455 |2 |10 | |0 | |
+ROW |38033 |30456 |1 |11 |/resultset/row[field/text()='Com_delete']/field[@name='Value']/text() |0 | |
+ROW |38034 |30456 |2 |10 | |0 | |
+ROW |38035 |30457 |1 |11 |/resultset/row[field/text()='Com_insert']/field[@name='Value']/text() |0 | |
+ROW |38036 |30457 |2 |10 | |0 | |
+ROW |38037 |30458 |1 |11 |/resultset/row[field/text()='Com_select']/field[@name='Value']/text() |0 | |
+ROW |38038 |30458 |2 |10 | |0 | |
+ROW |38039 |30459 |1 |11 |/resultset/row[field/text()='Com_update']/field[@name='Value']/text() |0 | |
+ROW |38040 |30459 |2 |10 | |0 | |
+ROW |38041 |30460 |1 |11 |/resultset/row[field/text()='Connection_errors_accept']/field[@name='Value']/text() |0 | |
+ROW |38042 |30460 |2 |10 | |0 | |
+ROW |38043 |30461 |1 |11 |/resultset/row[field/text()='Connection_errors_internal']/field[@name='Value']/text() |0 | |
+ROW |38044 |30461 |2 |10 | |0 | |
+ROW |38045 |30462 |1 |11 |/resultset/row[field/text()='Connection_errors_peer_address']/field[@name='Value']/text() |0 | |
+ROW |38046 |30462 |2 |10 | |0 | |
+ROW |38047 |30463 |1 |11 |/resultset/row[field/text()='Innodb_buffer_pool_pages_free']/field[@name='Value']/text() |0 | |
+ROW |38048 |30464 |1 |11 |/resultset/row[field/text()='Connection_errors_select']/field[@name='Value']/text() |0 | |
+ROW |38049 |30464 |2 |10 | |0 | |
+ROW |38050 |30465 |1 |11 |/resultset/row[field/text()='Connection_errors_tcpwrap']/field[@name='Value']/text() |0 | |
+ROW |38051 |30465 |2 |10 | |0 | |
+ROW |38052 |30466 |1 |11 |/resultset/row[field/text()='Connections']/field[@name='Value']/text() |0 | |
+ROW |38053 |30466 |2 |10 | |0 | |
+ROW |38054 |30467 |1 |11 |/resultset/row[field/text()='Created_tmp_disk_tables']/field[@name='Value']/text() |0 | |
+ROW |38055 |30468 |1 |11 |/resultset/row[field/text()='Created_tmp_files']/field[@name='Value']/text() |0 | |
+ROW |38056 |30469 |1 |11 |/resultset/row[field/text()='Created_tmp_tables']/field[@name='Value']/text() |0 | |
+ROW |38057 |30470 |1 |11 |/resultset/row[field/text()='Aborted_connects']/field[@name='Value']/text() |0 | |
+ROW |38058 |30470 |2 |10 | |0 | |
+ROW |38059 |30471 |1 |11 |/resultset/row[field/text()='Aborted_clients']/field[@name='Value']/text() |0 | |
+ROW |38060 |30471 |2 |10 | |0 | |
+ROW |38061 |30472 |1 |21 |return JSON.stringify(value.split("\n").map(function (name) {&bsn; return ({"{#DBNAME}": name});&bsn;})); |0 | |
+ROW |38062 |30472 |2 |20 |1d |0 | |
+ROW |38063 |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 |38064 |30473 |2 |20 |1d |0 | |
+ROW |38065 |30474 |1 |20 |1h |0 | |
+ROW |38066 |30476 |1 |11 |/resultset/row/field[@name='Seconds_Behind_Master']/text() |0 | |
+ROW |38067 |30476 |2 |20 |1h |0 | |
+ROW |38068 |30476 |3 |15 |null |3 |Replication is not performed.|
+ROW |38069 |30477 |1 |11 |/resultset/row/field[@name='Slave_IO_Running']/text() |0 | |
+ROW |38070 |30477 |2 |20 |1h |0 | |
+ROW |38071 |30478 |1 |11 |/resultset/row/field[@name='Slave_SQL_Running']/text() |0 | |
+ROW |38072 |30478 |2 |20 |1h |0 | |
+ROW |38073 |30637 |1 |20 |1d |0 | |
+ROW |38074 |30638 |1 |20 |10m |0 | |
+ROW |38075 |30642 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
+ROW |38076 |30643 |1 |12 |$.Innodb_buffer_pool_reads |0 | |
+ROW |38077 |30643 |2 |10 | |0 | |
+ROW |38078 |30644 |1 |12 |$.Innodb_row_lock_time |0 | |
+ROW |38079 |30644 |2 |1 |0.001 |0 | |
+ROW |38080 |30644 |3 |20 |1h |0 | |
+ROW |38081 |30645 |1 |12 |$.Innodb_row_lock_time_max |0 | |
+ROW |38082 |30645 |2 |1 |0.001 |0 | |
+ROW |38083 |30645 |3 |20 |1h |0 | |
+ROW |38084 |30646 |1 |12 |$.Innodb_row_lock_waits |0 | |
+ROW |38085 |30647 |1 |12 |$.Max_used_connections |0 | |
+ROW |38086 |30647 |2 |20 |1h |0 | |
+ROW |38087 |30648 |1 |12 |$.Queries |0 | |
+ROW |38088 |30648 |2 |10 | |0 | |
+ROW |38089 |30649 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
+ROW |38090 |30650 |1 |12 |$.Questions |0 | |
+ROW |38091 |30650 |2 |10 | |0 | |
+ROW |38092 |30651 |1 |12 |$.Slow_queries |0 | |
+ROW |38093 |30651 |2 |10 | |0 | |
+ROW |38094 |30652 |1 |12 |$.Threads_cached |0 | |
+ROW |38095 |30653 |1 |12 |$.Threads_connected |0 | |
+ROW |38096 |30654 |1 |12 |$.Threads_created |0 | |
+ROW |38097 |30655 |1 |12 |$.Threads_running |0 | |
+ROW |38098 |30656 |1 |12 |$.Uptime |0 | |
+ROW |38099 |30657 |1 |12 |$.Innodb_buffer_pool_read_requests |0 | |
+ROW |38100 |30657 |2 |10 | |0 | |
+ROW |38101 |30658 |1 |12 |$.Innodb_buffer_pool_pages_total |0 | |
+ROW |38102 |30658 |2 |20 |1h |0 | |
+ROW |38103 |30659 |1 |12 |$.Bytes_received |0 | |
+ROW |38104 |30659 |2 |10 | |0 | |
+ROW |38105 |30660 |1 |12 |$.Connection_errors_max_connections |0 | |
+ROW |38106 |30660 |2 |10 | |0 | |
+ROW |38107 |30661 |1 |12 |$.Bytes_sent |0 | |
+ROW |38108 |30661 |2 |10 | |0 | |
+ROW |38109 |30662 |1 |12 |$.Com_delete |0 | |
+ROW |38110 |30662 |2 |10 | |0 | |
+ROW |38111 |30663 |1 |12 |$.Com_insert |0 | |
+ROW |38112 |30663 |2 |10 | |0 | |
+ROW |38113 |30664 |1 |12 |$.Com_select |0 | |
+ROW |38114 |30664 |2 |10 | |0 | |
+ROW |38115 |30665 |1 |12 |$.Com_update |0 | |
+ROW |38116 |30665 |2 |10 | |0 | |
+ROW |38117 |30666 |1 |12 |$.Connection_errors_accept |0 | |
+ROW |38118 |30666 |2 |10 | |0 | |
+ROW |38119 |30667 |1 |12 |$.Connection_errors_internal |0 | |
+ROW |38120 |30667 |2 |10 | |0 | |
+ROW |38121 |30668 |1 |12 |$.Connection_errors_peer_address |0 | |
+ROW |38122 |30668 |2 |10 | |0 | |
+ROW |38123 |30669 |1 |12 |$.Innodb_buffer_pool_pages_free |0 | |
+ROW |38124 |30670 |1 |12 |$.Connection_errors_select |0 | |
+ROW |38125 |30670 |2 |10 | |0 | |
+ROW |38126 |30671 |1 |12 |$.Connection_errors_tcpwrap |0 | |
+ROW |38127 |30671 |2 |10 | |0 | |
+ROW |38128 |30672 |1 |12 |$.Connections |0 | |
+ROW |38129 |30672 |2 |10 | |0 | |
+ROW |38130 |30673 |1 |12 |$.Created_tmp_disk_tables |0 | |
+ROW |38131 |30674 |1 |12 |$.Created_tmp_files |0 | |
+ROW |38132 |30675 |1 |12 |$.Created_tmp_tables |0 | |
+ROW |38133 |30676 |1 |12 |$.Aborted_connects |0 | |
+ROW |38134 |30676 |2 |10 | |0 | |
+ROW |38135 |30677 |1 |12 |$.Aborted_clients |0 | |
+ROW |38136 |30677 |2 |10 | |0 | |
+ROW |38137 |30678 |1 |20 |1d |0 | |
+ROW |38138 |30679 |1 |20 |1d |0 | |
+ROW |38139 |30680 |1 |20 |1h |0 | |
+ROW |38140 |30682 |1 |12 |$.Seconds_Behind_Master |0 | |
+ROW |38141 |30682 |2 |14 |\d+ |3 |Replication is not performed.|
+ROW |38142 |30682 |3 |20 |1h |0 | |
+ROW |38143 |30683 |1 |12 |$.Slave_IO_Running |0 | |
+ROW |38144 |30683 |2 |20 |1h |0 | |
+ROW |38145 |30684 |1 |12 |$.Slave_SQL_Running |0 | |
+ROW |38146 |30684 |2 |20 |1h |0 | |
+ROW |38147 |30480 |1 |20 |1d |0 | |
+ROW |38148 |30481 |1 |20 |10m |0 | |
+ROW |38149 |30484 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_waits')].Value.first() |0 | |
+ROW |38150 |30485 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
+ROW |38151 |30486 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_read_requests')].Value.first() |0 | |
+ROW |38152 |30486 |2 |10 | |0 | |
+ROW |38153 |30487 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
+ROW |38154 |30488 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_reads')].Value.first() |0 | |
+ROW |38155 |30488 |2 |10 | |0 | |
+ROW |38156 |30489 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time')].Value.first() |0 | |
+ROW |38157 |30489 |2 |1 |0.001 |0 | |
+ROW |38158 |30489 |3 |20 |1h |0 | |
+ROW |38159 |30490 |1 |12 |$[?(@.Variable_name=='Innodb_row_lock_time_max')].Value.first() |0 | |
+ROW |38160 |30490 |2 |1 |0.001 |0 | |
+ROW |38161 |30490 |3 |20 |1h |0 | |
+ROW |38162 |30491 |1 |12 |$[?(@.Variable_name=='Queries')].Value.first() |0 | |
+ROW |38163 |30491 |2 |10 | |0 | |
+ROW |38164 |30492 |1 |12 |$[?(@.Variable_name=='Max_used_connections')].Value.first() |0 | |
+ROW |38165 |30492 |2 |20 |1h |0 | |
+ROW |38166 |30493 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_free')].Value.first() |0 | |
+ROW |38167 |30494 |1 |12 |$[?(@.Variable_name=='Questions')].Value.first() |0 | |
+ROW |38168 |30494 |2 |10 | |0 | |
+ROW |38169 |30495 |1 |12 |$[?(@.Variable_name=='Slow_queries')].Value.first() |0 | |
+ROW |38170 |30495 |2 |10 | |0 | |
+ROW |38171 |30496 |1 |12 |$[?(@.Variable_name=='Threads_cached')].Value.first() |0 | |
+ROW |38172 |30497 |1 |12 |$[?(@.Variable_name=='Threads_connected')].Value.first() |0 | |
+ROW |38173 |30498 |1 |12 |$[?(@.Variable_name=='Threads_created')].Value.first() |0 | |
+ROW |38174 |30499 |1 |12 |$[?(@.Variable_name=='Threads_running')].Value.first() |0 | |
+ROW |38175 |30500 |1 |12 |$[?(@.Variable_name=='Innodb_buffer_pool_pages_total')].Value.first() |0 | |
+ROW |38176 |30500 |2 |20 |1h |0 | |
+ROW |38177 |30501 |1 |12 |$[?(@.Variable_name=='Created_tmp_disk_tables')].Value.first() |0 | |
+ROW |38178 |30502 |1 |12 |$[?(@.Variable_name=='Created_tmp_tables')].Value.first() |0 | |
+ROW |38179 |30503 |1 |12 |$[?(@.Variable_name=='Com_select')].Value.first() |0 | |
+ROW |38180 |30503 |2 |10 | |0 | |
+ROW |38181 |30504 |1 |12 |$[?(@.Variable_name=='Aborted_clients')].Value.first() |0 | |
+ROW |38182 |30504 |2 |10 | |0 | |
+ROW |38183 |30505 |1 |12 |$[?(@.Variable_name=='Aborted_connects')].Value.first() |0 | |
+ROW |38184 |30505 |2 |10 | |0 | |
+ROW |38185 |30506 |1 |12 |$[?(@.Variable_name=='Bytes_received')].Value.first() |0 | |
+ROW |38186 |30506 |2 |10 | |0 | |
+ROW |38187 |30507 |1 |12 |$[?(@.Variable_name=='Bytes_sent')].Value.first() |0 | |
+ROW |38188 |30507 |2 |10 | |0 | |
+ROW |38189 |30508 |1 |12 |$[?(@.Variable_name=='Com_delete')].Value.first() |0 | |
+ROW |38190 |30508 |2 |10 | |0 | |
+ROW |38191 |30509 |1 |12 |$[?(@.Variable_name=='Com_insert')].Value.first() |0 | |
+ROW |38192 |30509 |2 |10 | |0 | |
+ROW |38193 |30510 |1 |12 |$[?(@.Variable_name=='Com_update')].Value.first() |0 | |
+ROW |38194 |30510 |2 |10 | |0 | |
+ROW |38195 |30511 |1 |12 |$[?(@.Variable_name=='Created_tmp_files')].Value.first() |0 | |
+ROW |38196 |30512 |1 |12 |$[?(@.Variable_name=='Connection_errors_accept')].Value.first() |0 | |
+ROW |38197 |30512 |2 |10 | |0 | |
+ROW |38198 |30513 |1 |12 |$[?(@.Variable_name=='Connection_errors_internal')].Value.first() |0 | |
+ROW |38199 |30513 |2 |10 | |0 | |
+ROW |38200 |30514 |1 |12 |$[?(@.Variable_name=='Connection_errors_max_connections')].Value.first() |0 | |
+ROW |38201 |30514 |2 |10 | |0 | |
+ROW |38202 |30515 |1 |12 |$[?(@.Variable_name=='Connection_errors_peer_address')].Value.first() |0 | |
+ROW |38203 |30515 |2 |10 | |0 | |
+ROW |38204 |30516 |1 |12 |$[?(@.Variable_name=='Connection_errors_select')].Value.first() |0 | |
+ROW |38205 |30516 |2 |10 | |0 | |
+ROW |38206 |30517 |1 |12 |$[?(@.Variable_name=='Connection_errors_tcpwrap')].Value.first() |0 | |
+ROW |38207 |30517 |2 |10 | |0 | |
+ROW |38208 |30518 |1 |12 |$[?(@.Variable_name=='Connections')].Value.first() |0 | |
+ROW |38209 |30518 |2 |10 | |0 | |
+ROW |38210 |30519 |1 |12 |$[?(@.Variable_name=='Uptime')].Value.first() |0 | |
+ROW |38211 |30520 |1 |20 |1d |0 | |
+ROW |38212 |30521 |1 |20 |1d |0 | |
+ROW |38213 |30522 |1 |20 |1h |0 | |
+ROW |38214 |30524 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Seconds_Behind_Master'].first() |0 | |
+ROW |38215 |30524 |2 |14 |\d+ |3 |Replication is not performed.|
+ROW |38216 |30524 |3 |20 |1h |0 | |
+ROW |38217 |30525 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_IO_Running'].first() |0 | |
+ROW |38218 |30525 |2 |20 |1h |0 | |
+ROW |38219 |30526 |1 |12 |$.[?(@.Master_Host=='{#MASTER_HOST}')]['Slave_SQL_Running'].first() |0 | |
+ROW |38220 |30526 |2 |20 |1h |0 | |
+ROW |38221 |28673 |1 |5 |Time:\s(\d+\.\d+)\sms&bsn;\1 |0 | |
+ROW |38222 |28674 |1 |21 |return value.search(/accepting connections/)>0 ? 1 : 0 |0 | |
+ROW |38223 |28674 |2 |20 |1h |0 | |
+ROW |38224 |28680 |1 |20 |1h |0 | |
+ROW |38225 |28685 |1 |20 |1d |0 | |
+ROW |38226 |28688 |1 |12 |$.idle |0 | |
+ROW |38227 |28689 |1 |12 |$.active |0 | |
+ROW |38228 |28690 |1 |12 |$.prepared |0 | |
+ROW |38229 |28691 |1 |12 |$.waiting |0 | |
+ROW |38230 |28692 |1 |12 |$.count |0 | |
+ROW |38231 |28693 |1 |12 |$.buffers_alloc |0 | |
+ROW |38232 |28693 |2 |10 | |0 | |
+ROW |38233 |28694 |1 |12 |$.buffers_backend |0 | |
+ROW |38234 |28694 |2 |10 | |0 | |
+ROW |38235 |28695 |1 |12 |$.checkpoint_write_time |0 | |
+ROW |38236 |28695 |2 |1 |0.001 |0 | |
+ROW |38237 |28695 |3 |10 | |0 | |
+ROW |38238 |28696 |1 |12 |$.buffers_backend_fsync |0 | |
+ROW |38239 |28696 |2 |10 | |0 | |
+ROW |38240 |28697 |1 |12 |$.buffers_checkpoint |0 | |
+ROW |38241 |28697 |2 |10 | |0 | |
+ROW |38242 |28698 |1 |12 |$.buffers_clean |0 | |
+ROW |38243 |28698 |2 |10 | |0 | |
+ROW |38244 |28699 |1 |12 |$.checkpoints_req |0 | |
+ROW |38245 |28699 |2 |10 | |0 | |
+ROW |38246 |28700 |1 |12 |$.checkpoints_timed |0 | |
+ROW |38247 |28700 |2 |10 | |0 | |
+ROW |38248 |28701 |1 |12 |$.checkpoint_write_time |0 | |
+ROW |38249 |28701 |2 |1 |0.001 |0 | |
+ROW |38250 |28701 |3 |10 | |0 | |
+ROW |38251 |28702 |1 |12 |$.maxwritten_clean |0 | |
+ROW |38252 |28702 |2 |10 | |0 | |
+ROW |38253 |28703 |1 |12 |$.waiting |0 | |
+ROW |38254 |28704 |1 |12 |$.active |0 | |
+ROW |38255 |28705 |1 |12 |$.idle |0 | |
+ROW |38256 |28706 |1 |12 |$.idle_in_transaction |0 | |
+ROW |38257 |28707 |1 |12 |$.prepared |0 | |
+ROW |38258 |28708 |1 |12 |$.total |0 | |
+ROW |38259 |28709 |1 |12 |$.total_pct |0 | |
+ROW |38260 |28710 |1 |12 |$.write |0 | |
+ROW |38261 |28710 |2 |10 | |0 | |
+ROW |38262 |28715 |1 |12 |$['{#DBNAME}'].conflicts |0 | |
+ROW |38263 |28715 |2 |10 | |0 | |
+ROW |38264 |28716 |1 |12 |$['{#DBNAME}'].total |0 | |
+ROW |38265 |28717 |1 |12 |$.seq |0 | |
+ROW |38266 |28717 |2 |10 | |0 | |
+ROW |38267 |28718 |1 |12 |$.idx |0 | |
+ROW |38268 |28718 |2 |10 | |0 | |
+ROW |38269 |28719 |1 |12 |$['{#DBNAME}'].tx_time_sum |0 | |
+ROW |38270 |28720 |1 |12 |$['{#DBNAME}'].tx_time_max |0 | |
+ROW |38271 |28721 |1 |12 |$['{#DBNAME}'].tx_slow_count |0 | |
+ROW |38272 |28722 |1 |12 |$['{#DBNAME}'].query_time_sum |0 | |
+ROW |38273 |28723 |1 |12 |$['{#DBNAME}'].query_time_max |0 | |
+ROW |38274 |28724 |1 |12 |$['{#DBNAME}'].query_slow_count |0 | |
+ROW |38275 |28725 |1 |12 |$['{#DBNAME}'].mro_time_sum |0 | |
+ROW |38276 |28726 |1 |12 |$['{#DBNAME}'].mro_time_max |0 | |
+ROW |38277 |28727 |1 |12 |$['{#DBNAME}'].mro_slow_count |0 | |
+ROW |38278 |28728 |1 |12 |$['{#DBNAME}'].blks_read |0 | |
+ROW |38279 |28728 |2 |10 | |0 | |
+ROW |38280 |28729 |1 |12 |$['{#DBNAME}'].deadlocks |0 | |
+ROW |38281 |28729 |2 |10 | |0 | |
+ROW |38282 |28730 |1 |12 |$['{#DBNAME}'].blks_hit |0 | |
+ROW |38283 |28730 |2 |10 | |0 | |
+ROW |38284 |28731 |1 |12 |$.prc_before_av |0 | |
+ROW |38285 |28732 |1 |12 |$['{#DBNAME}'].xact_rollback |0 | |
+ROW |38286 |28732 |2 |10 | |0 | |
+ROW |38287 |28733 |1 |12 |$['{#DBNAME}'].xact_commit |0 | |
+ROW |38288 |28733 |2 |10 | |0 | |
+ROW |38289 |28734 |1 |12 |$['{#DBNAME}'].tup_updated |0 | |
+ROW |38290 |28734 |2 |10 | |0 | |
+ROW |38291 |28735 |1 |12 |$['{#DBNAME}'].tup_returned |0 | |
+ROW |38292 |28735 |2 |10 | |0 | |
+ROW |38293 |28736 |1 |12 |$['{#DBNAME}'].tup_inserted |0 | |
+ROW |38294 |28736 |2 |10 | |0 | |
+ROW |38295 |28737 |1 |12 |$['{#DBNAME}'].tup_fetched |0 | |
+ROW |38296 |28737 |2 |10 | |0 | |
+ROW |38297 |28738 |1 |12 |$['{#DBNAME}'].tup_deleted |0 | |
+ROW |38298 |28738 |2 |10 | |0 | |
+ROW |38299 |28739 |1 |12 |$['{#DBNAME}'].temp_files |0 | |
+ROW |38300 |28739 |2 |10 | |0 | |
+ROW |38301 |28740 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
+ROW |38302 |28740 |2 |10 | |0 | |
+ROW |38303 |28741 |1 |12 |$.prc_before_stop |0 | |
+ROW |38304 |30273 |1 |20 |10m |0 | |
+ROW |38305 |30274 |1 |10 | |0 | |
+ROW |38306 |30275 |1 |20 |1h |0 | |
+ROW |38307 |30277 |1 |12 |$.Clients.blocked_clients |0 | |
+ROW |38308 |30278 |1 |12 |$.Server.tcp_port |0 | |
+ROW |38309 |30278 |2 |20 |1d |0 | |
+ROW |38310 |30279 |1 |12 |$.Stats.expired_keys |0 | |
+ROW |38311 |30280 |1 |12 |$.Stats.evicted_keys |0 | |
+ROW |38312 |30281 |1 |12 |$.Server.uptime_in_seconds |0 | |
+ROW |38313 |30282 |1 |12 |$.Server.redis_mode |0 | |
+ROW |38314 |30282 |2 |20 |1d |0 | |
+ROW |38315 |30283 |1 |12 |$.Server.redis_version |0 | |
+ROW |38316 |30283 |2 |20 |1d |0 | |
+ROW |38317 |30284 |1 |12 |$.Stats.instantaneous_ops_per_sec |0 | |
+ROW |38318 |30285 |1 |12 |$.Server.process_id |0 | |
+ROW |38319 |30285 |2 |20 |1d |0 | |
+ROW |38320 |30286 |1 |12 |$.Replication.role |0 | |
+ROW |38321 |30286 |2 |20 |1d |0 | |
+ROW |38322 |30287 |1 |12 |$.Replication.repl_backlog_size |0 | |
+ROW |38323 |30288 |1 |12 |$.Replication.repl_backlog_histlen |0 | |
+ROW |38324 |30289 |1 |12 |$.Stats.instantaneous_input_kbps |0 | |
+ROW |38325 |30289 |2 |1 |1024 |0 | |
+ROW |38326 |30290 |1 |12 |$.Stats.keyspace_hits |0 | |
+ROW |38327 |30291 |1 |12 |$.Stats.instantaneous_output_kbps |0 | |
+ROW |38328 |30291 |2 |1 |1024 |0 | |
+ROW |38329 |30292 |1 |12 |$.Replication.repl_backlog_active |0 | |
+ROW |38330 |30293 |1 |12 |$.Stats.keyspace_misses |0 | |
+ROW |38331 |30294 |1 |12 |$.Stats.latest_fork_usec |0 | |
+ROW |38332 |30294 |2 |1 |1.0E-5 |0 | |
+ROW |38333 |30295 |1 |12 |$.Stats.migrate_cached_sockets |0 | |
+ROW |38334 |30296 |1 |12 |$.Stats.pubsub_channels |0 | |
+ROW |38335 |30297 |1 |12 |$.Stats.pubsub_patterns |0 | |
+ROW |38336 |30298 |1 |12 |$.Stats.rejected_connections |0 | |
+ROW |38337 |30299 |1 |12 |$.Stats.sync_full |0 | |
+ROW |38338 |30300 |1 |12 |$.Stats.sync_partial_err |0 | |
+ROW |38339 |30301 |1 |12 |$.Stats.sync_partial_ok |0 | |
+ROW |38340 |30302 |1 |12 |$.Stats.total_commands_processed |0 | |
+ROW |38341 |30303 |1 |12 |$.Stats.total_connections_received |0 | |
+ROW |38342 |30304 |1 |12 |$.Stats.total_net_input_bytes |0 | |
+ROW |38343 |30305 |1 |12 |$.Replication.repl_backlog_first_byte_offset |0 | |
+ROW |38344 |30306 |1 |12 |$.Replication.connected_slaves |0 | |
+ROW |38345 |30307 |1 |12 |$.Replication.master_repl_offset |0 | |
+ROW |38346 |30308 |1 |12 |$.Memory.used_memory_rss |0 | |
+ROW |38347 |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 |38348 |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 |38349 |30311 |1 |12 |$.Cluster.cluster_enabled |0 | |
+ROW |38350 |30312 |1 |12 |$.maxclients |0 | |
+ROW |38351 |30312 |2 |20 |30m |0 | |
+ROW |38352 |30313 |1 |12 |$.CPU.used_cpu_sys |0 | |
+ROW |38353 |30314 |1 |12 |$.CPU.used_cpu_sys_children |0 | |
+ROW |38354 |30315 |1 |12 |$.CPU.used_cpu_user |0 | |
+ROW |38355 |30316 |1 |12 |$.CPU.used_cpu_user_children |0 | |
+ROW |38356 |30317 |1 |12 |$.Memory.mem_fragmentation_ratio |0 | |
+ROW |38357 |30318 |1 |12 |$.Memory.used_memory |0 | |
+ROW |38358 |30319 |1 |12 |$.Memory.used_memory_lua |0 | |
+ROW |38359 |30320 |1 |12 |$.Memory.used_memory_peak |0 | |
+ROW |38360 |30321 |1 |12 |$.Persistence.aof_current_rewrite_time_sec |0 | |
+ROW |38361 |30322 |1 |12 |$.Clients.connected_clients |0 | |
+ROW |38362 |30323 |1 |12 |$.Persistence.aof_enabled |0 | |
+ROW |38363 |30324 |1 |12 |$.Persistence.aof_last_bgrewrite_status |0 | |
+ROW |38364 |30324 |2 |6 | |0 | |
+ROW |38365 |30325 |1 |12 |$.Persistence.aof_last_rewrite_time_sec |0 | |
+ROW |38366 |30326 |1 |12 |$.Persistence.aof_last_write_status |0 | |
+ROW |38367 |30326 |2 |6 | |0 | |
+ROW |38368 |30327 |1 |12 |$.Persistence.aof_rewrite_in_progress |0 | |
+ROW |38369 |30328 |1 |12 |$.Persistence.aof_rewrite_scheduled |0 | |
+ROW |38370 |30329 |1 |12 |$.Persistence.loading |0 | |
+ROW |38371 |30330 |1 |12 |$.Persistence.rdb_bgsave_in_progress |0 | |
+ROW |38372 |30331 |1 |12 |$.Persistence.rdb_changes_since_last_save |0 | |
+ROW |38373 |30332 |1 |12 |$.Persistence.rdb_current_bgsave_time_sec |0 | |
+ROW |38374 |30333 |1 |12 |$.Persistence.rdb_last_bgsave_status |0 | |
+ROW |38375 |30333 |2 |6 | |0 | |
+ROW |38376 |30334 |1 |12 |$.Persistence.rdb_last_bgsave_time_sec |0 | |
+ROW |38377 |30335 |1 |12 |$.Persistence.rdb_last_save_time |0 | |
+ROW |38378 |30336 |1 |12 |$.Stats.total_net_output_bytes |0 | |
+ROW |38379 |30337 |1 |21 |return JSON.stringify(value > 0 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |38380 |30338 |1 |21 |return JSON.stringify(Object.keys(JSON.parse(value).Keyspace)&bsn; .map(function (v){return {"{#DB}": v}})); |0 | |
+ROW |38381 |30339 |1 |12 |$.Server.redis_version |0 | |
+ROW |38382 |30339 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 4 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |38383 |30340 |1 |12 |$.Server.redis_version |0 | |
+ROW |38384 |30340 |2 |21 |return JSON.stringify(parseInt(value.split('.')[0]) >= 5 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |38385 |30341 |1 |21 |return JSON.stringify(JSON.parse(value).Persistence.aof_enabled === '1'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
+ROW |38386 |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 |38387 |30343 |1 |21 |return JSON.stringify(JSON.parse(value).Replication.role === 'slave'&bsn; ? [{'{#SINGLETON}': ''}]&bsn; : []); |0 | |
+ROW |38388 |30348 |1 |12 |$.Keyspace["{#DB}"].avg_ttl |0 | |
+ROW |38389 |30348 |2 |1 |0.001 |0 | |
+ROW |38390 |30349 |1 |12 |$.Keyspace["{#DB}"].expires |0 | |
+ROW |38391 |30350 |1 |12 |$.Keyspace["{#DB}"].keys |0 | |
+ROW |38392 |30351 |1 |12 |$.Memory.active_defrag_running |0 | |
+ROW |38393 |30352 |1 |12 |$.Persistence.rdb_last_cow_size |0 | |
+ROW |38394 |30353 |1 |12 |$.Stats.expired_time_cap_reached_count |0 | |
+ROW |38395 |30354 |1 |12 |$.Stats.expired_stale_perc |0 | |
+ROW |38396 |30355 |1 |12 |$.Stats.active_defrag_misses |0 | |
+ROW |38397 |30356 |1 |12 |$.Stats.active_defrag_key_misses |0 | |
+ROW |38398 |30357 |1 |12 |$.Stats.active_defrag_key_hits |0 | |
+ROW |38399 |30358 |1 |12 |$.Stats.active_defrag_hits |0 | |
+ROW |38400 |30359 |1 |12 |$.Server.executable |0 | |
+ROW |38401 |30359 |2 |20 |1d |0 | |
+ROW |38402 |30360 |1 |12 |$.Replication.second_repl_offset |0 | |
+ROW |38403 |30361 |1 |12 |$.Persistence.aof_last_cow_size |0 | |
+ROW |38404 |30362 |1 |12 |$.Memory.lazyfree_pending_objects |0 | |
+ROW |38405 |30363 |1 |12 |$.Memory.used_memory_startup |0 | |
+ROW |38406 |30364 |1 |12 |$.Memory.used_memory_peak_perc |0 | |
+ROW |38407 |30364 |2 |5 |(.+)%&bsn;\1 |0 | |
+ROW |38408 |30365 |1 |12 |$.Memory.used_memory_overhead |0 | |
+ROW |38409 |30366 |1 |12 |$.Memory.used_memory_dataset |0 | |
+ROW |38410 |30367 |1 |12 |$.Memory.used_memory_dataset_perc |0 | |
+ROW |38411 |30367 |2 |5 |(.+)%&bsn;\1 |0 | |
+ROW |38412 |30368 |1 |12 |$.Memory.total_system_memory |0 | |
+ROW |38413 |30369 |1 |12 |$.Memory.maxmemory |0 | |
+ROW |38414 |30370 |1 |12 |$.Memory.maxmemory_policy |0 | |
+ROW |38415 |30370 |2 |20 |1d |0 | |
+ROW |38416 |30371 |1 |12 |$.Stats.slave_expires_tracked_keys |0 | |
+ROW |38417 |30372 |1 |12 |$.Memory.allocator_active |0 | |
+ROW |38418 |30373 |1 |12 |$.Memory.mem_clients_normal |0 | |
+ROW |38419 |30374 |1 |12 |$.Memory.rss_overhead_ratio |0 | |
+ROW |38420 |30375 |1 |12 |$.Memory.rss_overhead_bytes |0 | |
+ROW |38421 |30376 |1 |12 |$.Memory.mem_replication_backlog |0 | |
+ROW |38422 |30377 |1 |12 |$.Memory.number_of_cached_scripts |0 | |
+ROW |38423 |30378 |1 |12 |$.Memory.mem_not_counted_for_evict |0 | |
+ROW |38424 |30379 |1 |12 |$.Memory.mem_clients_slaves |0 | |
+ROW |38425 |30380 |1 |12 |$.Memory.mem_aof_buffer |0 | |
+ROW |38426 |30381 |1 |12 |$.Memory.allocator_allocated |0 | |
+ROW |38427 |30382 |1 |12 |$.Memory.mem_fragmentation_bytes |0 | |
+ROW |38428 |30383 |1 |12 |$.Memory.allocator_rss_ratio |0 | |
+ROW |38429 |30384 |1 |12 |$.Memory.allocator_rss_bytes |0 | |
+ROW |38430 |30385 |1 |12 |$.Memory.allocator_resident |0 | |
+ROW |38431 |30386 |1 |12 |$.Memory.allocator_frag_ratio |0 | |
+ROW |38432 |30387 |1 |12 |$.Memory.allocator_frag_bytes |0 | |
+ROW |38433 |30388 |1 |12 |$.Memory.used_memory_scripts |0 | |
+ROW |38434 |30389 |1 |12 |$.Persistence.aof_base_size |0 | |
+ROW |38435 |30390 |1 |12 |$.Persistence.aof_buffer_length |0 | |
+ROW |38436 |30391 |1 |12 |$.Persistence.aof_current_size |0 | |
+ROW |38437 |30392 |1 |12 |$.Persistence.aof_delayed_fsync |0 | |
+ROW |38438 |30393 |1 |12 |$.Persistence.aof_pending_bio_fsync |0 | |
+ROW |38439 |30394 |1 |12 |$.Persistence.aof_pending_rewrite |0 | |
+ROW |38440 |30395 |1 |12 |$.Persistence.aof_rewrite_buffer_length |0 | |
+ROW |38441 |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 |38442 |30397 |1 |12 |$.Replication.master_host |0 | |
+ROW |38443 |30397 |2 |20 |1d |0 | |
+ROW |38444 |30398 |1 |12 |$.Replication.master_last_io_seconds_ago |0 | |
+ROW |38445 |30399 |1 |12 |$.Replication.master_link_status |0 | |
+ROW |38446 |30399 |2 |6 | |0 | |
+ROW |38447 |30400 |1 |12 |$.Replication.master_port |0 | |
+ROW |38448 |30400 |2 |20 |1d |0 | |
+ROW |38449 |30401 |1 |12 |$.Replication.master_sync_in_progress |0 | |
+ROW |38450 |30402 |1 |12 |$.Replication.slave_priority |0 | |
+ROW |38451 |30403 |1 |12 |$.Replication.slave_read_only |0 | |
+ROW |38452 |30403 |2 |20 |1d |0 | |
+ROW |38453 |30404 |1 |12 |$.Replication.slave_repl_offset |0 | |
+ROW |38454 |27141 |1 |20 |1h |0 | |
+ROW |38455 |29824 |1 |1 |0.01 |0 | |
+ROW |38456 |29825 |1 |20 |1h |0 | |
+ROW |38457 |29826 |1 |20 |1d |0 | |
+ROW |38458 |29827 |1 |20 |1h |0 | |
+ROW |38459 |29828 |1 |20 |1d |0 | |
+ROW |38460 |27615 |1 |20 |1h |0 | |
+ROW |38461 |28022 |1 |20 |1h |0 | |
+ROW |38462 |28433 |1 |20 |1h |0 | |
+ROW |38463 |29829 |1 |1 |0.01 |0 | |
+ROW |38464 |29830 |1 |20 |1h |0 | |
+ROW |38465 |29831 |1 |20 |1d |0 | |
+ROW |38466 |29832 |1 |20 |1h |0 | |
+ROW |38467 |29833 |1 |20 |1d |0 | |
+ROW |38468 |29834 |1 |1 |0.01 |0 | |
+ROW |38469 |29835 |1 |20 |1h |0 | |
+ROW |38470 |29836 |1 |20 |1d |0 | |
+ROW |38471 |29837 |1 |20 |1h |0 | |
+ROW |38472 |29838 |1 |20 |1d |0 | |
+ROW |38473 |29839 |1 |1 |0.01 |0 | |
+ROW |38474 |29840 |1 |20 |1h |0 | |
+ROW |38475 |29841 |1 |20 |1d |0 | |
+ROW |38476 |29842 |1 |20 |1h |0 | |
+ROW |38477 |29843 |1 |20 |1d |0 | |
+ROW |38478 |27152 |1 |20 |1h |0 | |
+ROW |38479 |29844 |1 |1 |0.01 |0 | |
+ROW |38480 |29845 |1 |20 |1h |0 | |
+ROW |38481 |29846 |1 |20 |1d |0 | |
+ROW |38482 |29847 |1 |20 |1h |0 | |
+ROW |38483 |29848 |1 |20 |1d |0 | |
+ROW |38484 |27199 |1 |20 |1h |0 | |
+ROW |38485 |27232 |1 |20 |1h |0 | |
+ROW |38486 |27268 |1 |20 |1h |0 | |
+ROW |38487 |27289 |1 |20 |1h |0 | |
+ROW |38488 |27340 |1 |20 |1h |0 | |
+ROW |38489 |27372 |1 |20 |1h |0 | |
+ROW |38490 |27469 |1 |20 |1h |0 | |
+ROW |38491 |27503 |1 |20 |1h |0 | |
+ROW |38492 |27539 |1 |20 |1h |0 | |
+ROW |38493 |27575 |1 |20 |1h |0 | |
+ROW |38494 |27638 |1 |20 |1h |0 | |
+ROW |38495 |27661 |1 |20 |1h |0 | |
+ROW |38496 |27741 |1 |20 |1h |0 | |
+ROW |38497 |27773 |1 |20 |1h |0 | |
+ROW |38498 |27807 |1 |20 |1h |0 | |
+ROW |38499 |27889 |1 |20 |1h |0 | |
+ROW |38500 |27926 |1 |20 |1h |0 | |
+ROW |38501 |27963 |1 |20 |1h |0 | |
+ROW |38502 |27993 |1 |20 |1h |0 | |
+ROW |38503 |28137 |1 |20 |1h |0 | |
+ROW |38504 |28192 |1 |20 |1h |0 | |
+ROW |38505 |28240 |1 |20 |1h |0 | |
+ROW |38506 |28289 |1 |20 |1h |0 | |
+ROW |38507 |28337 |1 |20 |1h |0 | |
+ROW |38508 |28384 |1 |20 |1h |0 | |
+ROW |38509 |28461 |1 |20 |1h |0 | |
+ROW |38510 |28489 |1 |20 |1h |0 | |
+ROW |38511 |28964 |1 |20 |1h |0 | |
+ROW |38512 |29057 |1 |20 |1h |0 | |
+ROW |38513 |29849 |1 |1 |0.01 |0 | |
+ROW |38514 |29850 |1 |20 |1h |0 | |
+ROW |38515 |29851 |1 |20 |1d |0 | |
+ROW |38516 |29852 |1 |20 |1h |0 | |
+ROW |38517 |29853 |1 |20 |1d |0 | |
+ROW |38518 |29854 |1 |1 |0.01 |0 | |
+ROW |38519 |29855 |1 |20 |1h |0 | |
+ROW |38520 |29856 |1 |20 |1d |0 | |
+ROW |38521 |29857 |1 |20 |1h |0 | |
+ROW |38522 |29858 |1 |20 |1d |0 | |
+ROW |38523 |29859 |1 |1 |0.01 |0 | |
+ROW |38524 |29860 |1 |20 |1h |0 | |
+ROW |38525 |29861 |1 |20 |1d |0 | |
+ROW |38526 |29862 |1 |20 |1h |0 | |
+ROW |38527 |29863 |1 |20 |1d |0 | |
+ROW |38528 |29864 |1 |1 |0.01 |0 | |
+ROW |38529 |29865 |1 |20 |1h |0 | |
+ROW |38530 |29866 |1 |20 |1d |0 | |
+ROW |38531 |29867 |1 |20 |1h |0 | |
+ROW |38532 |29868 |1 |20 |1d |0 | |
+ROW |38533 |29869 |1 |1 |0.01 |0 | |
+ROW |38534 |29870 |1 |20 |1h |0 | |
+ROW |38535 |29871 |1 |20 |1d |0 | |
+ROW |38536 |29872 |1 |20 |1h |0 | |
+ROW |38537 |29873 |1 |20 |1d |0 | |
+ROW |38538 |29874 |1 |1 |0.01 |0 | |
+ROW |38539 |29875 |1 |20 |1h |0 | |
+ROW |38540 |29876 |1 |20 |1d |0 | |
+ROW |38541 |29877 |1 |20 |1h |0 | |
+ROW |38542 |29878 |1 |20 |1d |0 | |
+ROW |38543 |29879 |1 |1 |0.01 |0 | |
+ROW |38544 |29880 |1 |20 |1h |0 | |
+ROW |38545 |29881 |1 |20 |1d |0 | |
+ROW |38546 |29882 |1 |20 |1h |0 | |
+ROW |38547 |29883 |1 |20 |1d |0 | |
+ROW |38548 |29884 |1 |1 |0.01 |0 | |
+ROW |38549 |29885 |1 |20 |1h |0 | |
+ROW |38550 |29886 |1 |20 |1d |0 | |
+ROW |38551 |29887 |1 |20 |1h |0 | |
+ROW |38552 |29888 |1 |20 |1d |0 | |
+ROW |38553 |29889 |1 |1 |0.01 |0 | |
+ROW |38554 |29890 |1 |20 |1h |0 | |
+ROW |38555 |29891 |1 |20 |1d |0 | |
+ROW |38556 |29892 |1 |20 |1h |0 | |
+ROW |38557 |29893 |1 |20 |1d |0 | |
+ROW |38558 |29894 |1 |1 |0.01 |0 | |
+ROW |38559 |29895 |1 |20 |1h |0 | |
+ROW |38560 |29896 |1 |20 |1d |0 | |
+ROW |38561 |29897 |1 |20 |1h |0 | |
+ROW |38562 |29898 |1 |20 |1d |0 | |
+ROW |38563 |29899 |1 |1 |0.01 |0 | |
+ROW |38564 |29900 |1 |20 |1h |0 | |
+ROW |38565 |29901 |1 |20 |1d |0 | |
+ROW |38566 |29902 |1 |20 |1h |0 | |
+ROW |38567 |29903 |1 |20 |1d |0 | |
+ROW |38568 |29904 |1 |1 |0.01 |0 | |
+ROW |38569 |29905 |1 |20 |1h |0 | |
+ROW |38570 |29906 |1 |20 |1d |0 | |
+ROW |38571 |29907 |1 |20 |1h |0 | |
+ROW |38572 |29908 |1 |20 |1d |0 | |
+ROW |38573 |29909 |1 |1 |0.01 |0 | |
+ROW |38574 |29910 |1 |20 |1h |0 | |
+ROW |38575 |29911 |1 |20 |1d |0 | |
+ROW |38576 |29912 |1 |20 |1h |0 | |
+ROW |38577 |29913 |1 |20 |1d |0 | |
+ROW |38578 |29914 |1 |1 |0.01 |0 | |
+ROW |38579 |29915 |1 |20 |1h |0 | |
+ROW |38580 |29916 |1 |20 |1d |0 | |
+ROW |38581 |29917 |1 |20 |1h |0 | |
+ROW |38582 |29918 |1 |20 |1d |0 | |
+ROW |38583 |29919 |1 |1 |0.01 |0 | |
+ROW |38584 |29920 |1 |20 |1h |0 | |
+ROW |38585 |29921 |1 |20 |1d |0 | |
+ROW |38586 |29922 |1 |20 |1h |0 | |
+ROW |38587 |29923 |1 |20 |1d |0 | |
+ROW |38588 |29924 |1 |1 |0.01 |0 | |
+ROW |38589 |29925 |1 |20 |1h |0 | |
+ROW |38590 |29926 |1 |20 |1d |0 | |
+ROW |38591 |29927 |1 |20 |1h |0 | |
+ROW |38592 |29928 |1 |20 |1d |0 | |
+ROW |38593 |29929 |1 |1 |0.01 |0 | |
+ROW |38594 |29930 |1 |20 |1h |0 | |
+ROW |38595 |29931 |1 |20 |1d |0 | |
+ROW |38596 |29932 |1 |20 |1h |0 | |
+ROW |38597 |29933 |1 |20 |1d |0 | |
+ROW |38598 |29934 |1 |1 |0.01 |0 | |
+ROW |38599 |29935 |1 |20 |1h |0 | |
+ROW |38600 |29936 |1 |20 |1d |0 | |
+ROW |38601 |29937 |1 |20 |1h |0 | |
+ROW |38602 |29938 |1 |20 |1d |0 | |
+ROW |38603 |29939 |1 |1 |0.01 |0 | |
+ROW |38604 |29940 |1 |20 |1h |0 | |
+ROW |38605 |29941 |1 |20 |1d |0 | |
+ROW |38606 |29942 |1 |20 |1h |0 | |
+ROW |38607 |29943 |1 |20 |1d |0 | |
+ROW |38608 |29944 |1 |1 |0.01 |0 | |
+ROW |38609 |29945 |1 |20 |1h |0 | |
+ROW |38610 |29946 |1 |20 |1d |0 | |
+ROW |38611 |29947 |1 |20 |1h |0 | |
+ROW |38612 |29948 |1 |20 |1d |0 | |
+ROW |38613 |29949 |1 |1 |0.01 |0 | |
+ROW |38614 |29950 |1 |20 |1h |0 | |
+ROW |38615 |29951 |1 |20 |1d |0 | |
+ROW |38616 |29952 |1 |20 |1h |0 | |
+ROW |38617 |29953 |1 |20 |1d |0 | |
+ROW |38618 |29954 |1 |1 |0.01 |0 | |
+ROW |38619 |29955 |1 |20 |1h |0 | |
+ROW |38620 |29956 |1 |20 |1d |0 | |
+ROW |38621 |29957 |1 |20 |1h |0 | |
+ROW |38622 |29958 |1 |20 |1d |0 | |
+ROW |38623 |29959 |1 |1 |0.01 |0 | |
+ROW |38624 |29960 |1 |20 |1h |0 | |
+ROW |38625 |29961 |1 |20 |1d |0 | |
+ROW |38626 |29962 |1 |20 |1h |0 | |
+ROW |38627 |29963 |1 |20 |1d |0 | |
+ROW |38628 |29964 |1 |1 |0.01 |0 | |
+ROW |38629 |29965 |1 |20 |1h |0 | |
+ROW |38630 |29966 |1 |20 |1d |0 | |
+ROW |38631 |29967 |1 |20 |1h |0 | |
+ROW |38632 |29968 |1 |20 |1d |0 | |
+ROW |38633 |29969 |1 |1 |0.01 |0 | |
+ROW |38634 |29970 |1 |20 |1h |0 | |
+ROW |38635 |29971 |1 |20 |1d |0 | |
+ROW |38636 |29972 |1 |20 |1h |0 | |
+ROW |38637 |29973 |1 |20 |1d |0 | |
+ROW |38638 |29974 |1 |1 |0.01 |0 | |
+ROW |38639 |29975 |1 |20 |1h |0 | |
+ROW |38640 |29976 |1 |20 |1d |0 | |
+ROW |38641 |29977 |1 |20 |1h |0 | |
+ROW |38642 |29978 |1 |20 |1d |0 | |
+ROW |38643 |29979 |1 |1 |0.01 |0 | |
+ROW |38644 |29980 |1 |20 |1h |0 | |
+ROW |38645 |29981 |1 |20 |1d |0 | |
+ROW |38646 |29982 |1 |20 |1h |0 | |
+ROW |38647 |29983 |1 |20 |1d |0 | |
+ROW |38648 |29984 |1 |1 |0.01 |0 | |
+ROW |38649 |29985 |1 |20 |1h |0 | |
+ROW |38650 |29986 |1 |20 |1d |0 | |
+ROW |38651 |29987 |1 |20 |1h |0 | |
+ROW |38652 |29988 |1 |20 |1d |0 | |
+ROW |38653 |29989 |1 |1 |0.01 |0 | |
+ROW |38654 |29990 |1 |20 |1h |0 | |
+ROW |38655 |29991 |1 |20 |1d |0 | |
+ROW |38656 |29992 |1 |20 |1h |0 | |
+ROW |38657 |29993 |1 |20 |1d |0 | |
+ROW |38658 |30050 |1 |20 |1d |0 | |
+ROW |38659 |30051 |1 |20 |1d |0 | |
+ROW |38660 |30052 |1 |20 |1h |0 | |
+ROW |38661 |30053 |1 |20 |1h |0 | |
+ROW |38662 |30054 |1 |20 |1h |0 | |
+ROW |38663 |30055 |1 |1 |0.01 |0 | |
+ROW |38664 |30405 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |38665 |30406 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |38666 |30411 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38667 |30412 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38668 |30415 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38669 |30416 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38670 |30417 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38671 |30418 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38672 |30421 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38673 |30422 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38674 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |38675 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |38676 |30144 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |38677 |30145 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |38678 |30146 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |38679 |30157 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38680 |30158 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38681 |30161 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38682 |30162 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38683 |30163 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38684 |30164 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38685 |30167 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38686 |30168 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38687 |30169 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38688 |30170 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38689 |30173 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38690 |30174 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38691 |30175 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38692 |30176 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38693 |30179 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38694 |30180 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38695 |30181 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38696 |30182 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38697 |30185 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38698 |30186 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |38699 |27069 |1 |10 | |0 | |
+ROW |38700 |27070 |1 |20 |1d |0 | |
+ROW |38701 |27072 |1 |10 | |0 | |
+ROW |38702 |27073 |1 |10 | |0 | |
+ROW |38703 |27074 |1 |10 | |0 | |
+ROW |38704 |27074 |2 |1 |8 |0 | |
+ROW |38705 |27075 |1 |10 | |0 | |
+ROW |38706 |27075 |2 |1 |8 |0 | |
+ROW |38707 |27076 |1 |10 | |0 | |
+ROW |38708 |27597 |1 |10 | |0 | |
+ROW |38709 |27598 |1 |10 | |0 | |
+ROW |38710 |27599 |1 |10 | |0 | |
+ROW |38711 |27599 |2 |1 |8 |0 | |
+ROW |38712 |27600 |1 |10 | |0 | |
+ROW |38713 |27601 |1 |10 | |0 | |
+ROW |38714 |27602 |1 |10 | |0 | |
+ROW |38715 |27602 |2 |1 |8 |0 | |
+ROW |38716 |27605 |1 |20 |1d |0 | |
+ROW |38717 |28006 |1 |10 | |0 | |
+ROW |38718 |28007 |1 |10 | |0 | |
+ROW |38719 |28008 |1 |10 | |0 | |
+ROW |38720 |28008 |2 |1 |8 |0 | |
+ROW |38721 |28009 |1 |10 | |0 | |
+ROW |38722 |28010 |1 |10 | |0 | |
+ROW |38723 |28011 |1 |10 | |0 | |
+ROW |38724 |28011 |2 |1 |8 |0 | |
+ROW |38725 |28014 |1 |20 |1d |0 | |
+ROW |38726 |27079 |1 |10 | |0 | |
+ROW |38727 |27080 |1 |20 |1d |0 | |
+ROW |38728 |27082 |1 |10 | |0 | |
+ROW |38729 |27083 |1 |10 | |0 | |
+ROW |38730 |27084 |1 |10 | |0 | |
+ROW |38731 |27084 |2 |1 |8 |0 | |
+ROW |38732 |27085 |1 |10 | |0 | |
+ROW |38733 |27085 |2 |1 |8 |0 | |
+ROW |38734 |27086 |1 |10 | |0 | |
+ROW |38735 |27620 |1 |10 | |0 | |
+ROW |38736 |27621 |1 |10 | |0 | |
+ROW |38737 |27622 |1 |10 | |0 | |
+ROW |38738 |27622 |2 |1 |8 |0 | |
+ROW |38739 |27623 |1 |10 | |0 | |
+ROW |38740 |27624 |1 |10 | |0 | |
+ROW |38741 |27625 |1 |10 | |0 | |
+ROW |38742 |27625 |2 |1 |8 |0 | |
+ROW |38743 |27628 |1 |20 |1d |0 | |
+ROW |38744 |27977 |1 |10 | |0 | |
+ROW |38745 |27978 |1 |10 | |0 | |
+ROW |38746 |27979 |1 |10 | |0 | |
+ROW |38747 |27979 |2 |1 |8 |0 | |
+ROW |38748 |27980 |1 |10 | |0 | |
+ROW |38749 |27981 |1 |10 | |0 | |
+ROW |38750 |27982 |1 |10 | |0 | |
+ROW |38751 |27982 |2 |1 |8 |0 | |
+ROW |38752 |27985 |1 |20 |1d |0 | |
+ROW |38753 |27089 |1 |10 | |0 | |
+ROW |38754 |27090 |1 |20 |1d |0 | |
+ROW |38755 |27091 |1 |1 |1000000 |0 | |
+ROW |38756 |27091 |2 |20 |1h |0 | |
+ROW |38757 |27092 |1 |10 | |0 | |
+ROW |38758 |27093 |1 |10 | |0 | |
+ROW |38759 |27094 |1 |10 | |0 | |
+ROW |38760 |27094 |2 |1 |8 |0 | |
+ROW |38761 |27095 |1 |10 | |0 | |
+ROW |38762 |27095 |2 |1 |8 |0 | |
+ROW |38763 |27096 |1 |10 | |0 | |
+ROW |38764 |27099 |1 |10 | |0 | |
+ROW |38765 |27100 |1 |20 |1d |0 | |
+ROW |38766 |27101 |1 |1 |1000000 |0 | |
+ROW |38767 |27101 |2 |20 |1h |0 | |
+ROW |38768 |27102 |1 |10 | |0 | |
+ROW |38769 |27103 |1 |10 | |0 | |
+ROW |38770 |27104 |1 |10 | |0 | |
+ROW |38771 |27104 |2 |1 |8 |0 | |
+ROW |38772 |27105 |1 |10 | |0 | |
+ROW |38773 |27105 |2 |1 |8 |0 | |
+ROW |38774 |27106 |1 |10 | |0 | |
+ROW |38775 |27181 |1 |10 | |0 | |
+ROW |38776 |27182 |1 |10 | |0 | |
+ROW |38777 |27183 |1 |10 | |0 | |
+ROW |38778 |27183 |2 |1 |8 |0 | |
+ROW |38779 |27184 |1 |10 | |0 | |
+ROW |38780 |27185 |1 |10 | |0 | |
+ROW |38781 |27186 |1 |10 | |0 | |
+ROW |38782 |27186 |2 |1 |8 |0 | |
+ROW |38783 |27187 |1 |1 |1000000 |0 | |
+ROW |38784 |27187 |2 |20 |1h |0 | |
+ROW |38785 |27189 |1 |20 |1d |0 | |
+ROW |38786 |27216 |1 |10 | |0 | |
+ROW |38787 |27217 |1 |10 | |0 | |
+ROW |38788 |27218 |1 |10 | |0 | |
+ROW |38789 |27218 |2 |1 |8 |0 | |
+ROW |38790 |27219 |1 |10 | |0 | |
+ROW |38791 |27220 |1 |10 | |0 | |
+ROW |38792 |27221 |1 |10 | |0 | |
+ROW |38793 |27221 |2 |1 |8 |0 | |
+ROW |38794 |27222 |1 |1 |1000000 |0 | |
+ROW |38795 |27222 |2 |20 |1h |0 | |
+ROW |38796 |27224 |1 |20 |1d |0 | |
+ROW |38797 |27252 |1 |10 | |0 | |
+ROW |38798 |27253 |1 |10 | |0 | |
+ROW |38799 |27254 |1 |10 | |0 | |
+ROW |38800 |27254 |2 |1 |8 |0 | |
+ROW |38801 |27255 |1 |10 | |0 | |
+ROW |38802 |27256 |1 |10 | |0 | |
+ROW |38803 |27257 |1 |10 | |0 | |
+ROW |38804 |27257 |2 |1 |8 |0 | |
+ROW |38805 |27258 |1 |1 |1000000 |0 | |
+ROW |38806 |27258 |2 |20 |1h |0 | |
+ROW |38807 |27260 |1 |20 |1d |0 | |
+ROW |38808 |27273 |1 |10 | |0 | |
+ROW |38809 |27274 |1 |10 | |0 | |
+ROW |38810 |27275 |1 |10 | |0 | |
+ROW |38811 |27275 |2 |1 |8 |0 | |
+ROW |38812 |27276 |1 |10 | |0 | |
+ROW |38813 |27277 |1 |10 | |0 | |
+ROW |38814 |27278 |1 |10 | |0 | |
+ROW |38815 |27278 |2 |1 |8 |0 | |
+ROW |38816 |27279 |1 |1 |1000000 |0 | |
+ROW |38817 |27279 |2 |20 |1h |0 | |
+ROW |38818 |27281 |1 |20 |1d |0 | |
+ROW |38819 |27322 |1 |10 | |0 | |
+ROW |38820 |27323 |1 |10 | |0 | |
+ROW |38821 |27324 |1 |10 | |0 | |
+ROW |38822 |27324 |2 |1 |8 |0 | |
+ROW |38823 |27325 |1 |10 | |0 | |
+ROW |38824 |27326 |1 |10 | |0 | |
+ROW |38825 |27327 |1 |10 | |0 | |
+ROW |38826 |27327 |2 |1 |8 |0 | |
+ROW |38827 |27328 |1 |1 |1000000 |0 | |
+ROW |38828 |27328 |2 |20 |1h |0 | |
+ROW |38829 |27330 |1 |20 |1d |0 | |
+ROW |38830 |27451 |1 |10 | |0 | |
+ROW |38831 |27452 |1 |10 | |0 | |
+ROW |38832 |27453 |1 |10 | |0 | |
+ROW |38833 |27453 |2 |1 |8 |0 | |
+ROW |38834 |27454 |1 |10 | |0 | |
+ROW |38835 |27455 |1 |10 | |0 | |
+ROW |38836 |27456 |1 |10 | |0 | |
+ROW |38837 |27456 |2 |1 |8 |0 | |
+ROW |38838 |27457 |1 |1 |1000000 |0 | |
+ROW |38839 |27457 |2 |20 |1h |0 | |
+ROW |38840 |27459 |1 |20 |1d |0 | |
+ROW |38841 |27487 |1 |10 | |0 | |
+ROW |38842 |27488 |1 |10 | |0 | |
+ROW |38843 |27489 |1 |10 | |0 | |
+ROW |38844 |27489 |2 |1 |8 |0 | |
+ROW |38845 |27490 |1 |10 | |0 | |
+ROW |38846 |27491 |1 |10 | |0 | |
+ROW |38847 |27492 |1 |10 | |0 | |
+ROW |38848 |27492 |2 |1 |8 |0 | |
+ROW |38849 |27493 |1 |1 |1000000 |0 | |
+ROW |38850 |27493 |2 |20 |1h |0 | |
+ROW |38851 |27495 |1 |20 |1d |0 | |
+ROW |38852 |27521 |1 |10 | |0 | |
+ROW |38853 |27522 |1 |10 | |0 | |
+ROW |38854 |27523 |1 |10 | |0 | |
+ROW |38855 |27523 |2 |1 |8 |0 | |
+ROW |38856 |27524 |1 |10 | |0 | |
+ROW |38857 |27525 |1 |10 | |0 | |
+ROW |38858 |27526 |1 |10 | |0 | |
+ROW |38859 |27526 |2 |1 |8 |0 | |
+ROW |38860 |27527 |1 |1 |1000000 |0 | |
+ROW |38861 |27527 |2 |20 |1h |0 | |
+ROW |38862 |27529 |1 |20 |1d |0 | |
+ROW |38863 |27557 |1 |10 | |0 | |
+ROW |38864 |27558 |1 |10 | |0 | |
+ROW |38865 |27559 |1 |10 | |0 | |
+ROW |38866 |27559 |2 |1 |8 |0 | |
+ROW |38867 |27560 |1 |10 | |0 | |
+ROW |38868 |27561 |1 |10 | |0 | |
+ROW |38869 |27562 |1 |10 | |0 | |
+ROW |38870 |27562 |2 |1 |8 |0 | |
+ROW |38871 |27563 |1 |1 |1000000 |0 | |
+ROW |38872 |27563 |2 |20 |1h |0 | |
+ROW |38873 |27565 |1 |20 |1d |0 | |
+ROW |38874 |27643 |1 |10 | |0 | |
+ROW |38875 |27644 |1 |10 | |0 | |
+ROW |38876 |27645 |1 |10 | |0 | |
+ROW |38877 |27645 |2 |1 |8 |0 | |
+ROW |38878 |27646 |1 |10 | |0 | |
+ROW |38879 |27647 |1 |10 | |0 | |
+ROW |38880 |27648 |1 |10 | |0 | |
+ROW |38881 |27648 |2 |1 |8 |0 | |
+ROW |38882 |27649 |1 |1 |1000000 |0 | |
+ROW |38883 |27649 |2 |20 |1h |0 | |
+ROW |38884 |27651 |1 |20 |1d |0 | |
+ROW |38885 |27723 |1 |10 | |0 | |
+ROW |38886 |27724 |1 |10 | |0 | |
+ROW |38887 |27725 |1 |10 | |0 | |
+ROW |38888 |27725 |2 |1 |8 |0 | |
+ROW |38889 |27726 |1 |10 | |0 | |
+ROW |38890 |27727 |1 |10 | |0 | |
+ROW |38891 |27728 |1 |10 | |0 | |
+ROW |38892 |27728 |2 |1 |8 |0 | |
+ROW |38893 |27729 |1 |1 |1000000 |0 | |
+ROW |38894 |27729 |2 |20 |1h |0 | |
+ROW |38895 |27731 |1 |20 |1d |0 | |
+ROW |38896 |27757 |1 |10 | |0 | |
+ROW |38897 |27758 |1 |10 | |0 | |
+ROW |38898 |27759 |1 |10 | |0 | |
+ROW |38899 |27759 |2 |1 |8 |0 | |
+ROW |38900 |27760 |1 |10 | |0 | |
+ROW |38901 |27761 |1 |10 | |0 | |
+ROW |38902 |27762 |1 |10 | |0 | |
+ROW |38903 |27762 |2 |1 |8 |0 | |
+ROW |38904 |27763 |1 |1 |1000000 |0 | |
+ROW |38905 |27763 |2 |20 |1h |0 | |
+ROW |38906 |27765 |1 |20 |1d |0 | |
+ROW |38907 |27789 |1 |10 | |0 | |
+ROW |38908 |27790 |1 |10 | |0 | |
+ROW |38909 |27791 |1 |10 | |0 | |
+ROW |38910 |27791 |2 |1 |8 |0 | |
+ROW |38911 |27792 |1 |10 | |0 | |
+ROW |38912 |27793 |1 |10 | |0 | |
+ROW |38913 |27794 |1 |10 | |0 | |
+ROW |38914 |27794 |2 |1 |8 |0 | |
+ROW |38915 |27795 |1 |1 |1000000 |0 | |
+ROW |38916 |27795 |2 |20 |1h |0 | |
+ROW |38917 |27797 |1 |20 |1d |0 | |
+ROW |38918 |27873 |1 |10 | |0 | |
+ROW |38919 |27874 |1 |10 | |0 | |
+ROW |38920 |27875 |1 |10 | |0 | |
+ROW |38921 |27875 |2 |1 |8 |0 | |
+ROW |38922 |27876 |1 |10 | |0 | |
+ROW |38923 |27877 |1 |10 | |0 | |
+ROW |38924 |27878 |1 |10 | |0 | |
+ROW |38925 |27878 |2 |1 |8 |0 | |
+ROW |38926 |27879 |1 |1 |1000000 |0 | |
+ROW |38927 |27879 |2 |20 |1h |0 | |
+ROW |38928 |27881 |1 |20 |1d |0 | |
+ROW |38929 |27910 |1 |10 | |0 | |
+ROW |38930 |27911 |1 |10 | |0 | |
+ROW |38931 |27912 |1 |10 | |0 | |
+ROW |38932 |27912 |2 |1 |8 |0 | |
+ROW |38933 |27913 |1 |10 | |0 | |
+ROW |38934 |27914 |1 |10 | |0 | |
+ROW |38935 |27915 |1 |10 | |0 | |
+ROW |38936 |27915 |2 |1 |8 |0 | |
+ROW |38937 |27916 |1 |1 |1000000 |0 | |
+ROW |38938 |27916 |2 |20 |1h |0 | |
+ROW |38939 |27918 |1 |20 |1d |0 | |
+ROW |38940 |27945 |1 |10 | |0 | |
+ROW |38941 |27946 |1 |10 | |0 | |
+ROW |38942 |27947 |1 |10 | |0 | |
+ROW |38943 |27947 |2 |1 |8 |0 | |
+ROW |38944 |27948 |1 |10 | |0 | |
+ROW |38945 |27949 |1 |10 | |0 | |
+ROW |38946 |27950 |1 |10 | |0 | |
+ROW |38947 |27950 |2 |1 |8 |0 | |
+ROW |38948 |27951 |1 |1 |1000000 |0 | |
+ROW |38949 |27951 |2 |20 |1h |0 | |
+ROW |38950 |27953 |1 |20 |1d |0 | |
+ROW |38951 |28119 |1 |10 | |0 | |
+ROW |38952 |28120 |1 |10 | |0 | |
+ROW |38953 |28121 |1 |10 | |0 | |
+ROW |38954 |28121 |2 |1 |8 |0 | |
+ROW |38955 |28122 |1 |10 | |0 | |
+ROW |38956 |28123 |1 |10 | |0 | |
+ROW |38957 |28124 |1 |10 | |0 | |
+ROW |38958 |28124 |2 |1 |8 |0 | |
+ROW |38959 |28125 |1 |1 |1000000 |0 | |
+ROW |38960 |28125 |2 |20 |1h |0 | |
+ROW |38961 |28127 |1 |20 |1d |0 | |
+ROW |38962 |28176 |1 |10 | |0 | |
+ROW |38963 |28177 |1 |10 | |0 | |
+ROW |38964 |28178 |1 |10 | |0 | |
+ROW |38965 |28178 |2 |1 |8 |0 | |
+ROW |38966 |28179 |1 |10 | |0 | |
+ROW |38967 |28180 |1 |10 | |0 | |
+ROW |38968 |28181 |1 |10 | |0 | |
+ROW |38969 |28181 |2 |1 |8 |0 | |
+ROW |38970 |28182 |1 |1 |1000000 |0 | |
+ROW |38971 |28182 |2 |20 |1h |0 | |
+ROW |38972 |28184 |1 |20 |1d |0 | |
+ROW |38973 |28224 |1 |10 | |0 | |
+ROW |38974 |28225 |1 |10 | |0 | |
+ROW |38975 |28226 |1 |10 | |0 | |
+ROW |38976 |28226 |2 |1 |8 |0 | |
+ROW |38977 |28227 |1 |10 | |0 | |
+ROW |38978 |28228 |1 |10 | |0 | |
+ROW |38979 |28229 |1 |10 | |0 | |
+ROW |38980 |28229 |2 |1 |8 |0 | |
+ROW |38981 |28230 |1 |1 |1000000 |0 | |
+ROW |38982 |28230 |2 |20 |1h |0 | |
+ROW |38983 |28232 |1 |20 |1d |0 | |
+ROW |38984 |28294 |1 |10 | |0 | |
+ROW |38985 |28295 |1 |10 | |0 | |
+ROW |38986 |28296 |1 |10 | |0 | |
+ROW |38987 |28296 |2 |1 |8 |0 | |
+ROW |38988 |28297 |1 |10 | |0 | |
+ROW |38989 |28298 |1 |10 | |0 | |
+ROW |38990 |28299 |1 |10 | |0 | |
+ROW |38991 |28299 |2 |1 |8 |0 | |
+ROW |38992 |28300 |1 |1 |1000000 |0 | |
+ROW |38993 |28300 |2 |20 |1h |0 | |
+ROW |38994 |28302 |1 |20 |1d |0 | |
+ROW |38995 |28969 |1 |10 | |0 | |
+ROW |38996 |28970 |1 |10 | |0 | |
+ROW |38997 |28971 |1 |10 | |0 | |
+ROW |38998 |28971 |2 |1 |8 |0 | |
+ROW |38999 |28972 |1 |10 | |0 | |
+ROW |39000 |28973 |1 |10 | |0 | |
+ROW |39001 |28974 |1 |10 | |0 | |
+ROW |39002 |28974 |2 |1 |8 |0 | |
+ROW |39003 |28975 |1 |1 |1000000 |0 | |
+ROW |39004 |28975 |2 |20 |1h |0 | |
+ROW |39005 |28977 |1 |20 |1d |0 | |
+ROW |39006 |27119 |1 |10 | |0 | |
+ROW |39007 |27120 |1 |20 |1d |0 | |
+ROW |39008 |27121 |1 |1 |1000000 |0 | |
+ROW |39009 |27121 |2 |20 |1h |0 | |
+ROW |39010 |27122 |1 |10 | |0 | |
+ROW |39011 |27123 |1 |10 | |0 | |
+ROW |39012 |27124 |1 |10 | |0 | |
+ROW |39013 |27124 |2 |1 |8 |0 | |
+ROW |39014 |27125 |1 |10 | |0 | |
+ROW |39015 |27125 |2 |1 |8 |0 | |
+ROW |39016 |27126 |1 |10 | |0 | |
+ROW |39017 |29078 |1 |10 | |0 | |
+ROW |39018 |29079 |1 |10 | |0 | |
+ROW |39019 |29080 |1 |10 | |0 | |
+ROW |39020 |29080 |2 |1 |8 |0 | |
+ROW |39021 |29081 |1 |10 | |0 | |
+ROW |39022 |29082 |1 |10 | |0 | |
+ROW |39023 |29083 |1 |10 | |0 | |
+ROW |39024 |29083 |2 |1 |8 |0 | |
+ROW |39025 |29084 |1 |1 |1000000 |0 | |
+ROW |39026 |29084 |2 |20 |1h |0 | |
+ROW |39027 |29086 |1 |20 |1d |0 | |
+ROW |39028 |22231 |1 |20 |1d |0 | |
+ROW |39029 |23318 |1 |20 |1d |0 | |
+ROW |39030 |29545 |1 |20 |1d |0 | |
+ROW |39031 |29546 |1 |20 |1d |0 | |
+ROW |39032 |10059 |1 |20 |1d |0 | |
+ROW |39033 |22834 |1 |20 |1d |0 | |
+ROW |39034 |22874 |1 |20 |1d |0 | |
+ROW |39035 |22914 |1 |20 |1d |0 | |
+ROW |39036 |22954 |1 |20 |1d |0 | |
+ROW |39037 |22994 |1 |20 |1d |0 | |
+ROW |39038 |23034 |1 |20 |1d |0 | |
+ROW |39039 |23161 |1 |20 |1d |0 | |
+ROW |39040 |23319 |1 |20 |1d |0 | |
+ROW |39041 |23320 |1 |20 |1d |0 | |
+ROW |39042 |23321 |1 |20 |1d |0 | |
+ROW |39043 |23322 |1 |20 |1d |0 | |
+ROW |39044 |23323 |1 |20 |1d |0 | |
+ROW |39045 |23324 |1 |20 |1d |0 | |
+ROW |39046 |23325 |1 |20 |1d |0 | |
+ROW |39047 |23326 |1 |20 |1d |0 | |
+ROW |39048 |29558 |1 |20 |1d |0 | |
+ROW |39049 |29560 |1 |20 |1d |0 | |
+ROW |39050 |29995 |1 |20 |1d |0 | |
+ROW |39051 |29997 |1 |20 |1d |0 | |
+ROW |39052 |23288 |1 |20 |1d |0 | |
+ROW |39053 |23327 |1 |20 |1d |0 | |
+ROW |39054 |27203 |1 |5 |^(\w&pipe;-&pipe;\.&pipe;/)+ (\w&pipe;-&pipe;\.&pipe;/)+ (.+) Copyright&bsn;\3 |0 | |
+ROW |39055 |27203 |2 |20 |1d |0 | |
+ROW |39056 |27207 |1 |1 |1024 |0 | |
+ROW |39057 |30086 |1 |5 |^((\w&pipe;-&pipe;\.&pipe;/)+)&bsn;\1 |0 | |
+ROW |39058 |30086 |2 |20 |1d |0 | |
+ROW |39059 |30087 |1 |1 |1024 |0 | |
+ROW |39060 |27214 |1 |20 |1d |0 | |
+ROW |39061 |28323 |1 |1 |0.1 |0 | |
+ROW |39062 |28327 |1 |20 |1d |0 | |
+ROW |39063 |28328 |1 |20 |1d |0 | |
+ROW |39064 |27236 |1 |20 |1d |0 | |
+ROW |39065 |27237 |1 |20 |1d |0 | |
+ROW |39066 |27295 |1 |20 |1d |0 | |
+ROW |39067 |27296 |1 |20 |1d |0 | |
+ROW |39068 |27297 |1 |20 |1d |0 | |
+ROW |39069 |27314 |1 |1 |0.5 |0 | |
+ROW |39070 |27315 |1 |1 |0.5 |0 | |
+ROW |39071 |27318 |1 |1 |0.5 |0 | |
+ROW |39072 |27319 |1 |20 |1d |0 | |
+ROW |39073 |27320 |1 |20 |1d |0 | |
+ROW |39074 |27378 |1 |20 |1d |0 | |
+ROW |39075 |27379 |1 |20 |1d |0 | |
+ROW |39076 |30097 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |39077 |30097 |2 |20 |1d |0 | |
+ROW |39078 |27382 |1 |20 |1d |0 | |
+ROW |39079 |27383 |1 |20 |1d |0 | |
+ROW |39080 |27385 |1 |20 |1d |0 | |
+ROW |39081 |27386 |1 |20 |1d |0 | |
+ROW |39082 |28209 |1 |20 |1d |0 | |
+ROW |39083 |28210 |1 |20 |1d |0 | |
+ROW |39084 |30098 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |39085 |30098 |2 |20 |1d |0 | |
+ROW |39086 |30099 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |39087 |30099 |2 |20 |1d |0 | |
+ROW |39088 |30100 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |39089 |30100 |2 |20 |1d |0 | |
+ROW |39090 |27419 |1 |20 |1d |0 | |
+ROW |39091 |27428 |1 |20 |1d |0 | |
+ROW |39092 |27445 |1 |20 |1d |0 | |
+ROW |39093 |28208 |1 |20 |1d |0 | |
+ROW |39094 |27481 |1 |20 |1d |0 | |
+ROW |39095 |27482 |1 |20 |1d |0 | |
+ROW |39096 |27483 |1 |20 |1d |0 | |
+ROW |39097 |27484 |1 |20 |1d |0 | |
+ROW |39098 |27508 |1 |20 |1d |0 | |
+ROW |39099 |27509 |1 |20 |1d |0 | |
+ROW |39100 |27510 |1 |20 |1d |0 | |
+ROW |39101 |30106 |1 |20 |1d |0 | |
+ROW |39102 |27543 |1 |20 |1d |0 | |
+ROW |39103 |27544 |1 |20 |1d |0 | |
+ROW |39104 |27545 |1 |20 |1d |0 | |
+ROW |39105 |27546 |1 |20 |1d |0 | |
+ROW |39106 |27579 |1 |20 |1d |0 | |
+ROW |39107 |27580 |1 |20 |1d |0 | |
+ROW |39108 |27582 |1 |20 |1d |0 | |
+ROW |39109 |27583 |1 |20 |1d |0 | |
+ROW |39110 |30109 |1 |20 |1d |0 | |
+ROW |39111 |27591 |1 |1 |1024 |0 | |
+ROW |39112 |30110 |1 |1 |1024 |0 | |
+ROW |39113 |27675 |1 |20 |1d |0 | |
+ROW |39114 |27676 |1 |20 |1d |0 | |
+ROW |39115 |27677 |1 |20 |1d |0 | |
+ROW |39116 |27678 |1 |20 |1d |0 | |
+ROW |39117 |27679 |1 |20 |1d |0 | |
+ROW |39118 |28141 |1 |20 |1d |0 | |
+ROW |39119 |28142 |1 |20 |1d |0 | |
+ROW |39120 |28157 |1 |20 |1d |0 | |
+ROW |39121 |28158 |1 |20 |1d |0 | |
+ROW |39122 |27748 |1 |20 |1d |0 | |
+ROW |39123 |27749 |1 |20 |1d |0 | |
+ROW |39124 |27750 |1 |20 |1d |0 | |
+ROW |39125 |27754 |1 |20 |1d |0 | |
+ROW |39126 |27777 |1 |5 |Firmware Version: ([0-9.]+),&bsn;\1 |0 | |
+ROW |39127 |27777 |2 |20 |1d |0 | |
+ROW |39128 |27778 |1 |5 |(.+) - Firmware&bsn;\1 |0 | |
+ROW |39129 |27778 |2 |20 |1d |0 | |
+ROW |39130 |27785 |1 |20 |1d |0 | |
+ROW |39131 |27812 |1 |20 |1d |0 | |
+ROW |39132 |27813 |1 |20 |1d |0 | |
+ROW |39133 |30117 |1 |5 |kernel (JUNOS [0-9a-zA-Z\.\-]+)&bsn;\1 |0 | |
+ROW |39134 |30117 |2 |20 |1d |0 | |
+ROW |39135 |28201 |1 |1 |0.1 |0 | |
+ROW |39136 |28204 |1 |20 |1d |0 | |
+ROW |39137 |28205 |1 |20 |1d |0 | |
+ROW |39138 |27893 |1 |20 |1d |0 | |
+ROW |39139 |27894 |1 |20 |1d |0 | |
+ROW |39140 |27895 |1 |20 |1d |0 | |
+ROW |39141 |27897 |1 |1 |0.1 |0 | |
+ROW |39142 |27898 |1 |1 |1024 |0 | |
+ROW |39143 |27900 |1 |1 |1024 |0 | |
+ROW |39144 |30119 |1 |20 |1d |0 | |
+ROW |39145 |27905 |1 |1 |0.1 |0 | |
+ROW |39146 |27907 |1 |1 |1024 |0 | |
+ROW |39147 |27908 |1 |1 |1024 |0 | |
+ROW |39148 |27930 |1 |20 |1d |0 | |
+ROW |39149 |27931 |1 |20 |1d |0 | |
+ROW |39150 |27936 |1 |5 |60 Secs \( ([0-9\.]+)%\).+300 Secs&bsn;\1 |0 | |
+ROW |39151 |30121 |1 |20 |1d |0 | |
+ROW |39152 |27967 |1 |20 |1d |0 | |
+ROW |39153 |27968 |1 |20 |1d |0 | |
+ROW |39154 |27970 |1 |20 |1d |0 | |
+ROW |39155 |27971 |1 |20 |1d |0 | |
+ROW |39156 |30125 |1 |20 |1d |0 | |
+ROW |39157 |27997 |1 |20 |1d |0 | |
+ROW |39158 |27998 |1 |20 |1d |0 | |
+ROW |39159 |27999 |1 |20 |1d |0 | |
+ROW |39160 |28000 |1 |20 |1d |0 | |
+ROW |39161 |28026 |1 |20 |1d |0 | |
+ROW |39162 |28027 |1 |20 |1d |0 | |
+ROW |39163 |30132 |1 |1 |1024 |0 | |
+ROW |39164 |30133 |1 |1 |1024 |0 | |
+ROW |39165 |30134 |1 |1 |1024 |0 | |
+ROW |39166 |30135 |1 |1 |1024 |0 | |
+ROW |39167 |29087 |1 |20 |1d |0 | |
+ROW |39168 |29089 |1 |10 | |0 | |
+ROW |39169 |29102 |1 |10 | |0 | |
+ROW |39170 |29103 |1 |21 |return (100-value); |0 | |
+ROW |39171 |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 |39172 |29111 |1 |20 |1h |0 | |
+ROW |39173 |29113 |1 |20 |1h |0 | |
+ROW |39174 |29114 |1 |20 |1d |0 | |
+ROW |39175 |29116 |1 |20 |1d |0 | |
+ROW |39176 |29117 |1 |20 |1d |0 | |
+ROW |39177 |29120 |1 |20 |1h |0 | |
+ROW |39178 |29121 |1 |20 |1d |0 | |
+ROW |39179 |29122 |1 |20 |1d |0 | |
+ROW |39180 |29123 |1 |20 |1d |0 | |
+ROW |39181 |29124 |1 |20 |1d |0 | |
+ROW |39182 |29126 |1 |10 | |0 | |
+ROW |39183 |29139 |1 |10 | |0 | |
+ROW |39184 |29140 |1 |21 |return (100-value); |0 | |
+ROW |39185 |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 |39186 |29148 |1 |20 |1h |0 | |
+ROW |39187 |29150 |1 |20 |1h |0 | |
+ROW |39188 |29151 |1 |20 |1d |0 | |
+ROW |39189 |29153 |1 |20 |1d |0 | |
+ROW |39190 |29154 |1 |20 |1d |0 | |
+ROW |39191 |29157 |1 |20 |1h |0 | |
+ROW |39192 |29158 |1 |20 |1d |0 | |
+ROW |39193 |29159 |1 |20 |1d |0 | |
+ROW |39194 |29160 |1 |20 |1d |0 | |
+ROW |39195 |29161 |1 |20 |1d |0 | |
+ROW |39196 |29163 |1 |10 | |0 | |
+ROW |39197 |29176 |1 |10 | |0 | |
+ROW |39198 |29177 |1 |21 |return (100-value); |0 | |
+ROW |39199 |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 |39200 |29185 |1 |20 |1h |0 | |
+ROW |39201 |29187 |1 |20 |1h |0 | |
+ROW |39202 |29188 |1 |20 |1d |0 | |
+ROW |39203 |29190 |1 |20 |1d |0 | |
+ROW |39204 |29191 |1 |20 |1d |0 | |
+ROW |39205 |29194 |1 |20 |1h |0 | |
+ROW |39206 |29195 |1 |20 |1d |0 | |
+ROW |39207 |29196 |1 |20 |1d |0 | |
+ROW |39208 |29197 |1 |20 |1d |0 | |
+ROW |39209 |29198 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |39210 |29199 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |39211 |29200 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |39212 |29202 |1 |12 |$.lld |0 | |
+ROW |39213 |29202 |2 |20 |1h |0 | |
+ROW |39214 |29205 |1 |12 |$.lld |0 | |
+ROW |39215 |29205 |2 |20 |1h |0 | |
+ROW |39216 |29208 |1 |12 |$.lld |0 | |
+ROW |39217 |29208 |2 |20 |1h |0 | |
+ROW |39218 |29216 |1 |10 | |0 | |
+ROW |39219 |29216 |2 |1 |8 |0 | |
+ROW |39220 |29217 |1 |10 | |0 | |
+ROW |39221 |29217 |2 |1 |8 |0 | |
+ROW |39222 |29218 |1 |10 | |0 | |
+ROW |39223 |29219 |1 |10 | |0 | |
+ROW |39224 |29220 |1 |10 | |0 | |
+ROW |39225 |29221 |1 |10 | |0 | |
+ROW |39226 |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 |39227 |29223 |1 |20 |1d |0 | |
+ROW |39228 |29230 |1 |10 | |0 | |
+ROW |39229 |29230 |2 |1 |8 |0 | |
+ROW |39230 |29231 |1 |10 | |0 | |
+ROW |39231 |29231 |2 |1 |8 |0 | |
+ROW |39232 |29232 |1 |10 | |0 | |
+ROW |39233 |29233 |1 |10 | |0 | |
+ROW |39234 |29234 |1 |10 | |0 | |
+ROW |39235 |29235 |1 |10 | |0 | |
+ROW |39236 |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 |39237 |29237 |1 |20 |1d |0 | |
+ROW |39238 |29244 |1 |10 | |0 | |
+ROW |39239 |29244 |2 |1 |8 |0 | |
+ROW |39240 |29245 |1 |10 | |0 | |
+ROW |39241 |29245 |2 |1 |8 |0 | |
+ROW |39242 |29246 |1 |10 | |0 | |
+ROW |39243 |29247 |1 |10 | |0 | |
+ROW |39244 |29248 |1 |10 | |0 | |
+ROW |39245 |29249 |1 |10 | |0 | |
+ROW |39246 |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 |39247 |29251 |1 |20 |1d |0 | |
+ROW |39248 |29252 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |39249 |29252 |2 |10 | |0 | |
+ROW |39250 |29253 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |39251 |29253 |2 |10 | |0 | |
+ROW |39252 |29254 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |39253 |29254 |2 |10 | |0 | |
+ROW |39254 |29254 |3 |1 |0.001 |0 | |
+ROW |39255 |29255 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |39256 |29255 |2 |10 | |0 | |
+ROW |39257 |29255 |3 |1 |0.001 |0 | |
+ROW |39258 |29256 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |39259 |29256 |2 |10 | |0 | |
+ROW |39260 |29256 |3 |1 |0.001 |0 | |
+ROW |39261 |29257 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |39262 |29257 |2 |10 | |0 | |
+ROW |39263 |29257 |3 |1 |0.1 |0 | |
+ROW |39264 |29258 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |39265 |29258 |2 |10 | |0 | |
+ROW |39266 |29259 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |39267 |29259 |2 |10 | |0 | |
+ROW |39268 |29260 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |39269 |29260 |2 |10 | |0 | |
+ROW |39270 |29260 |3 |1 |0.001 |0 | |
+ROW |39271 |29261 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |39272 |29261 |2 |10 | |0 | |
+ROW |39273 |29261 |3 |1 |0.001 |0 | |
+ROW |39274 |29262 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |39275 |29262 |2 |10 | |0 | |
+ROW |39276 |29262 |3 |1 |0.001 |0 | |
+ROW |39277 |29263 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |39278 |29263 |2 |10 | |0 | |
+ROW |39279 |29263 |3 |1 |0.1 |0 | |
+ROW |39280 |29264 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |39281 |29264 |2 |10 | |0 | |
+ROW |39282 |29265 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |39283 |29265 |2 |10 | |0 | |
+ROW |39284 |29266 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |39285 |29266 |2 |10 | |0 | |
+ROW |39286 |29266 |3 |1 |0.001 |0 | |
+ROW |39287 |29267 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |39288 |29267 |2 |10 | |0 | |
+ROW |39289 |29267 |3 |1 |0.001 |0 | |
+ROW |39290 |29268 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |39291 |29268 |2 |10 | |0 | |
+ROW |39292 |29268 |3 |1 |0.001 |0 | |
+ROW |39293 |29269 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |39294 |29269 |2 |10 | |0 | |
+ROW |39295 |29269 |3 |1 |0.1 |0 | |
+ROW |39296 |29273 |1 |20 |1d |0 | |
+ROW |39297 |29275 |1 |10 | |0 | |
+ROW |39298 |29288 |1 |10 | |0 | |
+ROW |39299 |29289 |1 |21 |return (100-value); |0 | |
+ROW |39300 |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 |39301 |29297 |1 |20 |1h |0 | |
+ROW |39302 |29299 |1 |20 |1h |0 | |
+ROW |39303 |29300 |1 |20 |1d |0 | |
+ROW |39304 |29302 |1 |20 |1d |0 | |
+ROW |39305 |29303 |1 |20 |1d |0 | |
+ROW |39306 |29306 |1 |20 |1h |0 | |
+ROW |39307 |29307 |1 |20 |1d |0 | |
+ROW |39308 |29308 |1 |20 |1d |0 | |
+ROW |39309 |29309 |1 |20 |1d |0 | |
+ROW |39310 |29310 |1 |20 |1d |0 | |
+ROW |39311 |29312 |1 |10 | |0 | |
+ROW |39312 |29325 |1 |10 | |0 | |
+ROW |39313 |29326 |1 |21 |return (100-value); |0 | |
+ROW |39314 |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 |39315 |29334 |1 |20 |1h |0 | |
+ROW |39316 |29336 |1 |20 |1h |0 | |
+ROW |39317 |29337 |1 |20 |1d |0 | |
+ROW |39318 |29339 |1 |20 |1d |0 | |
+ROW |39319 |29340 |1 |20 |1d |0 | |
+ROW |39320 |29343 |1 |20 |1h |0 | |
+ROW |39321 |29344 |1 |20 |1d |0 | |
+ROW |39322 |29345 |1 |20 |1d |0 | |
+ROW |39323 |29346 |1 |20 |1d |0 | |
+ROW |39324 |29347 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |39325 |29348 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |39326 |29350 |1 |12 |$.lld |0 | |
+ROW |39327 |29350 |2 |20 |1h |0 | |
+ROW |39328 |29353 |1 |12 |$.lld |0 | |
+ROW |39329 |29353 |2 |20 |1h |0 | |
+ROW |39330 |29361 |1 |10 | |0 | |
+ROW |39331 |29361 |2 |1 |8 |0 | |
+ROW |39332 |29362 |1 |10 | |0 | |
+ROW |39333 |29362 |2 |1 |8 |0 | |
+ROW |39334 |29363 |1 |10 | |0 | |
+ROW |39335 |29364 |1 |10 | |0 | |
+ROW |39336 |29365 |1 |10 | |0 | |
+ROW |39337 |29366 |1 |10 | |0 | |
+ROW |39338 |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 |39339 |29368 |1 |20 |1d |0 | |
+ROW |39340 |29375 |1 |10 | |0 | |
+ROW |39341 |29375 |2 |1 |8 |0 | |
+ROW |39342 |29376 |1 |10 | |0 | |
+ROW |39343 |29376 |2 |1 |8 |0 | |
+ROW |39344 |29377 |1 |10 | |0 | |
+ROW |39345 |29378 |1 |10 | |0 | |
+ROW |39346 |29379 |1 |10 | |0 | |
+ROW |39347 |29380 |1 |10 | |0 | |
+ROW |39348 |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 |39349 |29382 |1 |20 |1d |0 | |
+ROW |39350 |29383 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |39351 |29383 |2 |10 | |0 | |
+ROW |39352 |29384 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |39353 |29384 |2 |10 | |0 | |
+ROW |39354 |29385 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |39355 |29385 |2 |10 | |0 | |
+ROW |39356 |29385 |3 |1 |0.001 |0 | |
+ROW |39357 |29386 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |39358 |29386 |2 |10 | |0 | |
+ROW |39359 |29386 |3 |1 |0.001 |0 | |
+ROW |39360 |29387 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |39361 |29387 |2 |10 | |0 | |
+ROW |39362 |29387 |3 |1 |0.001 |0 | |
+ROW |39363 |29388 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |39364 |29388 |2 |10 | |0 | |
+ROW |39365 |29388 |3 |1 |0.1 |0 | |
+ROW |39366 |29389 |1 |12 |$.values['{#DEVNAME}'][3] |0 | |
+ROW |39367 |29389 |2 |10 | |0 | |
+ROW |39368 |29390 |1 |12 |$.values['{#DEVNAME}'][7] |0 | |
+ROW |39369 |29390 |2 |10 | |0 | |
+ROW |39370 |29391 |1 |12 |$.values['{#DEVNAME}'][6] |0 | |
+ROW |39371 |29391 |2 |10 | |0 | |
+ROW |39372 |29391 |3 |1 |0.001 |0 | |
+ROW |39373 |29392 |1 |12 |$.values['{#DEVNAME}'][10] |0 | |
+ROW |39374 |29392 |2 |10 | |0 | |
+ROW |39375 |29392 |3 |1 |0.001 |0 | |
+ROW |39376 |29393 |1 |12 |$.values['{#DEVNAME}'][13] |0 | |
+ROW |39377 |29393 |2 |10 | |0 | |
+ROW |39378 |29393 |3 |1 |0.001 |0 | |
+ROW |39379 |29394 |1 |12 |$.values['{#DEVNAME}'][12] |0 | |
+ROW |39380 |29394 |2 |10 | |0 | |
+ROW |39381 |29394 |3 |1 |0.1 |0 | |
+ROW |39382 |29398 |1 |22 |{__name__=~"^node_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |39383 |29399 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="steal"} |0 | |
+ROW |39384 |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 |39385 |29399 |3 |10 | |0 | |
+ROW |39386 |29399 |4 |1 |100 |0 | |
+ROW |39387 |29400 |1 |22 |{__name__=~"node_memory_SwapFree"}&bsn; |0 | |
+ROW |39388 |29401 |1 |22 |{__name__=~"node_memory_SwapTotal"}&bsn; |0 | |
+ROW |39389 |29402 |1 |22 |{__name__=~"node_memory_MemAvailable"}&bsn; |0 | |
+ROW |39390 |29403 |1 |22 |{__name__=~"node_memory_MemTotal"}&bsn; |0 | |
+ROW |39391 |29404 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |39392 |29405 |1 |22 |{__name__=~"node_context_switches"}&bsn; |0 | |
+ROW |39393 |29405 |2 |10 | |0 | |
+ROW |39394 |29406 |1 |22 |{__name__=~"node_intr"}&bsn; |0 | |
+ROW |39395 |29406 |2 |10 | |0 | |
+ROW |39396 |29407 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:nice&pipe;guest_nice)$"} |0 | |
+ROW |39397 |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 |39398 |29407 |3 |10 | |0 | |
+ROW |39399 |29407 |4 |1 |100 |0 | |
+ROW |39400 |29408 |1 |23 |{__name__=~"^node_cpu(?:_guest_seconds_total)?$",cpu=~".+",mode=~"^(?:user&pipe;guest)$"} |0 | |
+ROW |39401 |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 |39402 |29408 |3 |10 | |0 | |
+ROW |39403 |29408 |4 |1 |100 |0 | |
+ROW |39404 |29409 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="irq"} |0 | |
+ROW |39405 |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 |39406 |29409 |3 |10 | |0 | |
+ROW |39407 |29409 |4 |1 |100 |0 | |
+ROW |39408 |29410 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="iowait"} |0 | |
+ROW |39409 |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 |39410 |29410 |3 |10 | |0 | |
+ROW |39411 |29410 |4 |1 |100 |0 | |
+ROW |39412 |29411 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="nice"} |0 | |
+ROW |39413 |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 |39414 |29411 |3 |10 | |0 | |
+ROW |39415 |29411 |4 |1 |100 |0 | |
+ROW |39416 |29412 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="softirq"} |0 | |
+ROW |39417 |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 |39418 |29412 |3 |10 | |0 | |
+ROW |39419 |29412 |4 |1 |100 |0 | |
+ROW |39420 |29413 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="user"} |0 | |
+ROW |39421 |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 |39422 |29413 |3 |10 | |0 | |
+ROW |39423 |29413 |4 |1 |100 |0 | |
+ROW |39424 |29414 |1 |22 |node_uname_info&bsn;nodename |0 | |
+ROW |39425 |29414 |2 |20 |1d |0 | |
+ROW |39426 |29415 |1 |22 |node_exporter_build_info&bsn;version |0 | |
+ROW |39427 |29415 |2 |20 |1d |0 | |
+ROW |39428 |29416 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
+ROW |39429 |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 |39430 |29416 |3 |10 | |0 | |
+ROW |39431 |29416 |4 |1 |100 |0 | |
+ROW |39432 |29417 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="idle"} |0 | |
+ROW |39433 |29417 |2 |21 |//count the number of cores&bsn;return JSON.parse(value).length&bsn; |0 | |
+ROW |39434 |29418 |1 |22 |node_load15&bsn; |0 | |
+ROW |39435 |29419 |1 |22 |node_load5&bsn; |0 | |
+ROW |39436 |29420 |1 |22 |node_load1&bsn; |0 | |
+ROW |39437 |29421 |1 |22 |{__name__=~"^node_boot_time(?:_seconds)?$"}&bsn; |0 | |
+ROW |39438 |29421 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
+ROW |39439 |29422 |1 |22 |node_uname_info&bsn;machine |0 | |
+ROW |39440 |29422 |2 |20 |1d |0 | |
+ROW |39441 |29423 |1 |22 |node_filefd_allocated&bsn; |0 | |
+ROW |39442 |29424 |1 |22 |node_filefd_maximum&bsn; |0 | |
+ROW |39443 |29424 |2 |20 |1d |0 | |
+ROW |39444 |29425 |1 |23 |node_uname_info |0 | |
+ROW |39445 |29425 |2 |21 |var info = JSON.parse(value)[0];&bsn; return info.labels.sysname+' version: '+info.labels.release+' '+info.labels.version |0 | |
+ROW |39446 |29425 |3 |20 |1d |0 | |
+ROW |39447 |29426 |1 |23 |{__name__=~"^node_cpu(?:_seconds_total)?$",cpu=~".+",mode="system"} |0 | |
+ROW |39448 |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 |39449 |29426 |3 |10 | |0 | |
+ROW |39450 |29426 |4 |1 |100 |0 | |
+ROW |39451 |29427 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
+ROW |39452 |29428 |1 |20 |1d |0 | |
+ROW |39453 |29429 |1 |23 |{__name__=~"^node_network_info$"} |0 | |
+ROW |39454 |29430 |1 |23 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint=~".+"} |0 | |
+ROW |39455 |29431 |1 |23 |node_disk_io_now{device=~".+"} |0 | |
+ROW |39456 |29436 |1 |22 |node_network_receive_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |39457 |29436 |2 |10 | |0 | |
+ROW |39458 |29436 |3 |1 |8 |0 | |
+ROW |39459 |29437 |1 |22 |node_network_transmit_bytes_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |39460 |29437 |2 |10 | |0 | |
+ROW |39461 |29437 |3 |1 |8 |0 | |
+ROW |39462 |29438 |1 |22 |node_network_transmit_errs_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |39463 |29438 |2 |10 | |0 | |
+ROW |39464 |29439 |1 |22 |node_network_receive_errs_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |39465 |29439 |2 |10 | |0 | |
+ROW |39466 |29440 |1 |22 |node_network_receive_drop_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |39467 |29440 |2 |10 | |0 | |
+ROW |39468 |29441 |1 |22 |node_network_transmit_drop_total{device="{#IFNAME}"}&bsn; |0 | |
+ROW |39469 |29441 |2 |10 | |0 | |
+ROW |39470 |29442 |1 |22 |node_network_speed_bytes{device="{#IFNAME}"}&bsn; |2 |0 |
+ROW |39471 |29442 |2 |1 |8 |0 | |
+ROW |39472 |29443 |1 |22 |node_network_protocol_type{device="{#IFNAME}"}&bsn; |0 | |
+ROW |39473 |29444 |1 |22 |node_network_info{device="{#IFNAME}"}&bsn;operstate |0 | |
+ROW |39474 |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 |39475 |29445 |1 |22 |{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
+ROW |39476 |29446 |1 |22 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
+ROW |39477 |29447 |1 |23 |{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"} |0 | |
+ROW |39478 |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 |39479 |29448 |1 |22 |node_disk_reads_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |39480 |29448 |2 |10 | |0 | |
+ROW |39481 |29449 |1 |22 |node_disk_writes_completed_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |39482 |29449 |2 |10 | |0 | |
+ROW |39483 |29450 |1 |22 |node_disk_read_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |39484 |29450 |2 |10 | |0 | |
+ROW |39485 |29451 |1 |22 |node_disk_write_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |39486 |29451 |2 |10 | |0 | |
+ROW |39487 |29452 |1 |22 |node_disk_io_time_weighted_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |39488 |29452 |2 |10 | |0 | |
+ROW |39489 |29453 |1 |22 |node_disk_io_time_seconds_total{device="{#DEVNAME}"}&bsn; |0 | |
+ROW |39490 |29453 |2 |10 | |0 | |
+ROW |39491 |29453 |3 |1 |100 |0 | |
+ROW |39492 |28979 |1 |1 |1024 |0 | |
+ROW |39493 |28980 |1 |1 |1024 |0 | |
+ROW |39494 |28981 |1 |1 |1024 |0 | |
+ROW |39495 |28982 |1 |1 |1024 |0 | |
+ROW |39496 |28984 |1 |1 |1024 |0 | |
+ROW |39497 |28985 |1 |1 |1024 |0 | |
+ROW |39498 |28990 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
+ROW |39499 |28991 |1 |10 | |0 | |
+ROW |39500 |28992 |1 |10 | |0 | |
+ROW |39501 |28994 |1 |1 |1024 |0 | |
+ROW |39502 |28995 |1 |1 |1024 |0 | |
+ROW |39503 |28996 |1 |1 |1024 |0 | |
+ROW |39504 |28997 |1 |1 |1024 |0 | |
+ROW |39505 |28999 |1 |1 |1024 |0 | |
+ROW |39506 |29000 |1 |1 |1024 |0 | |
+ROW |39507 |29005 |1 |21 |//count the number of cores&bsn;return JSON.parse(value).length;&bsn; |0 | |
+ROW |39508 |29006 |1 |10 | |0 | |
+ROW |39509 |29007 |1 |10 | |0 | |
+ROW |39510 |29009 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
+ROW |39511 |29012 |1 |21 |//count the number of CPU cores&bsn;return JSON.stringify([{"{#CPU.COUNT}": value, "{#SNMPINDEX}": 0, "{#SINGLETON}":""}])&bsn; |0 | |
+ROW |39512 |29014 |1 |10 | |0 | |
+ROW |39513 |29015 |1 |10 | |0 | |
+ROW |39514 |29017 |1 |10 | |0 | |
+ROW |39515 |29017 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39516 |29018 |1 |10 | |0 | |
+ROW |39517 |29018 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39518 |29019 |1 |10 | |0 | |
+ROW |39519 |29019 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39520 |29020 |1 |10 | |0 | |
+ROW |39521 |29020 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39522 |29021 |1 |10 | |0 | |
+ROW |39523 |29021 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39524 |29022 |1 |10 | |0 | |
+ROW |39525 |29022 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39526 |29023 |1 |10 | |0 | |
+ROW |39527 |29023 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39528 |29024 |1 |10 | |0 | |
+ROW |39529 |29024 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39530 |29025 |1 |10 | |0 | |
+ROW |39531 |29025 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39532 |29026 |1 |10 | |0 | |
+ROW |39533 |29026 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39534 |29027 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |39535 |29028 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |39536 |29030 |1 |21 |return (100-value); |0 | |
+ROW |39537 |29031 |1 |10 | |0 | |
+ROW |39538 |29032 |1 |10 | |0 | |
+ROW |39539 |29034 |1 |10 | |0 | |
+ROW |39540 |29034 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39541 |29035 |1 |10 | |0 | |
+ROW |39542 |29035 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39543 |29036 |1 |10 | |0 | |
+ROW |39544 |29036 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39545 |29037 |1 |10 | |0 | |
+ROW |39546 |29037 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39547 |29038 |1 |10 | |0 | |
+ROW |39548 |29038 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39549 |29039 |1 |10 | |0 | |
+ROW |39550 |29039 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39551 |29040 |1 |10 | |0 | |
+ROW |39552 |29040 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39553 |29041 |1 |10 | |0 | |
+ROW |39554 |29041 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39555 |29042 |1 |10 | |0 | |
+ROW |39556 |29042 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39557 |29043 |1 |10 | |0 | |
+ROW |39558 |29043 |2 |21 |//to get utilization in %, divide by N, where N is number of cores.&bsn;return value/{#CPU.COUNT}&bsn; |0 | |
+ROW |39559 |29044 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |39560 |29045 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |39561 |29047 |1 |21 |return (100-value); |0 | |
+ROW |39562 |29048 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
+ROW |39563 |29049 |1 |21 |//Calculate utilization&bsn;return (100 - value)&bsn; |0 | |
+ROW |39564 |29474 |1 |20 |1d |0 | |
+ROW |39565 |29475 |1 |20 |1d |0 | |
+ROW |39566 |29478 |1 |20 |1d |0 | |
+ROW |39567 |29500 |1 |20 |1d |0 | |
+ROW |39568 |29501 |1 |20 |1d |0 | |
+ROW |39569 |29504 |1 |20 |1d |0 | |
+ROW |39570 |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 |39571 |29507 |2 |20 |1h |0 | |
+ROW |39572 |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 |39573 |29508 |2 |20 |1h |0 | |
+ROW |39574 |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 |39575 |29510 |2 |20 |1h |0 | |
+ROW |39576 |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 |39577 |29511 |2 |20 |1h |0 | |
+ROW |39578 |29515 |1 |10 | |0 | |
+ROW |39579 |29515 |2 |1 |8 |0 | |
+ROW |39580 |29516 |1 |10 | |0 | |
+ROW |39581 |29516 |2 |1 |8 |0 | |
+ROW |39582 |29517 |1 |10 | |0 | |
+ROW |39583 |29518 |1 |10 | |0 | |
+ROW |39584 |29519 |1 |10 | |0 | |
+ROW |39585 |29520 |1 |10 | |0 | |
+ROW |39586 |29524 |1 |10 | |0 | |
+ROW |39587 |29524 |2 |1 |8 |0 | |
+ROW |39588 |29525 |1 |10 | |0 | |
+ROW |39589 |29525 |2 |1 |8 |0 | |
+ROW |39590 |29526 |1 |10 | |0 | |
+ROW |39591 |29527 |1 |10 | |0 | |
+ROW |39592 |29528 |1 |10 | |0 | |
+ROW |39593 |29529 |1 |10 | |0 | |
+ROW |39594 |29530 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
+ROW |39595 |29531 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
+ROW |39596 |29532 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
+ROW |39597 |29533 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
+ROW |39598 |29534 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |39599 |29535 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |39600 |29536 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |39601 |29537 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
+ROW |39602 |29538 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
+ROW |39603 |29539 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
+ROW |39604 |29540 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
+ROW |39605 |29541 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |39606 |29542 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |39607 |29543 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |39608 |29581 |1 |20 |1d |0 | |
+ROW |39609 |29582 |1 |20 |1d |0 | |
+ROW |39610 |29585 |1 |20 |1d |0 | |
+ROW |39611 |29607 |1 |20 |1d |0 | |
+ROW |39612 |29608 |1 |20 |1d |0 | |
+ROW |39613 |29611 |1 |20 |1d |0 | |
+ROW |39614 |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 |39615 |29614 |2 |20 |1h |0 | |
+ROW |39616 |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 |39617 |29615 |2 |20 |1h |0 | |
+ROW |39618 |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 |39619 |29617 |2 |20 |1h |0 | |
+ROW |39620 |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 |39621 |29618 |2 |20 |1h |0 | |
+ROW |39622 |29622 |1 |10 | |0 | |
+ROW |39623 |29622 |2 |1 |8 |0 | |
+ROW |39624 |29623 |1 |10 | |0 | |
+ROW |39625 |29623 |2 |1 |8 |0 | |
+ROW |39626 |29624 |1 |10 | |0 | |
+ROW |39627 |29625 |1 |10 | |0 | |
+ROW |39628 |29626 |1 |10 | |0 | |
+ROW |39629 |29627 |1 |10 | |0 | |
+ROW |39630 |29631 |1 |10 | |0 | |
+ROW |39631 |29631 |2 |1 |8 |0 | |
+ROW |39632 |29632 |1 |10 | |0 | |
+ROW |39633 |29632 |2 |1 |8 |0 | |
+ROW |39634 |29633 |1 |10 | |0 | |
+ROW |39635 |29634 |1 |10 | |0 | |
+ROW |39636 |29635 |1 |10 | |0 | |
+ROW |39637 |29636 |1 |10 | |0 | |
+ROW |39638 |29637 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
+ROW |39639 |29638 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
+ROW |39640 |29639 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
+ROW |39641 |29640 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
+ROW |39642 |29641 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |39643 |29642 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |39644 |29643 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |39645 |29644 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskReadsPersec.first() |0 | |
+ROW |39646 |29645 |1 |12 |$[?(@.Name == "{#DEVNAME}")].DiskWritesPersec.first() |0 | |
+ROW |39647 |29646 |1 |12 |$[?(@.Name == "{#DEVNAME}")].CurrentDiskQueueLength.first() |0 | |
+ROW |39648 |29647 |1 |12 |$[?(@.Name == "{#DEVNAME}")].PercentDiskTime.first() |0 | |
+ROW |39649 |29648 |1 |12 |$[?(@.Name == "{#IFNAME}")].Speed.first() |2 |0 |
+ROW |39650 |29649 |1 |12 |$[?(@.Name == "{#IFNAME}")].AdapterTypeId.first() |0 | |
+ROW |39651 |29650 |1 |12 |$[?(@.Name == "{#IFNAME}")].NetConnectionStatus.first() |0 | |
+ROW |39652 |30688 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].state.text.first() |0 | |
+ROW |39653 |30688 |2 |20 |1d |0 | |
+ROW |39654 |30689 |1 |12 |$.[?(@.id=='{#SENSOR_ID}')].value.first() |0 | |
+ROW |39655 |30689 |2 |20 |1h |0 | |
+ROW |39656 |30073 |1 |20 |1d |0 | |
+ROW |39657 |30074 |1 |20 |1d |0 | |
+ROW |39658 |30079 |1 |1 |1048576 |0 | |
+ROW |39659 |30082 |1 |1 |1048576 |0 | |
+ROW |39660 |28342 |1 |20 |1d |0 | |
+ROW |39661 |28344 |1 |20 |1d |0 | |
+ROW |39662 |28345 |1 |20 |1d |0 | |
+ROW |39663 |30141 |1 |20 |1d |0 | |
+ROW |39664 |28354 |1 |1 |0.1 |0 | |
+ROW |39665 |28356 |1 |1 |0.1 |0 | |
+ROW |39666 |28367 |1 |1 |1048576 |0 | |
+ROW |39667 |28372 |1 |1 |1048576 |0 | |
+ROW |39668 |28390 |1 |20 |1d |0 | |
+ROW |39669 |28391 |1 |20 |1d |0 | |
+ROW |39670 |28422 |1 |1 |1048576 |0 | |
+ROW |39671 |28425 |1 |1 |1048576 |0 | |
+ROW |39672 |28438 |1 |20 |1d |0 | |
+ROW |39673 |28439 |1 |20 |1d |0 | |
+ROW |39674 |28451 |1 |5 |(\d{1,3}) *%( of maximum)?&bsn;\1 |0 | |
+ROW |39675 |28466 |1 |20 |1d |0 | |
+ROW |39676 |28467 |1 |20 |1d |0 | |
+ROW |39677 |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|